diff src/ffmpeg/libavcodec/bitstream.c @ 830:68562d99230f trunk

[svn] - more symbol cleanups.
author nenolod
date Mon, 12 Mar 2007 15:23:10 -0700
parents e8776388b02a
children
line wrap: on
line diff
--- a/src/ffmpeg/libavcodec/bitstream.c	Mon Mar 12 15:15:54 2007 -0700
+++ b/src/ffmpeg/libavcodec/bitstream.c	Mon Mar 12 15:23:10 2007 -0700
@@ -77,12 +77,8 @@
     vlc->table_size += size;
     if (vlc->table_size > vlc->table_allocated) {
         vlc->table_allocated += (1 << vlc->bits);
-        if(use_static)
-            vlc->table = av_realloc_static(vlc->table,
-                                           sizeof(VLC_TYPE) * 2 * vlc->table_allocated);
-        else
-            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;
     }