diff options
author | Pierre Ossman <ossman@cendio.se> | 2024-08-19 11:16:59 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2024-08-19 11:16:59 +0200 |
commit | e6fb0574d994c1f77abec08bcd47b6b46a93f4a9 (patch) | |
tree | 853d88ee35e8cab6bbdc70db29b4fc81f6eaf101 /common | |
parent | 445e0230cf4e939dcc59caf5d5f001c2f7b04da6 (diff) | |
parent | 35966469bc3410ba1573126300a19bf47d370910 (diff) | |
download | tigervnc-e6fb0574d994c1f77abec08bcd47b6b46a93f4a9.tar.gz tigervnc-e6fb0574d994c1f77abec08bcd47b6b46a93f4a9.zip |
Merge branch 'h264-buffer-size-fix' of https://github.com/any1/tigervnc
Diffstat (limited to 'common')
-rw-r--r-- | common/rfb/H264LibavDecoderContext.cxx | 28 | ||||
-rw-r--r-- | common/rfb/H264LibavDecoderContext.h | 2 |
2 files changed, 19 insertions, 11 deletions
diff --git a/common/rfb/H264LibavDecoderContext.cxx b/common/rfb/H264LibavDecoderContext.cxx index 5bd1dbbf..38210205 100644 --- a/common/rfb/H264LibavDecoderContext.cxx +++ b/common/rfb/H264LibavDecoderContext.cxx @@ -43,7 +43,6 @@ bool H264LibavDecoderContext::initCodec() { os::AutoMutex lock(&mutex); sws = nullptr; - swsBuffer = nullptr; h264WorkBuffer = nullptr; h264WorkBufferLength = 0; @@ -87,9 +86,6 @@ bool H264LibavDecoderContext::initCodec() { return false; } - int numBytes = av_image_get_buffer_size(AV_PIX_FMT_RGB32, rect.width(), rect.height(), 1); - swsBuffer = new uint8_t[numBytes]; - initialized = true; return true; } @@ -101,8 +97,9 @@ void H264LibavDecoderContext::freeCodec() { return; av_parser_close(parser); avcodec_free_context(&avctx); + av_frame_free(&rgbFrame); av_frame_free(&frame); - delete[] swsBuffer; + sws_freeContext(sws); free(h264WorkBuffer); initialized = false; } @@ -220,11 +217,22 @@ void H264LibavDecoderContext::decode(const uint8_t* h264_in_buffer, frame->width, frame->height, AV_PIX_FMT_RGB32, 0, nullptr, nullptr, nullptr); - int stride; - pb->getBuffer(rect, &stride); - int dst_linesize = stride * pb->getPF().bpp/8; // stride is in pixels, linesize is in bytes (stride x4). We need bytes + if (rgbFrame && (rgbFrame->width != frame->width || rgbFrame->height != frame->height)) { + av_frame_free(&rgbFrame); + + } + + if (!rgbFrame) { + rgbFrame = av_frame_alloc(); + // TODO: Can we really assume that the pixel format will always be RGB32? + rgbFrame->format = AV_PIX_FMT_RGB32; + rgbFrame->width = frame->width; + rgbFrame->height = frame->height; + av_frame_get_buffer(rgbFrame, 0); + } - sws_scale(sws, frame->data, frame->linesize, 0, frame->height, &swsBuffer, &dst_linesize); + sws_scale(sws, frame->data, frame->linesize, 0, frame->height, rgbFrame->data, + rgbFrame->linesize); - pb->imageRect(rect, swsBuffer, stride); + pb->imageRect(rect, rgbFrame->data[0], rgbFrame->linesize[0] / 4); } diff --git a/common/rfb/H264LibavDecoderContext.h b/common/rfb/H264LibavDecoderContext.h index f399b3cc..96558bee 100644 --- a/common/rfb/H264LibavDecoderContext.h +++ b/common/rfb/H264LibavDecoderContext.h @@ -47,8 +47,8 @@ namespace rfb { AVCodecContext *avctx; AVCodecParserContext *parser; AVFrame* frame; + AVFrame* rgbFrame = nullptr; SwsContext* sws; - uint8_t* swsBuffer; uint8_t* h264WorkBuffer; uint32_t h264WorkBufferLength; }; |