diff matroskadec.c @ 4352:817bef131f7f libavformat

cosmetics: whitespace
author aurel
date Mon, 02 Feb 2009 21:32:11 +0000
parents 96dba41bad7f
children 56ea2b1028fe
line wrap: on
line diff
--- a/matroskadec.c	Mon Feb 02 20:29:31 2009 +0000
+++ b/matroskadec.c	Mon Feb 02 21:32:11 2009 +0000
@@ -871,8 +871,7 @@
     case MATROSKA_TRACK_ENCODING_COMP_LZO:
         do {
             olen = pkt_size *= 3;
-            pkt_data = av_realloc(pkt_data,
-                                  pkt_size+AV_LZO_OUTPUT_PADDING);
+            pkt_data = av_realloc(pkt_data, pkt_size+AV_LZO_OUTPUT_PADDING);
             result = av_lzo1x_decode(pkt_data, &olen, data, &isize);
         } while (result==AV_LZO_OUTPUT_FULL && pkt_size<10000000);
         if (result)