mpegvideo_parser: fix indentation of an if statement

This commit is contained in:
Masaki Tanaka 2018-02-11 15:40:55 +02:00 committed by Jan Ekström
parent 7c39305a17
commit 8b0a9f79c8

View File

@ -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: