[FFmpeg-soc] [soc]: r3671 - mlp/mlpenc.c

ramiro subversion at mplayerhq.hu
Sat Aug 30 02:02:37 CEST 2008


Author: ramiro
Date: Sat Aug 30 02:02:37 2008
New Revision: 3671

Log:
Cosmetics: add braces to one lined 'for' and reindent loop.

Modified:
   mlp/mlpenc.c

Modified: mlp/mlpenc.c
==============================================================================
--- mlp/mlpenc.c	(original)
+++ mlp/mlpenc.c	Sat Aug 30 02:02:37 2008
@@ -2198,8 +2198,9 @@ input_and_return:
         }
         ctx->number_of_samples = number_of_samples;
 
-        for (index = 0; index < ctx->number_of_frames + 1; index++)
-                clear_channel_params(ctx->channel_params[ctx->seq_index][ctx->frame_index][index]);
+        for (index = 0; index < ctx->number_of_frames + 1; index++) {
+            clear_channel_params(ctx->channel_params[ctx->seq_index][ctx->frame_index][index]);
+        }
 
         input_to_sample_buffer(ctx);
 



More information about the FFmpeg-soc mailing list