ffmpeg源代码简单分析 :avcodec_decode_video2()

2023-11-23 04:58

本文主要是介绍ffmpeg源代码简单分析 :avcodec_decode_video2(),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

avcodec_decode_video2()的函数实现如下所示:

int attribute_align_arg avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,int *got_picture_ptr,const AVPacket *avpkt)
{AVCodecInternal *avci = avctx->internal;int ret;// copy to ensure we do not change avpktAVPacket tmp = *avpkt;if (!avctx->codec)return AVERROR(EINVAL);if (avctx->codec->type != AVMEDIA_TYPE_VIDEO) {av_log(avctx, AV_LOG_ERROR, "Invalid media type for video\n");return AVERROR(EINVAL);}*got_picture_ptr = 0;if ((avctx->coded_width || avctx->coded_height) && av_image_check_size(avctx->coded_width, avctx->coded_height, 0, avctx))return AVERROR(EINVAL);avcodec_get_frame_defaults(picture);if (!avctx->refcounted_frames)av_frame_unref(&avci->to_free);if ((avctx->codec->capabilities & CODEC_CAP_DELAY) || avpkt->size || (avctx->active_thread_type & FF_THREAD_FRAME)) {int did_split = av_packet_split_side_data(&tmp);apply_param_change(avctx, &tmp);avctx->pkt = &tmp;if (HAVE_THREADS && avctx->active_thread_type & FF_THREAD_FRAME)ret = ff_thread_decode_frame(avctx, picture, got_picture_ptr,&tmp);else {ret = avctx->codec->decode(avctx, picture, got_picture_ptr,&tmp);picture->pkt_dts = avpkt->dts;if(!avctx->has_b_frames){av_frame_set_pkt_pos(picture, avpkt->pos);}//FIXME these should be under if(!avctx->has_b_frames)/* get_buffer is supposed to set frame parameters */if (!(avctx->codec->capabilities & CODEC_CAP_DR1)) {if (!picture->sample_aspect_ratio.num)    picture->sample_aspect_ratio = avctx->sample_aspect_ratio;if (!picture->width)                      picture->width               = avctx->width;if (!picture->height)                     picture->height              = avctx->height;if (picture->format == AV_PIX_FMT_NONE)   picture->format              = avctx->pix_fmt;}}add_metadata_from_side_data(avctx, picture);emms_c(); //needed to avoid an emms_c() call before every return;avctx->pkt = NULL;if (did_split) {av_packet_free_side_data(&tmp);if(ret == tmp.size)ret = avpkt->size;}if (ret < 0 && picture->data[0])av_frame_unref(picture);if (*got_picture_ptr){if (!avctx->refcounted_frames) {avci->to_free = *picture;avci->to_free.extended_data = avci->to_free.data;memset(picture->buf, 0, sizeof(picture->buf));}avctx->frame_number++;av_frame_set_best_effort_timestamp(picture,guess_correct_pts(avctx,picture->pkt_pts,picture->pkt_dts));}} elseret = 0;/* many decoders assign whole AVFrames, thus overwriting extended_data;* make sure it's set correctly */picture->extended_data = picture->data;return ret;
}
该函数的输入和输出参数分别为 const AVPacket *avpkt和 AVFrame *picture,分别表示待解码的码流和解码完成后的音视频信号,函数的核心是 ret = avctx->codec->decode(avctx, picture, got_picture_ptr,  &tmp),调用预定义好的解码器进行解码。

这篇关于ffmpeg源代码简单分析 :avcodec_decode_video2()的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/415493

相关文章

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

Mysql表的简单操作(基本技能)

《Mysql表的简单操作(基本技能)》在数据库中,表的操作主要包括表的创建、查看、修改、删除等,了解如何操作这些表是数据库管理和开发的基本技能,本文给大家介绍Mysql表的简单操作,感兴趣的朋友一起看... 目录3.1 创建表 3.2 查看表结构3.3 修改表3.4 实践案例:修改表在数据库中,表的操作主要

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

Spring事务中@Transactional注解不生效的原因分析与解决

《Spring事务中@Transactional注解不生效的原因分析与解决》在Spring框架中,@Transactional注解是管理数据库事务的核心方式,本文将深入分析事务自调用的底层原理,解释为... 目录1. 引言2. 事务自调用问题重现2.1 示例代码2.2 问题现象3. 为什么事务自调用会失效3

找不到Anaconda prompt终端的原因分析及解决方案

《找不到Anacondaprompt终端的原因分析及解决方案》因为anaconda还没有初始化,在安装anaconda的过程中,有一行是否要添加anaconda到菜单目录中,由于没有勾选,导致没有菜... 目录问题原因问http://www.chinasem.cn题解决安装了 Anaconda 却找不到 An

Spring定时任务只执行一次的原因分析与解决方案

《Spring定时任务只执行一次的原因分析与解决方案》在使用Spring的@Scheduled定时任务时,你是否遇到过任务只执行一次,后续不再触发的情况?这种情况可能由多种原因导致,如未启用调度、线程... 目录1. 问题背景2. Spring定时任务的基本用法3. 为什么定时任务只执行一次?3.1 未启用

如何使用Python实现一个简单的window任务管理器

《如何使用Python实现一个简单的window任务管理器》这篇文章主要为大家详细介绍了如何使用Python实现一个简单的window任务管理器,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起... 任务管理器效果图完整代码import tkinter as tkfrom tkinter i

C++ 各种map特点对比分析

《C++各种map特点对比分析》文章比较了C++中不同类型的map(如std::map,std::unordered_map,std::multimap,std::unordered_multima... 目录特点比较C++ 示例代码 ​​​​​​代码解释特点比较1. std::map底层实现:基于红黑

C++中函数模板与类模板的简单使用及区别介绍

《C++中函数模板与类模板的简单使用及区别介绍》这篇文章介绍了C++中的模板机制,包括函数模板和类模板的概念、语法和实际应用,函数模板通过类型参数实现泛型操作,而类模板允许创建可处理多种数据类型的类,... 目录一、函数模板定义语法真实示例二、类模板三、关键区别四、注意事项 ‌在C++中,模板是实现泛型编程

Spring、Spring Boot、Spring Cloud 的区别与联系分析

《Spring、SpringBoot、SpringCloud的区别与联系分析》Spring、SpringBoot和SpringCloud是Java开发中常用的框架,分别针对企业级应用开发、快速开... 目录1. Spring 框架2. Spring Boot3. Spring Cloud总结1. Sprin