ffmpeg新旧函数对比

打印 上一主题 下一主题

主题 1033|帖子 1033|积分 3103

搬运博客园“kn-zheng”大佬博客
从FFmpeg 3.0 开始 , 使用了许多新接口,对不如下:
1、avcodec_decode_video2() 原来的解码函数被拆解为两个函数avcodec_send_packet()和avcodec_receive_frame() 具体用法如下:
  1. old:
  2. avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, pPacket);
  3. new:
  4. avcodec_send_packet(pCodecCtx, pPacket);
  5. avcodec_receive_frame(pCodecCtx, pFrame);
复制代码
2、 avcodec_encode_video2() 对应的编码函数也被拆分为两个函数avcodec_send_frame()和avcodec_receive_packet() 具体用法如下:
  1. old:
  2. avcodec_encode_video2(pCodecCtx, pPacket, pFrame, &got_picture);
  3. new:
  4. avcodec_send_frame(pCodecCtx, pFrame); avcodec_receive_packet(pCodecCtx, pPacket);
复制代码
3、avpicture_get_size() 现在改为使用av_image_get_size() 具体用法如下:
  1. old:
  2. avpicture_get_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
  3. new: //最后一个参数align这里是置1的,具体看情况是否需要置1
  4. av_image_get_buffer_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1);
复制代码
4、 avpicture_fill() 现在改为使用av_image_fill_arrays 具体用法如下:
  1. old:
  2. avpicture_fill((AVPicture *)pFrame, buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
  3. new: //最后一个参数align这里是置1的,具体看情况是否需要置1
  4. av_image_fill_arrays(pFrame->data, pFrame->linesize, buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height,1);
复制代码
5、关于codec问题有的可以直接改为codecpar,但有的时候这样这样是不对的,所以我也还在探索,这里记载一个对pCodecCtx和pCodec赋值方式的改变
  1. old:
  2. pCodecCtx = pFormatCtx->streams[video_index]->codec;
  3. pCodec = avcodec_find_decoder(pFormatCtx->streams[video_index]->codec->codec_id);
  4. new:
  5. pCodecCtx = avcodec_alloc_context3(NULL);avcodec_parameters_to_context(pCodecCtx,pFormatCtx->streams[video_index]->codecpar);
  6. pCodec = avcodec_find_decoder(pCodecCtx->codec_id);
复制代码
6、PIX_FMT_YUV420P -> AV_PIX_FMT_YUV420P
7、‘AVStream::codec’: 被声明为已否决:
  1. old:
  2. pCodecCtx = pFormatCtx->streams[videoindex]->codec;
  3. new:
  4. pCodecCtx = avcodec_alloc_context3(NULL);
  5. avcodec_parameters_to_context(pCodecCtx, pFormatCtx->streams[videoindex]->codecpar);
复制代码
8、 ‘avpicture_fill’: 被声明为已否决:
  1. old:
  2. avpicture_fill((AVPicture *)pFrameYUV, out_buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
  3. new:
  4. av_image_fill_arrays(pFrameYUV->data, pFrameYUV->linesize, out_buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1);
复制代码
9、‘avcodec_decode_video2’: 被声明为已否决:
  1. old:
  2. ret = avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, packet); //got_picture_ptr Zero if no frame could be decompressed
  3. new:
  4. ret = avcodec_send_packet(pCodecCtx, packet);
  5. got_picture = avcodec_receive_frame(pCodecCtx, pFrame); //got_picture = 0 success, a frame was returned //注意:got_picture含义相反
  6. 或者:
  7. int ret = avcodec_send_packet(aCodecCtx, &pkt);
  8. if (ret != 0)
  9. {
  10. prinitf("%s/n","error");
  11. return;
  12. }
  13. while( avcodec_receive_frame(aCodecCtx, &frame) == 0)
  14. {
  15. //读取到一帧音频或者视频 //处理解码后音视频 frame
  16. }
复制代码
10、‘av_free_packet’: 被声明为已否决:
  1. old:
  2. av_free_packet(packet);
  3. new:
  4. av_packet_unref(packet);
复制代码
11、avcodec_decode_audio4:被声明为已否决:
  1. old:
  2. result = avcodec_decode_audio4(dec_ctx, out_frame, &got_output, &enc_pkt);
  3. new:
  4. int ret = avcodec_send_packet(dec_ctx, &enc_pkt);
  5. if (ret != 0)
  6. {
  7. prinitf("%s/n","error");
  8. }
  9. while( avcodec_receive_frame(dec_ctx, &out_frame) == 0)
  10. {
  11. //读取到一帧音频或者视频
  12. //处理解码后音视频 frame
  13. }
复制代码
  1. 旧接口av_register_all()------------新版不需要注册
  2. PKT_FLAG_KEY ---------------->AV_PKT_FLAG_KEY
  3. AV_CODEC_CAP_DELAY----->AV_CODEC_CAP_DELAY
  4. guess_format ------------>av_guess_format
  5. av_alloc_format_context ---------->avformat_alloc_output_context
  6. CODEC_TYPE_VIDEO ----------------->AVMEDIA_TYPE_VIDEO
  7. CODEC_TYPE_AUDIO ---------------->AVMEDIA_TYPE_AUDIO
  8. audio_resample_init ----------------->av_audio_resample_init
  9. PIX_FMT_YUV420P -> AV_PIX_FMT_YUV420P
  10. AVStream::codec     被声明为已否决
  11. ‘avpicture_get_size’: 被声明为已否决
  12. 新的API中将AVStream结构体中codec作了遗弃处理,当需要解码器上下文的时候,需要用AVCodecParameters去转化,解决方案是如下
  13. av_free_packet(packet)--------------------> av_packet_unref(packet);
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

东湖之滨

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表