[FFmpeg-soc] [soc]: r5120 - als/alsdec.c
thilo.borgmann
subversion at mplayerhq.hu
Sat Aug 15 13:28:10 CEST 2009
Author: thilo.borgmann
Date: Sat Aug 15 13:28:10 2009
New Revision: 5120
Log:
Remove unnecessary braces.
Modified:
als/alsdec.c
Modified: als/alsdec.c
==============================================================================
--- als/alsdec.c Sat Aug 15 13:27:23 2009 (r5119)
+++ als/alsdec.c Sat Aug 15 13:28:10 2009 (r5120)
@@ -495,9 +495,8 @@ static int read_block_data(ALSDecContext
}
// write raw samples into buffer
- for (k = 0; k < block_length; k++) {
+ for (k = 0; k < block_length; k++)
raw_samples[k] = const_val;
- }
} else {
unsigned int s[8];
unsigned int sub_blocks, sb_length, shift_lsbs;
More information about the FFmpeg-soc
mailing list