forked from FFmpeg/FFmpeg
vc1_parser: Set field_order.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
f43c14d046
commit
accde1bd87
1 changed files with 5 additions and 0 deletions
|
@ -88,6 +88,11 @@ static void vc1_extract_headers(AVCodecParserContext *s, AVCodecContext *avctx,
|
|||
}
|
||||
}
|
||||
|
||||
if (vpc->v.broadcast && vpc->v.interlace && !vpc->v.psf)
|
||||
s->field_order = vpc->v.tff ? AV_FIELD_TT : AV_FIELD_BB;
|
||||
else
|
||||
s->field_order = AV_FIELD_PROGRESSIVE;
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue