[FFmpeg-cvslog] r20022 - trunk/libavcodec/bitstream.c

reimar subversion
Fri Sep 25 00:37:34 CEST 2009


Author: reimar
Date: Fri Sep 25 00:37:34 2009
New Revision: 20022

Log:
Reindent.

Modified:
   trunk/libavcodec/bitstream.c

Modified: trunk/libavcodec/bitstream.c
==============================================================================
--- trunk/libavcodec/bitstream.c	Fri Sep 25 00:36:52 2009	(r20021)
+++ trunk/libavcodec/bitstream.c	Fri Sep 25 00:37:34 2009	(r20022)
@@ -127,8 +127,8 @@ static int alloc_table(VLC *vlc, int siz
         if(use_static)
             abort(); //cant do anything, init_vlc() is used with too little memory
         vlc->table_allocated += (1 << vlc->bits);
-            vlc->table = av_realloc(vlc->table,
-                                    sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
+        vlc->table = av_realloc(vlc->table,
+                                sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
         if (!vlc->table)
             return -1;
     }



More information about the ffmpeg-cvslog mailing list