diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-02-13 15:57:49 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-02-13 15:57:49 +0000 |
commit | 5ca43c25f6143d376c3491fe7c802dfc87814769 (patch) | |
tree | 5d928251cd290feed8ae53eb33350a701a8fd66c /libavcodec/h264data.h | |
parent | da452acac6a80a36415078114f961313f1ec2881 (diff) | |
download | ffmpeg-5ca43c25f6143d376c3491fe7c802dfc87814769.tar.gz |
Move setting MB_TYPE_L0L1 for direct MBs up, this is simpler.
Originally committed as revision 21794 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264data.h')
-rw-r--r-- | libavcodec/h264data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264data.h b/libavcodec/h264data.h index 8f93e42653..101633ad93 100644 --- a/libavcodec/h264data.h +++ b/libavcodec/h264data.h @@ -197,7 +197,7 @@ static const PMbInfo p_sub_mb_type_info[4]={ }; static const PMbInfo b_mb_type_info[23]={ -{MB_TYPE_DIRECT2 , 1, }, +{MB_TYPE_DIRECT2|MB_TYPE_L0L1 , 1, }, {MB_TYPE_16x16|MB_TYPE_P0L0 , 1, }, {MB_TYPE_16x16 |MB_TYPE_P0L1 , 1, }, {MB_TYPE_16x16|MB_TYPE_P0L0|MB_TYPE_P0L1 , 1, }, |