Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-07-22 17:01:10 +0400
committerMichael Niedermayer <michaelni@gmx.at>2008-07-22 17:01:10 +0400
commit5a78bfbde74620137ccbd8c223300ac639107f60 (patch)
tree691fa8c1bbfb9daf74284d8d0af34dfd9286c085 /libavcodec/h264.h
parenta82688b0031c2bc76636ef4b7fba8326453f7d53 (diff)
qscale has a range of 0..51 we thus do not need a 256 entry table and neither need
to and it with 0xFF. Originally committed as revision 14336 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r--libavcodec/h264.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h
index dc18d20c38..889c94c6bc 100644
--- a/libavcodec/h264.h
+++ b/libavcodec/h264.h
@@ -138,7 +138,7 @@ typedef struct PPS{
int transform_8x8_mode; ///< transform_8x8_mode_flag
uint8_t scaling_matrix4[6][16];
uint8_t scaling_matrix8[2][64];
- uint8_t chroma_qp_table[2][256]; ///< pre-scaled (with chroma_qp_index_offset) version of qp_table
+ uint8_t chroma_qp_table[2][64]; ///< pre-scaled (with chroma_qp_index_offset) version of qp_table
int chroma_qp_diff;
}PPS;