[FFmpeg-cvslog] r23128 - trunk/libavcodec/iff.c
rbultje
subversion
Thu May 13 21:18:54 CEST 2010
Author: rbultje
Date: Thu May 13 21:18:54 2010
New Revision: 23128
Log:
Reindent after r23124. Patch by Sebastian Vater <cdgs basty googlemail com>.
Modified:
trunk/libavcodec/iff.c
Modified: trunk/libavcodec/iff.c
==============================================================================
--- trunk/libavcodec/iff.c Thu May 13 21:18:27 2010 (r23127)
+++ trunk/libavcodec/iff.c Thu May 13 21:18:54 2010 (r23128)
@@ -131,9 +131,9 @@ int ff_cmap_read_palette(AVCodecContext
// If extradata is smaller than actually needed, fill the remaining with black.
count = FFMIN(avctx->extradata_size / 3, count);
if (count) {
- for (i=0; i < count; i++) {
- pal[i] = 0xFF000000 | AV_RB24( avctx->extradata + i*3 );
- }
+ for (i=0; i < count; i++) {
+ pal[i] = 0xFF000000 | AV_RB24( avctx->extradata + i*3 );
+ }
} else { // Create gray-scale color palette for bps < 8
count = 1 << avctx->bits_per_coded_sample;
More information about the ffmpeg-cvslog
mailing list