我想将YUV420P
图像(从H.264
流接收)转换为RGB
,同时使用sws_scale
.
原始图像的大小为480 × 800
。只需转换相同的尺寸就可以了。
但是当我尝试改变尺寸时,我得到一个扭曲的图像,具有以下模式:
- 更改为
481 × 800
会产生扭曲的黑白图像,看起来像是在中间被剪掉了 482 × 800
会更加扭曲483 × 800
变形但有颜色484 × 800
没问题(正确缩放)。
现在遵循这种模式 - 只有当两者之间的差异除以 4 时,缩放才能正常工作。
这是我解码和转换图像的方式的示例代码。所有方法都显示“成功”。
int srcX = 480;
int srcY = 800;
int dstX = 481; // or 482, 483 etc
int dstY = 800;
AVFrame* avFrameYUV = avcodec_alloc_frame();
avpicture_fill((AVPicture *)avFrameYUV, decoded_yuv_frame, PIX_FMT_YUV420P, srcX , srcY);
AVFrame *avFrameRGB = avcodec_alloc_frame();
AVPacket avPacket;
av_init_packet(&avPacket);
avPacket.size = read; // size of raw data
avPacket.data = raw_data; // raw data before decoding to YUV
int frame_decoded = 0;
int decoded_length = avcodec_decode_video2(g_avCodecContext, avFrameYUV, &frame_decoded, &avPacket);
int size = dstX * dstY * 3;
struct SwsContext *img_convert_ctx = sws_getContext(srcX, srcY, SOURCE_FORMAT, dstX, dstY, PIX_FMT_BGR24, SWS_BICUBIC, NULL, NULL, NULL);
avpicture_fill((AVPicture *)avFrameRGB, rgb_frame, PIX_FMT_RGB24, dstX, dstY);
sws_scale(img_convert_ctx, avFrameYUV->data, avFrameYUV->linesize, 0, srcY, avFrameRGB->data, avFrameRGB->linesize);
// draws the resulting frame with windows BitBlt
DrawBitmap(hdc, dstX, dstY, rgb_frame, size);
sws_freeContext(img_convert_ctx);