diff options
author | Clément Bœsch <ubitux@gmail.com> | 2012-11-09 00:09:30 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2012-11-12 22:28:57 +0100 |
commit | 7581ad24a9240e9af4f344d0cb6a41fbe7ae71cd (patch) | |
tree | 45c70a75ed2bd88f4de94a1ec3aeeee36e04b0d4 /libavcodec/mpeg4audio.c | |
parent | 0e239b22dbbe6808ac08ca72825f734076d4dc81 (diff) | |
download | ffmpeg-7581ad24a9240e9af4f344d0cb6a41fbe7ae71cd.tar.gz |
lavc/aac: fix shared build failures with MSVC.
This is a workaround until a better solution is found.
Diffstat (limited to 'libavcodec/mpeg4audio.c')
-rw-r--r-- | libavcodec/mpeg4audio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mpeg4audio.c b/libavcodec/mpeg4audio.c index 3066954286..8aa3219207 100644 --- a/libavcodec/mpeg4audio.c +++ b/libavcodec/mpeg4audio.c @@ -52,6 +52,8 @@ static int parse_config_ALS(GetBitContext *gb, MPEG4AudioConfig *c) return 0; } +/* XXX: make sure to update the copies in the different encoders if you change + * this table */ const int avpriv_mpeg4audio_sample_rates[16] = { 96000, 88200, 64000, 48000, 44100, 32000, 24000, 22050, 16000, 12000, 11025, 8000, 7350 |