Mercurial > libavcodec.hg
changeset 11726:7c35c611faa4 libavcodec
Reindent after r23124. Patch by Sebastian Vater <cdgs basty googlemail com>.
author | rbultje |
---|---|
date | Thu, 13 May 2010 19:18:54 +0000 |
parents | e9537b2d70ce |
children | 0c98bdb71f48 |
files | iff.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/iff.c Thu May 13 19:16:03 2010 +0000 +++ b/iff.c Thu May 13 19:18:54 2010 +0000 @@ -131,9 +131,9 @@ // 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;