Commit 8b0a9f79 authored by Masaki Tanaka's avatar Masaki Tanaka Committed by Jan Ekström

mpegvideo_parser: fix indentation of an if statement

parent 7c39305a
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment