OSDN Git Service

Reindent.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Thu, 24 Sep 2009 22:37:34 +0000 (22:37 +0000)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Thu, 24 Sep 2009 22:37:34 +0000 (22:37 +0000)
Originally committed as revision 20022 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/bitstream.c

index cb0c0f6..0af24b9 100644 (file)
@@ -127,8 +127,8 @@ static int alloc_table(VLC *vlc, int size, int use_static)
         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;
     }