]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/bitstream.c
Remove -fasm CFLAGS check, it is no longer needed.
[ffmpeg] / libavcodec / bitstream.c
index d39980f4df2f60c8d4a5d40780f7967493bdf648..57f139138eb4c3ffdbdeafd288de9b562d522c5e 100644 (file)
 #include "avcodec.h"
 #include "bitstream.h"
 
+const uint8_t ff_log2_run[32]={
+ 0, 0, 0, 0, 1, 1, 1, 1,
+ 2, 2, 2, 2, 3, 3, 3, 3,
+ 4, 4, 5, 5, 6, 6, 7, 7,
+ 8, 9,10,11,12,13,14,15
+};
+
 /**
  * Same as av_mallocz_static(), but does a realloc.
  *
 attribute_deprecated av_alloc_size(2)
 static void *ff_realloc_static(void *ptr, unsigned int size);
 
-static void *av_mallocz_static(unsigned int size)
-{
-    return av_mallocz(size);
-}
-
 static void *ff_realloc_static(void *ptr, unsigned int size)
 {
     return av_realloc(ptr, size);