1 AVPacket

typedef
struct AVPacket {

/**

* Presentation timestamp in AVStream->time_base units; the time at which

* the decompressed packet will be presented to the user.

* Can be AV_NOPTS_VALUE if it is not stored in the file.

* pts MUST be larger or equal to dts as presentation cannot happen before

* decompression, unless one wants to view hex dumps. Some formats misuse

* the terms dts and pts/cts to mean something different. Such timestamps

* must be converted to true pts/dts before they are stored in AVPacket.

*/

int64_t pts;

/**

* Decompression timestamp in AVStream->time_base units; the time at which

* the packet is decompressed.

* Can be AV_NOPTS_VALUE if it is not stored in the file.

*/

int64_t dts;

uint8_t *data;

int   size;

int   stream_index;

int   flags;

int   duration;

.

.

.

} AVPacket

// AVPacket是个很重要的结构,该结构在读媒体源文件和写输出文件时都需要用到
// int64_t pts; 显示时间戳
// int64_t dts; 解码时间戳
// uint8_t *data; 包数据
// int   size; 包数据长度
// int   stream_index; 包所属流序号
// int   duration; 时长
// 以上信息,如果是在读媒体源文件那么avcodec会初始化,如果是输出文件,用户需要对以上信息赋值
 
2
av_init_packet()

/**

* Initialize optional fields of a packet with default values.

*

* @param pkt packet

*/

void av_init_packet(AVPacket *pkt);

// 使用默认值初始化AVPacket
// 定义AVPacket对象后,请使用av_init_packet进行初始化
 
3
av_free_packet()

/**

* Free a packet.

*

* @param pkt packet to free

*/

void av_free_packet(AVPacket *pkt);

// 释放AVPacket对象
 
4
av_read_frame()

/**

* Return the next frame of a stream.

* This function returns what is stored in the file, and does not validate

* that what is there are valid frames for the decoder. It will split what is

* stored in the file into frames and return one for each call. It will not

* omit invalid data between valid frames so as to give the decoder the maximum

* information possible for decoding.

*

* The returned packet is valid

* until the next av_read_frame() or until av_close_input_file() and

* must be freed with av_free_packet. For video, the packet contains

* exactly one frame. For audio, it contains an integer number of

* frames if each frame has a known fixed size (e.g. PCM or ADPCM

* data). If the audio frames have a variable size (e.g. MPEG audio),

* then it contains one frame.

*

* pkt->pts, pkt->dts and pkt->duration are always set to correct

* values in AVStream.time_base units (and guessed if the format cannot

* provide them). pkt->pts can be AV_NOPTS_VALUE if the video format

* has B-frames, so it is better to rely on pkt->dts if you do not

* decompress the payload.

*

* @return 0 if OK, < 0 on error or end of file

*/

int av_read_frame(AVFormatContext *s, AVPacket *pkt);

// 从输入源文件容器中读取一个AVPacket数据包

// 该函数读出的包并不每次都是有效的,对于读出的包我们都应该进行相应的解码(视频解码/音频解码),

// 在返回值>=0时,循环调用该函数进行读取,循环调用之前请调用av_free_packet函数清理AVPacket
 
5
avcodec_decode_video2()

/**

* Decode the video frame of size avpkt->size from avpkt->data into picture.

* Some decoders may support multiple frames in a single AVPacket, such

* decoders would then just decode the first frame.

*

* @warning The input buffer must be FF_INPUT_BUFFER_PADDING_SIZE larger than

* the actual read bytes because some optimized bitstream readers read 32 or 64

* bits at once and could read over the end.

*

* @warning The end of the input buffer buf should be set to 0 to ensure that

* no overreading happens for damaged MPEG streams.

*

* @note You might have to align the input buffer avpkt->data.

* The alignment requirements depend on the CPU: on some CPUs it isn't

* necessary at all, on others it won't work at all if not aligned and on others

* it will work but it will have an impact on performance.

*

* In practice, avpkt->data should have 4 byte alignment at minimum.

*

* @note Some codecs have a delay between input and output, these need to be

* fed with avpkt->data=NULL, avpkt->size=0 at the end to return the remaining frames.

*

* @param avctx the codec context

* @param[out] picture The AVFrame in which the decoded video frame will be stored.

*             Use avcodec_alloc_frame to get an AVFrame, the codec will

*             allocate memory for the actual bitmap.

*             with default get/release_buffer(), the decoder frees/reuses the bitmap as it sees fit.

*             with overridden get/release_buffer() (needs CODEC_CAP_DR1) the user decides into what buffer the decoder

*                   decodes and the decoder tells the user once it does not need the data anymore,

*                   the user app can at this point free/reuse/keep the memory as it sees fit.

*

* @param[in] avpkt The input AVpacket containing the input buffer.

*            You can create such packet with av_init_packet() and by then setting

*            data and size, some decoders might in addition need other fields like

*            flags&AV_PKT_FLAG_KEY. All decoders are designed to use the least

*            fields possible.

* @param[in,out] got_picture_ptr Zero if no frame could be decompressed, otherwise, it is nonzero.

* @return On error a negative value is returned, otherwise the number of bytes

* used or zero if no frame could be decompressed.

*/

