Rename ff_log_missing_feature() to av_log_missing_feature().

Originally committed as revision 19294 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje
2009-06-29 19:07:04 +00:00
parent 38e54a75ab
commit ce863d7f36
8 changed files with 22 additions and 22 deletions

View File

@ -432,7 +432,7 @@ static float compute_gain_ctrl(const float *v_ref, const float *v_in, const int
if(scalefactor)
scalefactor = sqrt(ff_dot_productf(v_ref, v_ref, len) / scalefactor);
else
ff_log_missing_feature(NULL, "Zero energy for gain control", 1);
av_log_missing_feature(NULL, "Zero energy for gain control", 1);
return scalefactor;
}
@ -716,7 +716,7 @@ static qcelp_packet_rate determine_bitrate(AVCodecContext *avctx, const int buf_
if(bitrate == SILENCE)
{
//FIXME: Remove experimental warning when tested with samples.
ff_log_ask_for_sample(avctx, "'Blank frame handling is experimental.");
av_log_ask_for_sample(avctx, "'Blank frame handling is experimental.");
}
return bitrate;
}