1. 解码时,一定要用avcodec_parameters_to_context(),将流的参数(stream->codecpar)复制到解码器中,否则某些流可能无法正常解码。
//第七步,给给解码器上下文添加参数, avcodec_parameters_to_context():
ret = avcodec_parameters_to_context(mp3decodercontext, mp3avstrem->codecpar);
2.解码第一帧前,一定要将解码器的timebase设置为流的timebase(即:dec_ctx->pkt_timebase = stream->time_base),否则提示"Could not update timestamps for skipped samples"。
//for fix "error Could not update timestamps for skipped samples. "
mp3decodercontext->pkt_timebase = mp3avstrem->time_base;
实际上上述两个问题的本质是:
AVStream 和 AVCodecContext 得到的信息不一样,严格来说,是AVStream获得的多。具体分析一下:
AVStream 是从 av_find_best_stream获得的,而 AVCodecContext 是从直接通过 avcodec_find_decoder(enum AVCodecID id) 获得的,
而AVCodecID 就是固定的那几种,例如 AV_CODEC_ID_H264,可以想象,ffmpeg内部的实现一定是有限制的,其实现一定是参考 h264的spec 。因此才有了上述两个方法的必要性。