diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2011-09-25 20:07:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-25 21:13:19 +0200 |
commit | 1c4712db81fcf398a5f7b2a3e370aea655792b22 (patch) | |
tree | 79fd7d199e3a6d3735255cb654487edc6764f144 /libavcodec/g729dec.c | |
parent | 9b3df9b6d364cbf15dd273095fea88fba39bb423 (diff) | |
download | ffmpeg-1c4712db81fcf398a5f7b2a3e370aea655792b22.tar.gz |
g729dec: Add ff_ prefix to g729_postfilter() and g729_adaptive_gain_control()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/g729dec.c')
-rw-r--r-- | libavcodec/g729dec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/g729dec.c b/libavcodec/g729dec.c index 62be55e5ac..cbfaace5ed 100644 --- a/libavcodec/g729dec.c +++ b/libavcodec/g729dec.c @@ -649,7 +649,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, gain_before += FFABS(synth[j+10]); /* Call postfilter and also update voicing decision for use in next frame. */ - g729_postfilter( + ff_g729_postfilter( &ctx->dsp, &ctx->ht_prev_data, &is_periodic, @@ -666,7 +666,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, for(j=0; j<SUBFRAME_SIZE; j++) gain_after += FFABS(synth[j+10]); - ctx->gain_coeff = g729_adaptive_gain_control( + ctx->gain_coeff = ff_g729_adaptive_gain_control( gain_before, gain_after, synth+10, |