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
57c7e450
Commit
57c7e450
authored
Sep 17, 2012
by
Scott LaVarnway
Committed by
Gerrit Code Review
Sep 17, 2012
Browse files
Merge "Moved mb_no_coeff_skip flag read"
parents
1338a98d
a0824678
Changes
2
Hide whitespace changes
Inline
Side-by-side
vp8/decoder/decodemv.c
View file @
57c7e450
...
...
@@ -159,6 +159,9 @@ static void mb_mode_mv_init(VP8D_COMP *pbi)
* outside the frame. */
pbi
->
mvs_corrupt_from_mb
=
UINT_MAX
;
#endif
/* Read the mb_no_coeff_skip flag */
pbi
->
common
.
mb_no_coeff_skip
=
(
int
)
vp8_read_bit
(
bc
);
pbi
->
prob_skip_false
=
0
;
if
(
pbi
->
common
.
mb_no_coeff_skip
)
pbi
->
prob_skip_false
=
(
vp8_prob
)
vp8_read_literal
(
bc
,
8
);
...
...
vp8/decoder/decodframe.c
View file @
57c7e450
...
...
@@ -1394,10 +1394,6 @@ int vp8_decode_frame(VP8D_COMP *pbi)
/* clear out the coeff buffer */
vpx_memset
(
xd
->
qcoeff
,
0
,
sizeof
(
xd
->
qcoeff
));
/* Read the mb_no_coeff_skip flag */
pc
->
mb_no_coeff_skip
=
(
int
)
vp8_read_bit
(
bc
);
vp8_decode_mode_mvs
(
pbi
);
#if CONFIG_ERROR_CONCEALMENT
...
...
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