Author: marco
Date: Mon Sep 10 13:46:05 2007
New Revision: 1330

Log:
avoid a multiply

Modified:
   dirac/libavcodec/dirac.c

Modified: dirac/libavcodec/dirac.c
==============================================================================
--- dirac/libavcodec/dirac.c    (original)
+++ dirac/libavcodec/dirac.c    Mon Sep 10 13:46:05 2007
@@ -1812,7 +1812,7 @@ START_TIMER
         linein += doutwidth;
 
         /* Skip one line, we are interpolating to odd lines.  */
-        lineout    += outwidth * 2;
+        lineout    += doutwidth;
     }
 
     /* Add padding on the left and right sides of the frame.  */
_______________________________________________
FFmpeg-soc mailing list
[email protected]
http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to