AVPacket结构体内几个变量分析

简介: AVPacket结构体内几个变量分析

AVFrame结构体中变量解释

AVPacket结构体内几个变量分析:

AVBufferRef *buf;

引用计数时使用,多个packet指向同一块内存,没用到默认是NULL

int stream_index;

当读取到一帧数据后,用以区分是视频帧,音频帧,还是字幕帧。stream_index不同的值代表哪一种帧呢,见后附代码,这个需要从流中获取,stream_index值等于video_index时即为视频帧,stream_index值等于audio_index时即为音频帧。

int flags;

区分是否关键帧,为1时是关键帧,关键帧为AV_PKT_FLAG_KEY(也就是1)

for (int i = 0; i < ic->nb_streams; i++)
{
    if (ic->streams[i]->codec->codec_type == AVMEDIA_TYPE_VIDEO)
    {
        // ic->streams[i]->codecpar
        video_index = i;
    }
    if (ic->streams[i]->codec->codec_type == AVMEDIA_TYPE_AUDIO)
    {
        // ic->streams[i]->codecpar
        audio_index = i;
    }
}


在源码packet.h中定义如下:

#define AV_PKT_FLAG_KEY     0x0001 ///< The packet contains a keyframe
#define AV_PKT_FLAG_CORRUPT 0x0002 ///< The packet content is corrupted
/**
 * Flag is used to discard packets which are required to maintain valid
 * decoder state but are not required for output and should be dropped
 * after decoding.
 **/
#define AV_PKT_FLAG_DISCARD   0x0004
/**
 * The packet comes from a trusted source.
 *
 * Otherwise-unsafe constructs such as arbitrary pointers to data
 * outside the packet may be followed.
 */
#define AV_PKT_FLAG_TRUSTED   0x0008
/**
 * Flag is used to indicate packets that contain frames that can
 * be discarded by the decoder.  I.e. Non-reference frames.
 */
#define AV_PKT_FLAG_DISPOSABLE 0x0010


相关文章
|
2月前
|
API
FFmpeg中AVPacket、AVFrame结构的基本使用
FFmpeg中AVPacket和AVFrame结构的内存分配、释放和引用计数处理,以及如何避免内存泄漏。
61 3
|
7月前
|
存储 安全 编译器
C/C中sizeof和strlen函数的实现:详细解析sizeof和strlen函数的实现机制、参数说明和使用技巧
C/C中sizeof和strlen函数的实现:详细解析sizeof和strlen函数的实现机制、参数说明和使用技巧
87 1
nobuffer与av_read_frame的关系
nobuffer与av_read_frame的关系
92 0
|
7月前
|
编译器 C++
C++中memcpy函数的实现
C++中memcpy函数的实现
208 0
|
7月前
|
算法 编译器 C语言
memcpy内存拷贝函数
memcpy内存拷贝函数
114 0
|
7月前
|
编译器 C++
offsetof宏的使用、模拟实现及 (size_t)&(((struct_type*)0)->mem_name)的解释
offsetof宏的使用、模拟实现及 (size_t)&(((struct_type*)0)->mem_name)的解释
|
编解码 BI
AVFrame结构体中变量解释
AVFrame结构体中变量解释
80 0
AV_PIX_FMT_YUV420P12LE’在此作用域中尚未声明
AV_PIX_FMT_YUV420P12LE’在此作用域中尚未声明
97 0
|
C++
memcpy函数
memcpy函数
167 0