使用来自FFmpeg的

时间:2017-01-11 11:38:52

标签: ffmpeg libavcodec opus

我正在尝试使用libavcodec解码opus。我可以单独使用libopus库来完成它。但我试图使用libavcodec来实现同样的效果。我想弄清楚为什么它不能在我的情况下工作。我有一个rtp流并尝试解码它。解码数据包的结果与输入相同。解码帧通常包含pcm值,而不是实际发送的Im接收opus帧。请帮帮我。

av_register_all();
avcodec_register_all();
AVCodec *codec;
AVCodecContext *c = NULL;
AVPacket avpkt;
AVFrame *decoded_frame = NULL;
av_init_packet(&avpkt);
codec = avcodec_find_decoder(AV_CODEC_ID_OPUS);
if (!codec) {
     printf("Codec not found\n");
     exit(1);
}
c = avcodec_alloc_context3(codec);
if (!c) {
   printf("Could not allocate audio codec context\n");
   exit(1);
}
/* put sample parameters */
c->sample_rate = 48000;
c->request_sample_fmt = AV_SAMPLE_FMT_FLT;
c->channels = 2;
/* open it */
if (avcodec_open2(c, codec, NULL) < 0) {
    printf("Could not open codec\n");
    exit(1);
}

AVPacket avpkt;
AVFrame *decoded_frame = NULL;
av_init_packet(&avpkt);
avpkt.data = Buffer;  // Buffer is packet data here
avpkt.size = len;    // length of the packet
int i, ch;

if (!decoded_frame) {
    if (!(decoded_frame = av_frame_alloc())) {
        RELAY_SERVER_PRINT("Could not allocate audio frame\n");
        exit(1);
    }
}
int ret;
int got_frame = 0;
ret = avcodec_decode_audio4(c, decoded_frame, &got_frame, &avpkt);
if (ret < 0) {
        fprintf(stderr, "Error decoding audio frame (%s)\n", av_err2str(ret));
        return ret;
    }
printf("length %i\n", decoded_frame->pkt_size);

1 个答案:

答案 0 :(得分:3)

我遇到了同样的问题。我的流编码为8kHz,ffmpeg总是用48kHz(硬编码)初始化libopus。

请参阅ffmpeg代码段:

static av_cold int libopus_decode_init(AVCodecContext *avc)
{
    (...)
    avc->sample_rate    = 48000;
    avc->sample_fmt     = avc->request_sample_fmt == AV_SAMPLE_FMT_FLT ?
                          AV_SAMPLE_FMT_FLT : AV_SAMPLE_FMT_S16;
    (...)  
}

我已将其替换为:

if (avc->sample_rate == 0)
    avc->sample_rate = 48000;

现在解码工作正常。我想知道这个解码器是否支持动态比特率变化。

原始帧的长度必须通过以下方式计算:

int frame_size = decoded_frame->nb_samples * av_get_bytes_per_sample(decoded_frame->sample_fmt);