diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-02-06 07:07:29 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-02-06 07:07:29 +0000 |
commit | 02c823d4f3cf4d40a9dabd4d5f815ea73e242f6f (patch) | |
tree | fbf7c02e71eaaec90bf60624ef9ee58e0d7a26fa /libavcodec/vc1.c | |
parent | 5e5067c73db37f38d32a4e62241f666119c97360 (diff) | |
download | ffmpeg-02c823d4f3cf4d40a9dabd4d5f815ea73e242f6f.tar.gz |
Wrong flag tested
Originally committed as revision 7847 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 6711270452..df3e706723 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -1646,7 +1646,7 @@ static int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb) if(v->tfcntrflag) get_bits(gb, 8); if(v->broadcast) { - if(!v->interlace || v->panscanflag) { + if(!v->interlace || v->psf) { v->rptfrm = get_bits(gb, 2); } else { v->tff = get_bits1(gb); |