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 20:39:15 +0200 |
commit | 11dd8eb48ba4b08bced8fb3b966320407c0368fa (patch) | |
tree | a0ae233477f74c2a8ac58abf4d75467b4b3460db /libavcodec/flacdata.h | |
parent | 8c5140df2b53e3d4ff02aa607ce41abd64d204d8 (diff) | |
download | ffmpeg-11dd8eb48ba4b08bced8fb3b966320407c0368fa.tar.gz |
Fix type of shared flac table ff_flac_blocksize_table[].
Fixes ticket #2533.
(cherry picked from commit a07ac1f7888fd08e42da2bed0421e74f1cfac177)
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 */ |