视频压缩的流程

初始化:
av_register_all


avformat_alloc_output_context2


avcodec_find_encoder


avcodec_alloc_context3


av_dict_set


//打开编码器
avcodec_open2


//Add a new stream to output,should be called by the user before avformat_write_header() for muxing
avformat_new_stream


//Open output URL,set before avformat_write_header() for muxing
avio_open


//Write File Header
avformat_write_header(ofmt_ctx, NULL);




循环编码:  编码时需写入PTS, enc_pkt.dts = enc_pkt.pts;
avcodec_alloc_frame


//Frame分配内存
avpicture_fill


av_init_packet


//编码
avcodec_encode_video2
av_frame_free


//设置DTS -->PTS ,通过DTS\PTS实现音视频同步
enc_pkt.pts = av_rescale_q(framecnt*calc_duration, time_base_q, time_base);
//DTS -->PTS
enc_pkt.dts = enc_pkt.pts;


av_interleaved_write_frame
av_free_packet


flush:
while (1) {
av_init_packet

avcodec_encode_video2

//Write PTS


}


close:
释放内存。。。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值