[FFmpeg-cvslog] r9336 - trunk/libavcodec/flicvideo.c
mru
subversion
Sat Jun 16 16:52:12 CEST 2007
Author: mru
Date: Sat Jun 16 16:52:12 2007
New Revision: 9336
Log:
fix indentation
Modified:
trunk/libavcodec/flicvideo.c
Modified: trunk/libavcodec/flicvideo.c
==============================================================================
--- trunk/libavcodec/flicvideo.c (original)
+++ trunk/libavcodec/flicvideo.c Sat Jun 16 16:52:12 2007
@@ -584,12 +584,12 @@ static int flic_decode_frame_15_16BPP(AV
* 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];
}
More information about the ffmpeg-cvslog
mailing list