[FFmpeg-cvslog] r15982 - trunk/libavcodec/rv34.c

kostya subversion
Tue Dec 2 19:12:49 CET 2008


Author: kostya
Date: Tue Dec  2 19:12:48 2008
New Revision: 15982

Log:
34l: forgot to change one case of chroma MC for RV40

Modified:
   trunk/libavcodec/rv34.c

Modified: trunk/libavcodec/rv34.c
==============================================================================
--- trunk/libavcodec/rv34.c	(original)
+++ trunk/libavcodec/rv34.c	Tue Dec  2 19:12:48 2008
@@ -720,7 +720,8 @@ static void rv34_mc_2mv(RV34DecContext *
     rv34_mc(r, block_type, 0, 0, 0, 2, 2, 0, r->rv30,
             r->rv30 ? r->s.dsp.put_rv30_tpel_pixels_tab
                     : r->s.dsp.put_rv40_qpel_pixels_tab,
-            r->s.dsp.put_h264_chroma_pixels_tab);
+            r->rv30 ? r->s.dsp.put_h264_chroma_pixels_tab
+                    : r->s.dsp.put_rv40_chroma_pixels_tab);
     rv34_mc(r, block_type, 0, 0, 0, 2, 2, 1, r->rv30,
             r->rv30 ? r->s.dsp.avg_rv30_tpel_pixels_tab
                     : r->s.dsp.avg_rv40_qpel_pixels_tab,




More information about the ffmpeg-cvslog mailing list