[FFmpeg-cvslog] r16027 - trunk/libavcodec/mlpdec.c

ramiro subversion
Sun Dec 7 01:58:41 CET 2008


Author: ramiro
Date: Sun Dec  7 01:58:41 2008
New Revision: 16027

Log:
mlp: cosmetics: remove {}s over one-lined if.

Modified:
   trunk/libavcodec/mlpdec.c

Modified: trunk/libavcodec/mlpdec.c
==============================================================================
--- trunk/libavcodec/mlpdec.c	(original)
+++ trunk/libavcodec/mlpdec.c	Sun Dec  7 01:58:41 2008
@@ -297,9 +297,8 @@ static int read_major_sync(MLPDecodeCont
     m->avctx->frame_size     = mh.access_unit_size;
 
     m->avctx->bits_per_raw_sample = mh.group1_bits;
-    if (mh.group1_bits > 16) {
+    if (mh.group1_bits > 16)
         m->avctx->sample_fmt = SAMPLE_FMT_S32;
-    }
     else
         m->avctx->sample_fmt = SAMPLE_FMT_S16;
 




More information about the ffmpeg-cvslog mailing list