summaryrefslogtreecommitdiff
path: root/libavcodec/flicvideo.c
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-06-16 14:52:12 +0000
committerMåns Rullgård <mans@mansr.com>2007-06-16 14:52:12 +0000
commite1659f0cc78968ff108967ab316bdd2913220aaa (patch)
tree74b52fdd77feddd75095c92e0415b7f1ac6dbaa2 /libavcodec/flicvideo.c
parentdfdf9e78f31ee2ae81593bad5ef84c3539199b50 (diff)
fix indentation
Originally committed as revision 9336 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/flicvideo.c')
-rw-r--r--libavcodec/flicvideo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libavcodec/flicvideo.c b/libavcodec/flicvideo.c
index d35ac0e89f..e88b12d5c5 100644
--- a/libavcodec/flicvideo.c
+++ b/libavcodec/flicvideo.c
@@ -584,12 +584,12 @@ static int flic_decode_frame_15_16BPP(AVCodecContext *avctx,
* a second pass over the line here, swapping the bytes.
*/
#ifdef WORDS_BIGENDIAN
- pixel_ptr = y_ptr;
- pixel_countdown = s->avctx->width;
- while (pixel_countdown > 0) {
+ pixel_ptr = y_ptr;
+ pixel_countdown = s->avctx->width;
+ while (pixel_countdown > 0) {
*((signed short*)(&pixels[pixel_ptr])) = AV_RL16(&buf[pixel_ptr]);
pixel_ptr += 2;
- }
+ }
#endif
y_ptr += s->frame.linesize[0];
}