ffmpeg框架中如何从avframe中获取yuv数据用于测试

avcodec_decode_video2(pstream_info->dec_ctx, pDecodeFrame, &frameFinished,&pkt);
if(frameFinished)
{
if (pstream_info->dec_ctx->pix_fmt == AV_PIX_FMT_YUV420P) //如果是yuv420p的
{
for(i = 0 ; i < pstream_info->dec_ctx->height ; i++)
{
memcpy(video_decode_buf+pstream_info->dec_ctx->widthi,
pDecodeFrame->data[0]+pDecodeFrame->linesize[0]i,
pstream_info->dec_ctx->width);
}
for(j = 0 ; j < pstream_info->dec_ctx->height/2 ; j++)
{
memcpy(video_decode_buf+pstream_info->dec_ctx->width
i+pstream_info->dec_ctx->width/2
j,
pDecodeFrame->data[1]+pDecodeFrame->linesize[1]j,
pstream_info->dec_ctx->width/2);
}
for(k =0 ; k < pstream_info->dec_ctx->height/2 ; k++)
{
memcpy(video_decode_buf+pstream_info->dec_ctx->width
i+pstream_info->dec_ctx->width/2j+pstream_info->dec_ctx->width/2k,
pDecodeFrame->data[2]+pDecodeFrame->linesize[2]k,
pstream_info->dec_ctx->width/2);
}
}
else if (pstream_info->dec_ctx->pix_fmt == AV_PIX_FMT_YUV422P)//如果是yuv422p的
{
for(i = 0 ; i < pstream_info->dec_ctx->height ; i++)
{
memcpy(video_decode_buf+pstream_info->dec_ctx->width
i,
pDecodeFrame->data[0]+pDecodeFrame->linesize[0]i,
pstream_info->dec_ctx->width);
}
for(j = 0 ; j < pstream_info->dec_ctx->height ; j++)
{
memcpy(video_decode_buf+pstream_info->dec_ctx->width
i+pstream_info->dec_ctx->width/2j,
pDecodeFrame->data[1]+pDecodeFrame->linesize[1]j,
pstream_info->dec_ctx->width/2);
}
for(k =0 ; k < pstream_info->dec_ctx->height ; k++)
{
memcpy(video_decode_buf+pstream_info->dec_ctx->width
i+pstream_info->dec_ctx->width/2
j+pstream_info->dec_ctx->width/2*k,
pDecodeFrame->data[2]+pDecodeFrame->linesize[2]*k,
pstream_info->dec_ctx->width/2);
}
}
else
{
//可扩展
}
video_decode_size = avpicture_get_size(pstream_info->dec_ctx->pix_fmt, pstream_info->dec_ctx->width,pstream_info->dec_ctx->height);
new_videosize = video_decode_size;

		//缩放或格式转换
		if (pstream_info->dec_ctx->width != Zoom_Width || 
			pstream_info->dec_ctx->height !=  Zoom_Height ||
			pstream_info->dec_ctx->pix_fmt != Zoom_pix_fmt)
		{
			    new_videosize = VideoScaleYuvZoom(Is_flip,pstream_info->dec_ctx->width ,pstream_info->dec_ctx->height,(int)pstream_info->dec_ctx->pix_fmt,
				Zoom_Width,Zoom_Height,Zoom_pix_fmt,video_decode_buf);
		}
		//这里可以取出数据
		frame_info->stream_idx = pstream_info->stream_idx;
		//frame_info->pts = pDecodeFrame->pkt_pts * 1000 * av_q2d(pstream_info->stream->time_base);  //转化成毫秒
		frame_info->pts = pDecodeFrame->pkt_pts ;
		frame_info->timebase_den = pstream_info->stream->time_base.den;  
		frame_info->timebase_num = pstream_info->stream->time_base.num; 
		frame_info->bufsize = new_videosize;
		memcpy(frame_info->buf,video_decode_buf,new_videosize);
	}

————————————————
版权声明:本文为CSDN博主「朱韦刚」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/zhuweigangzwg/article/details/43734169

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值