[FFmpeg-cvslog] r16700 - trunk/libavcodec/vc1.c

cehoyos subversion
Tue Jan 20 10:36:29 CET 2009


Author: cehoyos
Date: Tue Jan 20 10:36:28 2009
New Revision: 16700

Log:
Cosmetics: Fix indentation after last commit.

Modified:
   trunk/libavcodec/vc1.c

Modified: trunk/libavcodec/vc1.c
==============================================================================
--- trunk/libavcodec/vc1.c	Tue Jan 20 10:28:36 2009	(r16699)
+++ trunk/libavcodec/vc1.c	Tue Jan 20 10:36:28 2009	(r16700)
@@ -4270,14 +4270,14 @@ static int vc1_decode_frame(AVCodecConte
         &&s->avctx->codec->capabilities&CODEC_CAP_HWACCEL_VDPAU)
         ff_vdpau_vc1_decode_picture(s, buf_vdpau, (buf + buf_size) - buf_vdpau);
     else {
-    ff_er_frame_start(s);
+        ff_er_frame_start(s);
 
-    v->bits = buf_size * 8;
-    vc1_decode_blocks(v);
+        v->bits = buf_size * 8;
+        vc1_decode_blocks(v);
 //av_log(s->avctx, AV_LOG_INFO, "Consumed %i/%i bits\n", get_bits_count(&s->gb), buf_size*8);
 //  if(get_bits_count(&s->gb) > buf_size * 8)
 //      return -1;
-    ff_er_frame_end(s);
+        ff_er_frame_end(s);
     }
 
     MPV_frame_end(s);




More information about the ffmpeg-cvslog mailing list