[Ffmpeg-cvslog] r7351 - trunk/libavcodec/mpegvideo.c
michael
subversion
Thu Dec 21 23:35:13 CET 2006
Author: michael
Date: Thu Dec 21 23:35:13 2006
New Revision: 7351
Modified:
trunk/libavcodec/mpegvideo.c
Log:
10l
Modified: trunk/libavcodec/mpegvideo.c
==============================================================================
--- trunk/libavcodec/mpegvideo.c (original)
+++ trunk/libavcodec/mpegvideo.c Thu Dec 21 23:35:13 2006
@@ -5371,6 +5371,11 @@
motion_y=s->b_direct_mv_table[xy][1];
ff_mpeg4_set_direct_mv(s, motion_x, motion_y);
break;
+ case CANDIDATE_MB_TYPE_DIRECT0:
+ s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD | MV_DIRECT;
+ s->mb_intra= 0;
+ ff_mpeg4_set_direct_mv(s, 0, 0);
+ break;
case CANDIDATE_MB_TYPE_BIDIR:
s->mv_dir = MV_DIR_FORWARD | MV_DIR_BACKWARD;
s->mb_intra= 0;
More information about the ffmpeg-cvslog
mailing list