summaryrefslogtreecommitdiff
path: root/libavcodec/h264data.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2010-02-13 15:57:49 +0000
committerMichael Niedermayer <michaelni@gmx.at>2010-02-13 15:57:49 +0000
commit5ca43c25f6143d376c3491fe7c802dfc87814769 (patch)
tree5d928251cd290feed8ae53eb33350a701a8fd66c /libavcodec/h264data.h
parentda452acac6a80a36415078114f961313f1ec2881 (diff)
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.h2
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, },