我需要在Qt小部件上显示ffmpeg帧。我知道QtFFmpegWrapper,但它似乎过时了。我尝试使用memcpy()
将数据从RGB ffmpeg帧复制到QImage,并在其中得到未处理的异常。
QImage lastFrame;
lastFrame = QImage( screen_w, screen_h, QImage::Format_RGB888 );
for( int y = 0; y < screen_h; ++y )
memcpy( lastFrame.scanLine(y),
frameRGB -> data[0] + y * frameRGB -> linesize[0],
screen_w * 3 );
我在ffmpeg处理的所有部分尝试了sws_getContext()
和sws_getCachedContext()
,AV_PIX_FMT_BGR24
和AV_PIX_FMT_RGB24
。所有ffmpeg代码均来自热门教程,适用于SDL
和PIX_FMT_YUV420P
。
有什么想法吗? 也许这不是在Qt小部件上显示ffmpeg帧的最佳/最简单的方法吗?
编辑。
好的,我使用MuratŞeker的解决方案QImage::copy()
,但现在QImage::isNull()
返回true
。
我的一些代码:
out_buffer = (uint8_t*)av_malloc( avpicture_get_size( AV_PIX_FMT_RGB32,
codecCtx -> width, codecCtx -> height ));
avpicture_fill((AVPicture *)frameRGB, out_buffer, AV_PIX_FMT_RGB32,
codecCtx -> width, codecCtx -> height);
img_convert_ctx = sws_getContext( codecCtx -> width, codecCtx -> height,
codecCtx -> pix_fmt, codecCtx -> width,
codecCtx -> height, AV_PIX_FMT_RGB32,
SWS_BICUBIC, NULL, NULL, NULL );
/* ... */
if( got_picture ){
sws_scale( img_convert_ctx, (const uint8_t* const*)frame -> data,
frame -> linesize, 0, codecCtx -> height, frameRGB -> data,
frameRGB -> linesize );
QImage imgFrame = QImage( frameRGB -> data[0], frameRGB -> width,
frameRGB -> height, frameRGB -> linesize[0],
QImage::Format_RGB32 ).copy();
if( imgFrame.isNull()){} // true
// But I can write this frame to hard disk using BITMAPFILEHEADER
SaveBMP( frameRGB, codecCtx -> width, codecCtx -> height ); // it works
}
答案 0 :(得分:1)
以下适用于我:
QImage frame = QImage(avFrame->data[0], avFrame->width, avFrame->height,
avFrame->linesize[0], QImage::Format_RGB32)
.copy();