Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
6b1b3417
Commit
6b1b3417
authored
Feb 19, 2013
by
Yaowu Xu
Committed by
Gerrit Code Review
Feb 19, 2013
Browse files
Merge "fixed an enc/dec mis-match issue" into experimental
parents
34732576
b13f38d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp9/decoder/vp9_idct_blk.c
View file @
6b1b3417
...
...
@@ -25,9 +25,9 @@ void vp9_dequant_idct_add_y_block_4x4_inplace_c(int16_t *q,
for
(
i
=
0
;
i
<
4
;
i
++
)
{
for
(
j
=
0
;
j
<
4
;
j
++
)
{
if
(
*
eobs
++
>
1
)
{
vp9_dequant_idct
_add
_c
(
q
,
dq
,
dst
,
dst
,
stride
,
stride
);
xd
->
itxm
_add
(
q
,
dq
,
dst
,
dst
,
stride
,
stride
);
}
else
{
vp9_
dc_only_i
dct
_add
_c
(
q
[
0
]
*
dq
[
0
],
dst
,
dst
,
stride
,
stride
);
xd
->
dc_only_i
txm
_add
(
q
[
0
]
*
dq
[
0
],
dst
,
dst
,
stride
,
stride
);
((
int
*
)
q
)[
0
]
=
0
;
}
...
...
Write
Preview
Supports
Markdown
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