diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2009-07-01 20:34:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-07-01 20:34:16 +0000 |
commit | fb6ecd728567cf4ca415fa5a9b1c209e470b6ac2 (patch) | |
tree | 9bcaad74d649335ae841e84addc396609b185a82 /libavcodec/huffyuv.c | |
parent | 37458d7e1bd30316ebd61d10a6a1b4ccad532597 (diff) | |
download | ffmpeg-fb6ecd728567cf4ca415fa5a9b1c209e470b6ac2.tar.gz |
indent
Originally committed as revision 19323 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r-- | libavcodec/huffyuv.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c index aca8e3e9d9..ad2f25ffe3 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -735,10 +735,10 @@ static void decode_422_bitstream(HYuvContext *s, int count){ READ_2PIX(s->temp[0][2*i+1], s->temp[2][i], 2); } }else{ - for(i=0; i<count; i++){ - READ_2PIX(s->temp[0][2*i ], s->temp[1][i], 1); - READ_2PIX(s->temp[0][2*i+1], s->temp[2][i], 2); - } + for(i=0; i<count; i++){ + READ_2PIX(s->temp[0][2*i ], s->temp[1][i], 1); + READ_2PIX(s->temp[0][2*i+1], s->temp[2][i], 2); + } } } @@ -752,9 +752,9 @@ static void decode_gray_bitstream(HYuvContext *s, int count){ READ_2PIX(s->temp[0][2*i ], s->temp[0][2*i+1], 0); } }else{ - for(i=0; i<count; i++){ - READ_2PIX(s->temp[0][2*i ], s->temp[0][2*i+1], 0); - } + for(i=0; i<count; i++){ + READ_2PIX(s->temp[0][2*i ], s->temp[0][2*i+1], 0); + } } } |