[FFmpeg-cvslog] vc1dec: Fix non pullup tff
Michael Niedermayer
git at videolan.org
Sat Apr 20 02:45:37 CEST 2013
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sat Apr 20 02:14:43 2013 +0200| [a0fbc28c3881fb932597e0776780b09e8a1347f5] | committer: Michael Niedermayer
vc1dec: Fix non pullup tff
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a0fbc28c3881fb932597e0776780b09e8a1347f5
---
libavcodec/vc1.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c
index 0b69711..9f7f879 100644
--- a/libavcodec/vc1.c
+++ b/libavcodec/vc1.c
@@ -900,6 +900,8 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb)
v->tff = get_bits1(gb);
v->rff = get_bits1(gb);
}
+ } else {
+ v->tff = 1;
}
if (v->panscanflag) {
avpriv_report_missing_feature(v->s.avctx, "Pan-scan");
More information about the ffmpeg-cvslog
mailing list