ffmpeg实现图像倒转

int reverse_img(unsigned char* src_buf, unsigned char* dst_buf, unsigned int n_src_width, unsigned int n_src_height, unsigned int n_dst_width, unsigned int n_dst_height)
{
	if (src_buf == NULL || dst_buf == NULL) {
		return -1;
	}

	AVFrame* src_frame = av_frame_alloc();
	AVFrame* dst_frame = av_frame_alloc();

	avpicture_fill((AVPicture*)src_frame, (uint8_t*)src_buf, AV_PIX_FMT_RGB24, n_src_width, n_src_height);
	avpicture_fill((AVPicture*)dst_frame, (uint8_t*)dst_buf, AV_PIX_FMT_BGR24, n_dst_width, n_dst_height);
	src_frame->data[0] += src_frame->linesize[0] * (n_src_height - 1);
	src_frame->linesize[0] = -src_frame->linesize[0];
	SwsContext* cxt = sws_getContext(n_src_width, n_src_height, AV_PIX_FMT_RGB24, n_dst_width, n_dst_height, AV_PIX_FMT_BGR24, SWS_FAST_BILINEAR, NULL, NULL, NULL);
	if (cxt==NULL){
		av_frame_free(&src_frame);
		av_frame_free(&dst_frame);
		return -1;
	} 
	int n_height = sws_scale(cxt, src_frame->data, src_frame->linesize, 0, n_src_height, dst_frame->data, dst_frame->linesize);
	//DP1("scale_publish_img_size: %d", n_height);
	sws_freeContext(cxt);
	av_frame_free(&src_frame);
	av_frame_free(&dst_frame);
	return 0;
}

由于DirectShow采集到的图像是倒的,可以使用这个函数进行倒转恢复过来,备注:这里仅针对RGB24或RGB32图像格式有效,对YUV格式因格式排列原因,无法使用该方法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

爱技术爱生活

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值