diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-05-05 19:29:00 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-05-05 19:29:00 +0200 |
commit | a07ac1f7888fd08e42da2bed0421e74f1cfac177 (patch) | |
tree | 7a34b097aa0b0c18d3ca488e2e9bcc6d117cc217 /libavcodec/flacdata.h | |
parent | 2d8dddd92659ba3bd923fee4bfa4618f4a6f2ead (diff) | |
download | ffmpeg-a07ac1f7888fd08e42da2bed0421e74f1cfac177.tar.gz |
Fix type of shared flac table ff_flac_blocksize_table[].
Fixes ticket #2533.
Diffstat (limited to 'libavcodec/flacdata.h')
-rw-r--r-- | libavcodec/flacdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/flacdata.h b/libavcodec/flacdata.h index 96a50b9183..e2c1e5d7f2 100644 --- a/libavcodec/flacdata.h +++ b/libavcodec/flacdata.h @@ -26,6 +26,6 @@ extern const int ff_flac_sample_rate_table[16]; -extern const int16_t ff_flac_blocksize_table[16]; +extern const int32_t ff_flac_blocksize_table[16]; #endif /* AVCODEC_FLACDATA_H */ |