Author: marco
Date: Fri Sep 21 22:44:31 2007
New Revision: 1395

Log:
break up lines that are too long

Modified:
   dirac/libavcodec/diracenc.c

Modified: dirac/libavcodec/diracenc.c
==============================================================================
--- dirac/libavcodec/diracenc.c (original)
+++ dirac/libavcodec/diracenc.c Fri Sep 21 22:44:31 2007
@@ -77,9 +77,11 @@ int dirac_dwt(DiracContext *s, int16_t *
         height = subband_height(s, level);
 
         if (s->refs)
-        dirac_subband_dwt_53(s->avctx, width, height, s->padded_width, coeffs, 
level);
+        dirac_subband_dwt_53(s->avctx, width, height, s->padded_width,
+                             coeffs, level);
         else
-            dirac_subband_dwt_95(s->avctx, width, height, s->padded_width, 
coeffs, level);
+            dirac_subband_dwt_95(s->avctx, width, height,
+                                 s->padded_width, coeffs, level);
     }
 
     return 0;
_______________________________________________
FFmpeg-soc mailing list
[email protected]
http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to