Browse Source

Wrong flag tested

Originally committed as revision 7847 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Kostya Shishkov 18 years ago
parent
commit
02c823d4f3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vc1.c

+ 1
- 1
libavcodec/vc1.c View File

@@ -1646,7 +1646,7 @@ static int vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
if(v->tfcntrflag) if(v->tfcntrflag)
get_bits(gb, 8); get_bits(gb, 8);
if(v->broadcast) { if(v->broadcast) {
if(!v->interlace || v->panscanflag) {
if(!v->interlace || v->psf) {
v->rptfrm = get_bits(gb, 2); v->rptfrm = get_bits(gb, 2);
} else { } else {
v->tff = get_bits1(gb); v->tff = get_bits1(gb);


Loading…
Cancel
Save