被声明为已否决 解决方法

FFmpeg新版API接口编译报错解决方法

 

PIX_FMT_YUV420P -> AV_PIX_FMT_YUV420P

 

 

'AVStream::codec': 被声明为已否决:

if(pFormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VIDEO){

=>

if(pFormatCtx->streams[i]->codecpar->codec_type==AVMEDIA_TYPE_VIDEO){

 

 

'AVStream::codec': 被声明为已否决:

pCodecCtx = pFormatCtx->streams[videoindex]->codec;

=>

pCodecCtx = avcodec_alloc_context3(NULL);

avcodec_parameters_to_context(pCodecCtx, pFormatCtx->streams[videoindex]->codecpar);

 

 

'avpicture_get_size': 被声明为已否决:

avpicture_get_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height)

=>

#include "libavutil/imgutils.h"

av_image_get_buffer_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1)

 

 

'avpicture_fill': 被声明为已否决:

avpicture_fill((AVPicture *)pFrameYUV, out_buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);

=>

av_image_fill_arrays(pFrameYUV->data, pFrameYUV->linesize, out_buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1);

 

 

'avcodec_decode_video2': 被声明为已否决:

ret = avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, packet); //got_picture_ptr Zero if no frame could be decompressed

=>

ret = avcodec_send_packet(pCodecCtx, packet);

got_picture = avcodec_receive_frame(pCodecCtx, pFrame); //got_picture = 0 success, a frame was returned

//注意:got_picture含义相反

 

 

'av_free_packet': 被声明为已否决:

av_free_packet(packet);

=>

av_packet_unref(packet);

 

现在看到的很多FFmpeg讲解实例,其中的代码大多数都是比较老旧的,特别是在一些基本用法上,学习使用时编译会看见很多的warning,类似“ warning: ‘AVStream::codec’ is deprecated (declared at /usr/local/ffmpeg/include/libavformat/avformat.h:880) [-Wdeprecated-declarations] 
out_stream->codec->flags |= CODEC_FLAG_GLOBAL_HEADER;”

本篇博客意在整理自己在实际使用中,对这些新老对照API的整理,以方便后续使用,本身也会持续更新。


  • avcodec_decode_video2() 
    原本的解码函数被拆解为两个函数avcodec_send_packet()和avcodec_receive_frame() 具体用法如下:
   old:
   avcodec_decode_video2(pCodecCtx, pFrame, &got_picture, pPacket);
   new:
   avcodec_send_packet(pCodecCtx, pPacket);
   avcodec_receive_frame(pCodecCtx, pFrame);
  • 1
  • 2
  • 3
  • 4
  • 5
  • avcodec_encode_video2() 
    对应的编码函数也被拆分为两个函数avcodec_send_frame()和avcodec_receive_packet() 具体用法如下:
   old:
   avcodec_encode_video2(pCodecCtx, pPacket, pFrame, &got_picture);
   new:
   avcodec_send_frame(pCodecCtx, pFrame);
   avcodec_receive_packet(pCodecCtx, pPacket);
  • 1
  • 2
  • 3
  • 4
  • 5
  • avpicture_get_size() 
    现在改为使用av_image_get_size() 具体用法如下:
   old:
   avpicture_get_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
   new:
   //最后一个参数align这里是置1的,具体看情况是否需要置1
   av_image_get_buffer_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height, 1);
  • 1
  • 2
  • 3
  • 4
  • 5
  • avpicture_fill() 
    现在改为使用av_image_fill_arrays 具体用法如下:
   old:
   avpicture_fill((AVPicture *)pFrame, buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
   new:
   //最后一个参数align这里是置1的,具体看情况是否需要置1
   av_image_fill_arrays(pFrame->data, pFrame->linesize, buffer, AV_PIX_FMT_YUV420P,  pCodecCtx->width, pCodecCtx->height,1);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 关于codec问题有的可以直接改为codecpar,但有的时候这样这样是不对的,所以我也还在探索,这里记录一个对pCodecCtx和pCodec赋值方式的改变
   old:
   pCodecCtx = pFormatCtx->streams[video_index]->codec;
   pCodec = avcodec_find_decoder(pFormatCtx->streams[video_index]->codec->codec_id);
   new:
    pCodecCtx = avcodec_alloc_context3(NULL);
    avcodec_parameters_to_context(pCodecCtx,pFormatCtx->streams[video_index]->codecpar);
    pCodec    = avcodec_find_decoder(pCodecCtx->codec_id);

 

 

来源: https://www.isvee.com/archives/2018

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

AI视觉网奇

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值