diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-03-03 19:31:58 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-03-03 19:31:58 +0000 |
commit | af2b0df40f07ee71e6c6defc5c2e0b4f343b2fd0 (patch) | |
tree | 2859114e8678b3a876759cdedb8aea872fa3c027 /libavcodec/h264.h | |
parent | a9837b58e1b060ed31753821536de128a0deaf26 (diff) | |
download | ffmpeg-af2b0df40f07ee71e6c6defc5c2e0b4f343b2fd0.tar.gz |
Note about luma/chroma_weight tables and their datatype.
Originally committed as revision 22177 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index c0619a1f20..f254b92a1a 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -411,6 +411,7 @@ typedef struct H264Context{ int use_weight_chroma; int luma_log2_weight_denom; int chroma_log2_weight_denom; + //The following 2 can be changed to int8_t but that causes 10cpu cycles speedloss int luma_weight[2][48][2]; int chroma_weight[2][48][2][2]; int implicit_weight[48][48]; |