diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-03-07 22:53:04 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-03-08 11:35:30 +0100 |
commit | 3d9a7065280e64797c5a68c794a04d60fb3f767c (patch) | |
tree | 75ad01478ec31296bf24dfd56dd1881347a54f1e /src/capture/nvfbc.c | |
parent | 0d89378021b9e8913b521164d1bc436d9bc2630f (diff) |
Set frame size to video codec context size, nicer rgb to nv12
Diffstat (limited to 'src/capture/nvfbc.c')
-rw-r--r-- | src/capture/nvfbc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/capture/nvfbc.c b/src/capture/nvfbc.c index 0b7ce60..13ca160 100644 --- a/src/capture/nvfbc.c +++ b/src/capture/nvfbc.c @@ -349,6 +349,9 @@ static int gsr_capture_nvfbc_start(gsr_capture *cap, AVCodecContext *video_codec video_codec_context->height = tracking_height & ~1; } + frame->width = video_codec_context->width; + frame->height = video_codec_context->height; + if(!ffmpeg_create_cuda_contexts(cap_nvfbc, video_codec_context)) goto error_cleanup; |