Commit 1c4d1396 authored by michael's avatar michael

10l typo


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4053 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 714e29d9
...@@ -330,7 +330,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s, ...@@ -330,7 +330,7 @@ static void mpegvideo_extract_headers(AVCodecParserContext *s,
frame_rate_ext_n = (buf[5] >> 5) & 3; frame_rate_ext_n = (buf[5] >> 5) & 3;
frame_rate_ext_d = (buf[5] & 0x1f); frame_rate_ext_d = (buf[5] & 0x1f);
pc->progressive_sequence = buf[1] & (1 << 3); pc->progressive_sequence = buf[1] & (1 << 3);
avctx->has_b_frames= buf[5] >> 7; avctx->has_b_frames= !(buf[5] >> 7);
pc->width |=(horiz_size_ext << 12); pc->width |=(horiz_size_ext << 12);
pc->height |=( vert_size_ext << 12); pc->height |=( vert_size_ext << 12);
......
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