diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-01-25 20:07:07 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-26 15:35:27 +0000 |
commit | 4c57cde942b3d28074d0bb06e2ca200bc1098f22 (patch) | |
tree | 7d7afe405467d5a2679396bc4036f06b6fcc0566 /libavcodec/ac3.c | |
parent | 24e3ad3031fa26e12d4b939f0ff0dd6e12f05ef5 (diff) | |
download | ffmpeg-4c57cde942b3d28074d0bb06e2ca200bc1098f22.tar.gz |
Add ff_ prefix to ac3_common_init().
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/ac3.c')
-rw-r--r-- | libavcodec/ac3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3.c b/libavcodec/ac3.c index 8fa60e67d5..23eee52661 100644 --- a/libavcodec/ac3.c +++ b/libavcodec/ac3.c @@ -241,7 +241,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end, * note: This function must remain thread safe because it is called by the * AVParser init code. */ -av_cold void ac3_common_init(void) +av_cold void ff_ac3_common_init(void) { #if !CONFIG_HARDCODED_TABLES /* compute bin_to_band_tab from band_start_tab */ |