int avcodec_decode_video2(AVCodecContext *avctx, AVFrame *picture,

int *got_picture_ptr,

AVPacket *avpkt);

// 解码视频流AVPacket
// 使用av_read_frame读取媒体流后需要进行判断,如果为视频流则调用该函数解码
// 返回结果<0时失败,此时程序应该退出检查原因
// 返回>=0时正常,假设 读取包为:AVPacket vPacket 返回值为 int vLen; 每次解码正常时,对vPacket做
// 如下处理:
//   vPacket.size -= vLen;

//   vPacket.data += vLen;
// 如果 vPacket.size==0,则继续读下一流包,否则继续调度该方法进行解码,直到vPacket.size==0
// 返回 got_picture_ptr > 0 时,表示解码到了AVFrame *picture,其后可以对picture进程处理
 
6
avcodec_decode_audio3()

/**

* Decode the audio frame of size avpkt->size from avpkt->data into samples.

* Some decoders may support multiple frames in a single AVPacket, such

* decoders would then just decode the first frame. In this case,

* avcodec_decode_audio3 has to be called again with an AVPacket that contains

* the remaining data in order to decode the second frame etc.

* If no frame

* could be outputted, frame_size_ptr is zero. Otherwise, it is the

* decompressed frame size in bytes.

*

* @warning You must set frame_size_ptr to the allocated size of the

* output buffer before calling avcodec_decode_audio3().

*

* @warning The input buffer must be FF_INPUT_BUFFER_PADDING_SIZE larger than

* the actual read bytes because some optimized bitstream readers read 32 or 64

* bits at once and could read over the end.

*

* @warning The end of the input buffer avpkt->data should be set to 0 to ensure that

* no overreading happens for damaged MPEG streams.

*

* @note You might have to align the input buffer avpkt->data and output buffer

* samples. The alignment requirements depend on the CPU: On some CPUs it isn't

* necessary at all, on others it won't work at all if not aligned and on others

* it will work but it will have an impact on performance.

*

* In practice, avpkt->data should have 4 byte alignment at minimum and

* samples should be 16 byte aligned unless the CPU doesn't need it

* (AltiVec and SSE do).

*

* @param avctx the codec context

* @param[out] samples the output buffer, sample type in avctx->sample_fmt

* @param[in,out] frame_size_ptr the output buffer size in bytes

* @param[in] avpkt The input AVPacket containing the input buffer.

*            You can create such packet with av_init_packet() and by then setting

*            data and size, some decoders might in addition need other fields.

*            All decoders are designed to use the least fields possible though.

* @return On error a negative value is returned, otherwise the number of bytes

* used or zero if no frame data was decompressed (used) from the input AVPacket.

*/

int avcodec_decode_audio3(AVCodecContext *avctx, int16_t *samples,

int *frame_size_ptr,

AVPacket *avpkt);

// 解码音频流AVPacket
// 使用av_read_frame读取媒体流后需要进行判断,如果为音频流则调用该函数解码
// 返回结果<0时失败,此时程序应该退出检查原因
// 返回>=0时正常,假设 读取包为:AVPacket vPacket 返回值为 int vLen; 每次解码正常时,对vPacket做
// 如下处理:
//   vPacket.size -= vLen;

//   vPacket.data += vLen;
// 如果 vPacket.size==0,则继续读下一流包,否则继续调度该方法进行解码,直到vPacket.size==0
//

