Signed-off-by: Mans Rullgard <mans@mansr.com>
| ... | ... |
@@ -241,7 +241,7 @@ void ff_ac3_bit_alloc_calc_bap(int16_t *mask, int16_t *psd, int start, int end, |
| 241 | 241 |
* note: This function must remain thread safe because it is called by the |
| 242 | 242 |
* AVParser init code. |
| 243 | 243 |
*/ |
| 244 |
-av_cold void ac3_common_init(void) |
|
| 244 |
+av_cold void ff_ac3_common_init(void) |
|
| 245 | 245 |
{
|
| 246 | 246 |
#if !CONFIG_HARDCODED_TABLES |
| 247 | 247 |
/* compute bin_to_band_tab from band_start_tab */ |
| ... | ... |
@@ -187,7 +187,7 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx) |
| 187 | 187 |
AC3DecodeContext *s = avctx->priv_data; |
| 188 | 188 |
s->avctx = avctx; |
| 189 | 189 |
|
| 190 |
- ac3_common_init(); |
|
| 190 |
+ ff_ac3_common_init(); |
|
| 191 | 191 |
ac3_tables_init(); |
| 192 | 192 |
ff_mdct_init(&s->imdct_256, 8, 1, 1.0); |
| 193 | 193 |
ff_mdct_init(&s->imdct_512, 9, 1, 1.0); |