Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
efc5a54c
Commit
efc5a54c
authored
Oct 27, 2013
by
Ronald S. Bultje
Committed by
Michael Niedermayer
Oct 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9: skip itxfm_add if the whole block has no coefficients.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
960490c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vp9.c
libavcodec/vp9.c
+2
-2
No files found.
libavcodec/vp9.c
View file @
efc5a54c
...
...
@@ -2155,7 +2155,7 @@ static void intra_recon(AVCodecContext *ctx, ptrdiff_t y_off, ptrdiff_t uv_off)
LOCAL_ALIGNED_16
(
uint8_t
,
a_buf
,
[
48
]);
uint8_t
*
a
=
&
a_buf
[
16
],
l
[
32
];
enum
TxfmType
txtp
=
vp9_intra_txfm_type
[
mode
];
int
eob
=
b
->
tx
>
TX_8X8
?
AV_RN16A
(
&
s
->
eob
[
n
])
:
s
->
eob
[
n
];
int
eob
=
b
->
skip
?
0
:
b
->
tx
>
TX_8X8
?
AV_RN16A
(
&
s
->
eob
[
n
])
:
s
->
eob
[
n
];
mode
=
check_intra_mode
(
s
,
mode
,
&
a
,
ptr_r
,
s
->
f
->
linesize
[
0
],
ptr
,
b
->
y_stride
,
l
,
...
...
@@ -2185,7 +2185,7 @@ static void intra_recon(AVCodecContext *ctx, ptrdiff_t y_off, ptrdiff_t uv_off)
int
mode
=
b
->
uvmode
;
LOCAL_ALIGNED_16
(
uint8_t
,
a_buf
,
[
48
]);
uint8_t
*
a
=
&
a_buf
[
16
],
l
[
32
];
int
eob
=
b
->
uvtx
>
TX_8X8
?
AV_RN16A
(
&
s
->
uveob
[
p
][
n
])
:
s
->
uveob
[
p
][
n
];
int
eob
=
b
->
skip
?
0
:
b
->
uvtx
>
TX_8X8
?
AV_RN16A
(
&
s
->
uveob
[
p
][
n
])
:
s
->
uveob
[
p
][
n
];
mode
=
check_intra_mode
(
s
,
mode
,
&
a
,
ptr_r
,
s
->
f
->
linesize
[
1
],
ptr
,
b
->
uv_stride
,
l
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment