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/ac3dec.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/ac3dec.c')
-rw-r--r-- | libavcodec/ac3dec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/ac3dec.c b/libavcodec/ac3dec.c index 32172dc906..33c5f742e5 100644 --- a/libavcodec/ac3dec.c +++ b/libavcodec/ac3dec.c @@ -187,7 +187,7 @@ static av_cold int ac3_decode_init(AVCodecContext *avctx) AC3DecodeContext *s = avctx->priv_data; s->avctx = avctx; - ac3_common_init(); + ff_ac3_common_init(); ac3_tables_init(); ff_mdct_init(&s->imdct_256, 8, 1, 1.0); ff_mdct_init(&s->imdct_512, 9, 1, 1.0); |