diff options
author | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-25 12:03:26 +0100 |
---|---|---|
committer | Mikhail Burakov <mburakov@mailbox.org> | 2023-03-25 12:03:26 +0100 |
commit | 1382cb25811afbcbc7ec0f7a7b9bdd58174bae72 (patch) | |
tree | c39d647110fd8094c36676d5fa003e492e399938 /encode.c | |
parent | 60088b93999c1e93617a7221e571460c2e7d2883 (diff) |
Switch streamer to HEVC
Diffstat (limited to 'encode.c')
-rw-r--r-- | encode.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ struct EncodeContext* EncodeContextCreate(struct GpuContext* gpu_context, return NULL; } - static const char codec_name[] = "h264_vaapi"; + static const char codec_name[] = "hevc_vaapi"; const AVCodec* codec = avcodec_find_encoder_by_name(codec_name); if (!codec) { LOG("Failed to find %s encoder", codec_name); |