From 07caa46e997ccb445b61e14366686dc6c6ae5391 Mon Sep 17 00:00:00 2001 From: Stefan Gehrer Date: Sat, 7 Jul 2007 06:34:30 +0000 Subject: setting special motion vectors in intra macroblocks is now in its own inline function Originally committed as revision 9516 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cavs.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'libavcodec/cavs.c') diff --git a/libavcodec/cavs.c b/libavcodec/cavs.c index 4e4e5923c8..6846074250 100644 --- a/libavcodec/cavs.c +++ b/libavcodec/cavs.c @@ -645,15 +645,7 @@ static int decode_mb_i(AVSContext *h, int cbp_code) { decode_residual_chroma(h); filter_mb(h,I_8X8); - - /* mark motion vectors as intra */ - h->mv[MV_FWD_X0] = ff_cavs_intra_mv; - set_mvs(&h->mv[MV_FWD_X0], BLK_16X16); - h->mv[MV_BWD_X0] = ff_cavs_intra_mv; - set_mvs(&h->mv[MV_BWD_X0], BLK_16X16); - if(h->pic_type != FF_B_TYPE) - *h->col_type = I_8X8; - + set_mv_intra(h); return 0; } -- cgit v1.2.3