h264_parser: Fix order of operations
Signed-off-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
parent
f825d42bcc
commit
19f5384000
@ -201,7 +201,7 @@ static inline int parse_nal_units(AVCodecParserContext *s,
|
|||||||
case NAL_SLICE:
|
case NAL_SLICE:
|
||||||
case NAL_IDR_SLICE:
|
case NAL_IDR_SLICE:
|
||||||
// Do not walk the whole buffer just to decode slice header
|
// Do not walk the whole buffer just to decode slice header
|
||||||
if (state & 0x1f == NAL_IDR_SLICE || (state >> 5) & 0x3 == 0) {
|
if ((state & 0x1f) == NAL_IDR_SLICE || ((state >> 5) & 0x3) == 0) {
|
||||||
/* IDR or disposable slice
|
/* IDR or disposable slice
|
||||||
* No need to decode many bytes because MMCOs shall not be present. */
|
* No need to decode many bytes because MMCOs shall not be present. */
|
||||||
if (src_length > 60)
|
if (src_length > 60)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user