diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-02-20 01:25:03 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-03-29 13:41:09 +0200 |
commit | c2084ffcbfc11d1b6ed3a4a0df9cafd56fbb896f (patch) | |
tree | 6576ee8f255fe8ad61e936175ab2f6f61d8cc9dd /libavcodec/wmv2dec.c | |
parent | b1268e0f032a3af3912fe3fb8d3855e12d7ea83b (diff) | |
download | ffmpeg-c2084ffcbfc11d1b6ed3a4a0df9cafd56fbb896f.tar.gz |
intrax8: Use the generic horizband function
This is assuming that intrax8 has no support for interlacing
Carry over lowdelay value in ff_intrax8_decode_picture.
Diffstat (limited to 'libavcodec/wmv2dec.c')
-rw-r--r-- | libavcodec/wmv2dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmv2dec.c b/libavcodec/wmv2dec.c index 845acf6005..7bf838807e 100644 --- a/libavcodec/wmv2dec.c +++ b/libavcodec/wmv2dec.c @@ -231,7 +231,7 @@ int ff_wmv2_decode_secondary_picture_header(MpegEncContext *s) ff_intrax8_decode_picture(&w->x8, &s->current_picture, &s->gb, &s->mb_x, &s->mb_y, 2 * s->qscale, (s->qscale - 1) | 1, - s->loop_filter); + s->loop_filter, s->low_delay); ff_er_add_slice(&w->s.er, 0, 0, (w->s.mb_x >> 1) - 1, (w->s.mb_y >> 1) - 1, |