ffmpeg: make a copy from a decoded frame (AVFrame)

2019-05-09 21:49发布

I want to make a backup frame (AVFrame) from a special frame(let's say pic). So, I have written

 AVFrame* bkf = avcodec_alloc_frame();
 memcpy(bkf,pic,sizeof(AVFrame));
 bkf->extended_data = pic->extended_data;
 bkf->linesize[0]   = pic->linesize[0];
 memcpy(bkf->data, pic->data, sizeof(pic->data));
 bkf->reordered_opaque = pic->reordered_opaque;
 bkf->sample_rate    = pic->sample_rate;
 bkf->channel_layout = pic->channel_layout;
 bkf->pkt_pts = pic->pkt_pts;
 bkf->pkt_pos = pic->pkt_pos;
 bkf->width = pic->width;
 bkf->format =  pic ->format;

to copy pic to bkf. But after running, I saw a lot of distortion. any idea how to make a correct copy from a decoded frame?

1条回答
闹够了就滚
2楼-- · 2019-05-09 22:32

Use av_frame_copy(bkf, pic) after allocating bkf with AVFrame *bkf = av_frame_alloc().

查看更多
登录 后发表回答