diff options
| author | dec05eba <dec05eba@protonmail.com> | 2026-06-30 15:42:28 +0200 |
|---|---|---|
| committer | dec05eba <dec05eba@protonmail.com> | 2026-06-30 15:42:28 +0200 |
| commit | e4f5bd92a03ec7386f12d204ce9247b2447485a5 (patch) | |
| tree | adca897304a869df5f3ab9362e7d7a48459d2565 /src/encoder/video/vaapi.c | |
| parent | dcbef3eb5ac877a4ad405d1a703ac5519e130cc3 (diff) | |
Vulkan resolution alignment
Diffstat (limited to 'src/encoder/video/vaapi.c')
| -rw-r--r-- | src/encoder/video/vaapi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/encoder/video/vaapi.c b/src/encoder/video/vaapi.c index 81c03c8..449fb1d 100644 --- a/src/encoder/video/vaapi.c +++ b/src/encoder/video/vaapi.c @@ -264,7 +264,7 @@ static bool gsr_video_encoder_vaapi_start(gsr_video_encoder *encoder, AVCodecCon } if(FFALIGN(video_codec_context->width, 2) != FFALIGN(frame->width, 2) || FFALIGN(video_codec_context->height, 2) != FFALIGN(frame->height, 2)) { - fprintf(stderr, "gsr warning: gsr_video_encoder_vaapi_start: black bars have been added to the video because of a bug in AMD drivers/hardware. Record with h264 codec instead (-k h264) to get around this issue\n"); + fprintf(stderr, "gsr warning: gsr_video_encoder_vaapi_start: black bars have been added to the video because of a bug in AMD drivers/hardware. Record with h264/hevc codec instead (-k h264) to get around this issue\n"); } if(video_codec_context->width < 128) |
