1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

kill 3 more av_mallocz_static()

Originally committed as revision 8397 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer
2007-03-14 01:59:53 +00:00
parent 9608652dc1
commit 08cb195020
3 changed files with 16 additions and 0 deletions

View File

@@ -21,10 +21,17 @@
#include "common.h"
#include "crc.h"
#if LIBAVUTIL_VERSION_INT < (50<<16)
AVCRC *av_crcEDB88320;
AVCRC *av_crc04C11DB7;
AVCRC *av_crc8005 ;
AVCRC *av_crc07 ;
#else
AVCRC av_crcEDB88320[257];
AVCRC av_crc04C11DB7[257];
AVCRC av_crc8005 [257];
AVCRC av_crc07 [257];
#endif
/**
* Inits a crc table.