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/intrax8.h | |
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/intrax8.h')
-rw-r--r-- | libavcodec/intrax8.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/intrax8.h b/libavcodec/intrax8.h index d6bbbbd07e..3fb9857029 100644 --- a/libavcodec/intrax8.h +++ b/libavcodec/intrax8.h @@ -109,6 +109,7 @@ void ff_intrax8_common_end(IntraX8Context *w); */ int ff_intrax8_decode_picture(IntraX8Context *w, Picture *pict, GetBitContext *gb, int *mb_x, int *mb_y, - int quant, int halfpq, int loopfilter); + int quant, int halfpq, + int loopfilter, int lowdelay); #endif /* AVCODEC_INTRAX8_H */ |