Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2013-05-05 21:29:00 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2013-05-05 21:29:00 +0400
commita07ac1f7888fd08e42da2bed0421e74f1cfac177 (patch)
tree7a34b097aa0b0c18d3ca488e2e9bcc6d117cc217 /libavcodec/flacdata.h
parent2d8dddd92659ba3bd923fee4bfa4618f4a6f2ead (diff)
Fix type of shared flac table ff_flac_blocksize_table[].
Fixes ticket #2533.
Diffstat (limited to 'libavcodec/flacdata.h')
-rw-r--r--libavcodec/flacdata.h2
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 */