[FFmpeg-soc] [soc]: r1395 - dirac/libavcodec/diracenc.c

marco subversion at mplayerhq.hu
Fri Sep 21 22:44:31 CEST 2007


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;



More information about the FFmpeg-soc mailing list