mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 15:49:50 +08:00
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:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user