diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-03-06 15:09:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-03-06 15:09:04 +0000 |
commit | b865838ea2c4921265987bba671fb049094775cd (patch) | |
tree | 692a8c76fcf004417a18c5ff9270598886546c23 /libavcodec/utils.c | |
parent | e027d0a81ee012b3876a616f49dd84be66ff34f5 (diff) | |
download | ffmpeg-b865838ea2c4921265987bba671fb049094775cd.tar.gz |
switch flac to av_crc
Originally committed as revision 5117 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index e73590b320..7e5d3b0372 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1222,8 +1222,10 @@ unsigned avcodec_build( void ) static void init_crcs(void){ av_crc04C11DB7= av_mallocz_static(sizeof(AVCRC) * 257); av_crc8005 = av_mallocz_static(sizeof(AVCRC) * 257); + av_crc07 = av_mallocz_static(sizeof(AVCRC) * 257); av_crc_init(av_crc04C11DB7, 0, 32, 0x04c11db7, sizeof(AVCRC)*257); av_crc_init(av_crc8005 , 0, 16, 0x8005 , sizeof(AVCRC)*257); + av_crc_init(av_crc07 , 0, 8, 0x07 , sizeof(AVCRC)*257); } /* must be called before any other functions */ |