被声明为已否决 解决方法

举报
风吹稻花香 发表于 2021/06/05 01:37:19 2021/06/05
【摘要】 FFmpeg新版API接口编译报错解决方法   PIX_FMT_YUV420P -> AV_PIX_FMT_YUV420P     'AVStream::codec': 被声明为已否决: if(pFormatCtx->streams[i]->codec->codec_type==AVMEDIA_TYPE_VID...

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() 具体用法如下:

  
  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);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 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);
  5. avcodec_receive_packet(pCodecCtx, pPacket);
  • 1
  • 2
  • 3
  • 4
  • 5
  • avpicture_get_size() 
    现在改为使用av_image_get_size() 具体用法如下:

  
  1. old:
  2. avpicture_get_size(AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
  3. new:
  4. //最后一个参数align这里是置1的,具体看情况是否需要置1
  5. 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 具体用法如下:

  
  1. old:
  2. avpicture_fill((AVPicture *)pFrame, buffer, AV_PIX_FMT_YUV420P, pCodecCtx->width, pCodecCtx->height);
  3. new:
  4. //最后一个参数align这里是置1的,具体看情况是否需要置1
  5. 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赋值方式的改变

  
  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);
  6. avcodec_parameters_to_context(pCodecCtx,pFormatCtx->streams[video_index]->codecpar);
  7. pCodec = avcodec_find_decoder(pCodecCtx->codec_id);

 

 

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

文章来源: blog.csdn.net,作者:网奇,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/jacke121/article/details/79299129

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。