Mercurial > libavcodec.hg
changeset 5155:2ac6e904300b libavcodec
fix indentation
author | mru |
---|---|
date | Sat, 16 Jun 2007 14:52:12 +0000 |
parents | b683b5f78fab |
children | 387979b83884 |
files | flicvideo.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/flicvideo.c Sat Jun 16 14:52:10 2007 +0000 +++ b/flicvideo.c Sat Jun 16 14:52:12 2007 +0000 @@ -584,12 +584,12 @@ * 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]; }