From 39bc110a2015f9dba8ee707ecd2c9c2901d8c2ff Mon Sep 17 00:00:00 2001 From: dec05eba Date: Sat, 3 May 2025 14:12:10 +0200 Subject: Fix h264 software encoding not working --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 74b713c..0be3768 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -658,7 +658,7 @@ static void open_video_software(AVCodecContext *codec_context, const args_parser av_dict_set(&options, "preset", "veryfast", 0); av_dict_set(&options, "tune", "film", 0); - dict_set_profile(codec_context, GSR_GPU_VENDOR_INTEL, color_depth, GSR_VIDEO_CODEC_H264, &options); + av_dict_set(&options, "profile", "high", 0); if(codec_context->codec_id == AV_CODEC_ID_H264) { av_dict_set(&options, "coder", "cabac", 0); // TODO: cavlc is faster than cabac but worse compression. Which to use? -- cgit v1.2.3-70-g09d2