diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-07-31 03:00:35 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-07-31 03:00:35 +0200 |
commit | 3b5ba60aa76cb2701521aed546b3a3b174960bc4 (patch) | |
tree | ecef5354b6638c6c3c5fdf389f3b6e3e08d3c3fb /libavcodec/vc1.h | |
parent | 30c8573dc7d6556096103d5376aa6dea3216b0a7 (diff) | |
download | ffmpeg-3b5ba60aa76cb2701521aed546b3a3b174960bc4.tar.gz |
vc1dec: fix handling of max_coded dimensions
Fixes Ticket1502
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index 0c9032fe5c..5a8a84c4cf 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -225,6 +225,7 @@ typedef struct VC1Context{ int profile; ///< 2bits, Profile int frmrtq_postproc; ///< 3bits, int bitrtq_postproc; ///< 5bits, quantized framerate-based postprocessing strength + int max_coded_width, max_coded_height; int fastuvmc; ///< Rounding of qpel vector to hpel ? (not in Simple) int extended_mv; ///< Ext MV in P/B (not in Simple) int dquant; ///< How qscale varies with MBs, 2bits (not in Simple) |