diff options
author | Laurent Aimar <fenrir@videolan.org> | 2011-10-02 18:29:30 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-10-02 18:59:58 +0200 |
commit | 27d3361e34cf19ad5c0bfb7cfacae0db99b26064 (patch) | |
tree | 6f84df01abee38f5dffcf09c07df70b2e1ababe8 /libavcodec/h264.h | |
parent | bcf881a6858760ecbd9ff4352a38813dc4232dd6 (diff) | |
download | ffmpeg-27d3361e34cf19ad5c0bfb7cfacae0db99b26064.tar.gz |
h264: add entries for 11 and 12 bits in ff_h264_chroma_qp[][]
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 4eb73298c1..14d132c2de 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -103,7 +103,7 @@ */ #define DELAYED_PIC_REF 4 -#define QP_MAX_NUM (51 + 2*6) // The maximum supported qp +#define QP_MAX_NUM (51 + 4*6) // The maximum supported qp /* NAL unit types */ enum { @@ -594,7 +594,7 @@ typedef struct H264Context{ }H264Context; -extern const uint8_t ff_h264_chroma_qp[3][QP_MAX_NUM+1]; ///< One chroma qp table for each supported bit depth (8, 9, 10). +extern const uint8_t ff_h264_chroma_qp[5][QP_MAX_NUM+1]; ///< One chroma qp table for each possible bit depth (8-12). /** * Decode SEI |