[FFmpeg-soc] [soc]: r4676 - amr/amrnbfloatdec.c
cmcq
subversion at mplayerhq.hu
Sun Jul 12 12:48:14 CEST 2009
Author: cmcq
Date: Sun Jul 12 12:48:14 2009
New Revision: 4676
Log:
Update for HEAD r19294: ff_log_missing_feature -> av_log_missing_feature
Modified:
amr/amrnbfloatdec.c
Modified: amr/amrnbfloatdec.c
==============================================================================
--- amr/amrnbfloatdec.c Sun Jul 12 12:31:52 2009 (r4675)
+++ amr/amrnbfloatdec.c Sun Jul 12 12:48:14 2009 (r4676)
@@ -130,7 +130,7 @@ void ff_apply_gain_ctrl(float *v_out, co
if (scalefactor)
scalefactor = sqrt(ff_dot_productf(v_ref, v_ref, length) / scalefactor);
else
- ff_log_missing_feature(NULL, "Zero energy for gain control", 1);
+ av_log_missing_feature(NULL, "Zero energy for gain control", 1);
for (i = 0; i < length; i++)
v_out[i] = scalefactor * v_in[i];
}
@@ -930,7 +930,7 @@ static int amrnb_decode_frame(AVCodecCon
// decode the bitstream to AMR parameters
p->cur_frame_mode = decode_bitstream(p, buf, buf_size, &speech_mode);
if (p->cur_frame_mode == MODE_DTX) {
- ff_log_missing_feature(avctx, "dtx mode", 1);
+ av_log_missing_feature(avctx, "dtx mode", 1);
return -1;
}
/*** LPC coefficient decoding ***/
More information about the FFmpeg-soc
mailing list