diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-06-10 17:51:09 +0200 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-06-10 17:51:09 +0200 |
commit | adbd5d976615d6f4edb162899dc28c0cec9e292b (patch) | |
tree | c12c38b61e7cf1a2e31117cbb06ab13c633ded60 /src/capture/xcomposite.c | |
parent | 55266f2a689a17fc34e7f441a4b8f1f8f917a366 (diff) |
Take amd hevc video alignment padding into consideration to move video content to center of video with black bars on all sides instead of only right/bottom
Diffstat (limited to 'src/capture/xcomposite.c')
-rw-r--r-- | src/capture/xcomposite.c | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/src/capture/xcomposite.c b/src/capture/xcomposite.c index bb2b0e3..b8f8962 100644 --- a/src/capture/xcomposite.c +++ b/src/capture/xcomposite.c @@ -98,25 +98,22 @@ int gsr_capture_xcomposite_start(gsr_capture_xcomposite *self, AVCodecContext *v self->params.egl->glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_HEIGHT, &self->texture_size.y); self->params.egl->glBindTexture(GL_TEXTURE_2D, 0); + vec2i video_size = self->texture_size; + + if(self->params.region_size.x > 0 && self->params.region_size.y > 0) + video_size = self->params.region_size; + if(self->params.egl->gpu_info.vendor == GSR_GPU_VENDOR_AMD && video_codec_context->codec_id == AV_CODEC_ID_HEVC) { // TODO: dont do this if using ffmpeg reports that this is not needed (AMD driver bug that was fixed recently) - video_codec_context->width = FFALIGN(self->texture_size.x, 64); - video_codec_context->height = FFALIGN(self->texture_size.y, 16); + video_codec_context->width = FFALIGN(video_size.x, 64); + video_codec_context->height = FFALIGN(video_size.y, 16); } else { - video_codec_context->width = FFALIGN(self->texture_size.x, 2); - video_codec_context->height = FFALIGN(self->texture_size.y, 2); + video_codec_context->width = FFALIGN(video_size.x, 2); + video_codec_context->height = FFALIGN(video_size.y, 2); } - if(self->params.region_size.x > 0 && self->params.region_size.y > 0) { - if(self->params.egl->gpu_info.vendor == GSR_GPU_VENDOR_AMD && video_codec_context->codec_id == AV_CODEC_ID_HEVC) { - // TODO: dont do this if using ffmpeg reports that this is not needed (AMD driver bug that was fixed recently) - video_codec_context->width = FFALIGN(self->params.region_size.x, 64); - video_codec_context->height = FFALIGN(self->params.region_size.y, 16); - } else { - video_codec_context->width = FFALIGN(self->params.region_size.x, 2); - video_codec_context->height = FFALIGN(self->params.region_size.y, 2); - } - } + self->base.video_alignment_padding.x = self->base.video_codec_context->width - video_size.x; + self->base.video_alignment_padding.y = self->base.video_codec_context->height - video_size.y; frame->width = video_codec_context->width; frame->height = video_codec_context->height; |