mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
mpegvideo_parser: fix indentation of an if statement
This commit is contained in:
parent
7c39305a17
commit
8b0a9f79c8
@ -61,7 +61,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
|
||||
if (bytes_left >= 2) {
|
||||
s->pict_type = (buf[1] >> 3) & 7;
|
||||
if (bytes_left >= 4)
|
||||
vbv_delay = ((buf[1] & 0x07) << 13) | (buf[2] << 5) | (buf[3] >> 3);
|
||||
vbv_delay = ((buf[1] & 0x07) << 13) | (buf[2] << 5) | (buf[3] >> 3);
|
||||
}
|
||||
break;
|
||||
case SEQ_START_CODE:
|
||||
|
Loading…
Reference in New Issue
Block a user