AVPacket:
.AVBufferRef *buf;//引用计数
int64_t pts;//pts *(num/den) 显示时间
int64_t dts;//解码时间
av_packet_alloc(void);创建并初始化 会申请空间需要释放
av_packet_clone();创建并并用计数
void av_packet_free();清空对象并减少引用计数
void av_init_packet();默认值
av_seek_frame:(seek操作):
int av_seek_frame(AVFormatContext *s,int stream_index,//-1 default
int64_t timestamp,//
int flags);
avcodec_find_decoder 查找解码器
avcodec_register_all() 注册解码器
AVCodec *avcodec_find_decoder(AVCodecID id);通过id获取解码器 28 h264
AVCodec *avcodec_find_decoder_by_name(const char *name);//通过name获取视频音频解码器
AVCodecContext
AVCodecContext *avcodec_alloc_context3(const AVCodec *codec ) //申请初始化
void avcodec_free_context(AVCodecContext **avctx);//上下文空间释放
int avcodec_open2(…)//打开
int thread_count ;线程数
time_base
avcodec_send_packet //发送 到解码队列中 后台多线程解码 参数为对应流的上下文和AVPacket
avcodec_receive_frame //接受 发一次不一定接受一次 参数为对应流的上下文和AVPacket
FFmpeg方法记录
最新推荐文章于 2021-09-30 11:04:46 发布