diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-03-30 21:05:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-03-30 21:05:11 +0000 |
commit | 1052b76f0f4142942f0fc2481a4e377a6839b954 (patch) | |
tree | 77b2a1e97ddc1a7d0b092f6840654363d44b5611 /libavcodec/h264.h | |
parent | c28112fab65f95d913ad98ad5998919674239c61 (diff) | |
download | ffmpeg-1052b76f0f4142942f0fc2481a4e377a6839b954.tar.gz |
Fix implicit weight for b frames in mbaff.
Originally committed as revision 22733 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index ba813b66ba..0c9402d19c 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -378,7 +378,7 @@ typedef struct H264Context{ //The following 2 can be changed to int8_t but that causes 10cpu cycles speedloss int luma_weight[48][2][2]; int chroma_weight[48][2][2][2]; - int implicit_weight[48][48]; + int implicit_weight[48][48][2]; int direct_spatial_mv_pred; int col_parity; |