Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
82c6d789
Commit
82c6d789
authored
Jul 23, 2013
by
Rémi Denis-Courmont
Browse files
avcodec: fix warning
parent
ddf080f5
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/avcodec/video.c
View file @
82c6d789
...
...
@@ -608,7 +608,7 @@ picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
block_Release
(
p_block
);
return
NULL
;
}
else
if
(
i_used
>
p_block
->
i_buffer
||
else
if
(
(
unsigned
)
i_used
>
p_block
->
i_buffer
||
p_context
->
thread_count
>
1
)
{
i_used
=
p_block
->
i_buffer
;
...
...
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