diff options
author | Hendrik Leppkes <h.leppkes@gmail.com> | 2012-09-23 13:52:52 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-20 00:07:43 +0200 |
commit | 33f2a4942380184f3a28cbf2a36366c8ed105232 (patch) | |
tree | 3e850813587848a5be98d4e5db9a0127bec1a0e4 /libavcodec/vc1.c | |
parent | b87ff3449662e4f6b8415471dd4b7c76f06fbcda (diff) | |
download | ffmpeg-33f2a4942380184f3a28cbf2a36366c8ed105232.tar.gz |
vc1: only disable interlaced b-frames for software decoding
Tested-by: Gwenole Beauchesne <gb.devel@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index c24951b2d8..c1b73d635a 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -1158,7 +1158,6 @@ int ff_vc1_parse_frame_header_adv(VC1Context *v, GetBitContext* gb) if (v->bfraction == 0) { return -1; } - return -1; // This codepath is still incomplete thus it is disabled } if (v->extended_mv) v->mvrange = get_unary(gb, 0, 3); |