ffmpeg结构体以及函数介绍(三)的更多相关文章

  1. ffmpeg结构体以及函数介绍(一)

    本文对在使用ffmpeg进行音视频编解码时使用到的一些函数做一个简单介绍,我当前使用的ffmpeg版本为:0.8.5,因为本人发现在不同的版本中,有些函数名称会有点小改动,所以在此有必要说明下ffmp ...

  2. ffmpeg结构体以及函数介绍(二)

    1 avcodec_find_decoder() /** * Find a registered decoder with a matching codec ID. * * @param id Cod ...

  3. FFmpeg 结构体学习(三): AVPacket 分析

    在上文FFmpeg 结构体学习(二): AVStream 分析我们学习了AVStream结构体的相关内容.本文,我们将讲述一下AVPacket. AVPacket是存储压缩编码数据相关信息的结构体.下 ...

  4. FFMPEG结构体分析:AVCodec

    注:写了一系列的结构体的分析的文章,在这里列一个列表: FFMPEG结构体分析:AVFrame FFMPEG结构体分析:AVFormatContext FFMPEG结构体分析:AVCodecConte ...

  5. FFMPEG结构体分析:AVFrame

    注:写了一系列的结构体的分析的文章,在这里列一个列表: FFMPEG结构体分析:AVFrameFFMPEG结构体分析:AVFormatContextFFMPEG结构体分析:AVCodecContext ...

  6. FFmpeg 结构体学习(五): AVCodec 分析

    在上文FFmpeg 结构体学习(四): AVFrame 分析我们学习了AVFrame结构体的相关内容.本文,我们将讲述一下AVCodec. AVCodec是存储编解码器信息的结构体.下面我们来分析一下 ...

  7. [转载] FFMPEG结构体分析:AVFrame

    注:写了一系列的结构体的分析的文章,在这里列一个列表: FFMPEG结构体分析:AVFrameFFMPEG结构体分析:AVFormatContextFFMPEG结构体分析:AVCodecContext ...

  8. FFMPEG结构体分析:AVIOContext

    注:写了一系列的结构体的分析的文章,在这里列一个列表: FFMPEG结构体分析:AVFrame FFMPEG结构体分析:AVFormatContext FFMPEG结构体分析:AVCodecConte ...

  9. FFMPEG结构体分析:AVFormatContext

    注:写了一系列的结构体的分析的文章,在这里列一个列表: FFMPEG结构体分析:AVFrameFFMPEG结构体分析:AVFormatContextFFMPEG结构体分析:AVCodecContext ...

随机推荐

  1. ferror,perror,cleaner

    1.ferror 函数原型: int ferror(FILE *fp) 功能:测试文件是否出现错误 返回值:未出错是0:出错为非0. 每次调用文件输入输出函数,均产生一个新的ferror函数值 fop ...

  2. ipython的用法详解

    ipython是一个升级版的交互式python命令行工具. ipython安装 pip install ipython 等到命令执行完成后显示successfully表示完装成功 在命令提示符下输入i ...

  3. ansible playbook实践(一)-基础环境安装

    1 介绍 Ansible 是一个系统自动化工具,用来做系统配管理,批量对远程主机执行操作指令. 2 实验环境 ip 角色 192.168.40.71 ansible管控端 192.168.40.72 ...

  4. ABP示例程序-使用AngularJs,ASP.NET MVC,Web API和EntityFramework创建N层的单页面Web应用

    本片文章翻译自ABP在CodeProject上的一个简单示例程序,网站上的程序是用ABP之前的版本创建的,模板创建界面及工程文档有所改变,本文基于最新的模板创建.通过这个简单的示例可以对ABP有个更深 ...

  5. ABP官方文档翻译 4.5 特征管理

    特征管理 介绍 关于IFeatureValueStore 特征类型 Boolean特征 Value特征 定义特征 基本特征属性 其他特征属性 特征层级 检查特征 使用RequiresFeature特性 ...

  6. 洛谷 [P3355] 骑士共存问题

    二分图求最大独立点集 本问题在二分图中已处理过,此处用dinic写了一遍 #include <iostream> #include <cstdio> #include < ...

  7. 洛谷 [P2764]最小路径覆盖问题

    二分图应用模版 #include <iostream> #include <cstdio> #include <algorithm> #include <cs ...

  8. UOJ Round #15 [构造 | 计数 | 异或哈希 kmp]

    UOJ Round #15 大部分题目没有AC,我只是水一下部分分的题解... 225[UR #15]奥林匹克五子棋 题意:在n*m的棋盘上构造k子棋的平局 题解: 玩一下发现k=1, k=2无解,然 ...

  9. BZOJ 4031: [HEOI2015]小Z的房间 [矩阵树定理 行列式取模]

    http://www.lydsy.com/JudgeOnline/problem.php?id=4031 裸题........ 问题在于模数是$10^9$ 我们发现消元的目的是让一个地方为0 辗转相除 ...

  10. 百度地图api 区级以下行政区划

    我们在使用百度地图api想要展示苏州市吴中区各乡镇的行政区范围: 百度api有提供了“添加行政区划”的示例:http://lbsyun.baidu.com/jsdemo.htm#c1_10 但该功能目 ...