Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
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
6bfbb691
Commit
6bfbb691
authored
May 23, 2014
by
Deb Mukherjee
Committed by
Gerrit Code Review
May 23, 2014
Browse files
Merge "Fixes a bug for uninitialized frame buffers"
parents
52b32ad0
caba78ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/vp8_dx_iface.c
View file @
6bfbb691
...
...
@@ -386,8 +386,10 @@ static vpx_codec_err_t vp8_decode(vpx_codec_alg_priv_t *ctx,
/* Set these even if already initialized. The caller may have changed the
* decrypt config between frames.
*/
ctx
->
yv12_frame_buffers
.
pbi
[
0
]
->
decrypt_cb
=
ctx
->
decrypt_cb
;
ctx
->
yv12_frame_buffers
.
pbi
[
0
]
->
decrypt_state
=
ctx
->
decrypt_state
;
if
(
ctx
->
decoder_init
)
{
ctx
->
yv12_frame_buffers
.
pbi
[
0
]
->
decrypt_cb
=
ctx
->
decrypt_cb
;
ctx
->
yv12_frame_buffers
.
pbi
[
0
]
->
decrypt_state
=
ctx
->
decrypt_state
;
}
if
(
!
res
)
{
...
...
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