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

ffmpeg是音视频必备,但即使从业数年,它似乎依然有无穷的秘密,感兴趣添加笔者微信:YQW1163720468,加入ffmpeg微信群讨论。但记得备注:ffmpeg爱好者

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

、、、、南山小雨、、、、

分享对你有帮助,打赏一下吧!

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

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

打赏作者

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

抵扣说明:

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

余额充值