Commit ff732be7 authored by cehoyos's avatar cehoyos

Make av_get_bit_rate() static and remove av_, the function is only used

inside libavcodec/utils.c.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22117 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0ef007dd
......@@ -769,7 +769,7 @@ AVCodec *avcodec_find_decoder_by_name(const char *name)
return NULL;
}
int av_get_bit_rate(AVCodecContext *ctx)
static int get_bit_rate(AVCodecContext *ctx)
{
int bit_rate;
int bits_per_sample;
......@@ -907,7 +907,7 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
snprintf(buf + strlen(buf), buf_size - strlen(buf),
", pass 2");
}
bitrate = av_get_bit_rate(enc);
bitrate = get_bit_rate(enc);
if (bitrate != 0) {
snprintf(buf + strlen(buf), buf_size - strlen(buf),
", %d kb/s", bitrate / 1000);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment