From 32ecb9207ed3f250124a2dcf3c1d2d78021bc4de Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Thu, 16 Feb 2023 09:40:07 -0700 Subject: [PATCH] Remove cuvid from hwaccel --- frigate/ffmpeg_presets.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/frigate/ffmpeg_presets.py b/frigate/ffmpeg_presets.py index cae1bd451..db9a1c688 100644 --- a/frigate/ffmpeg_presets.py +++ b/frigate/ffmpeg_presets.py @@ -92,30 +92,18 @@ PRESETS_HW_ACCEL_DECODE = { "cuda", "-hwaccel_output_format", "cuda", - "-extra_hw_frames", - "2", - "-c:v", - "h264_cuvid", ], "preset-nvidia-h265": [ "-hwaccel", "cuda", "-hwaccel_output_format", "cuda", - "-extra_hw_frames", - "2", - "-c:v", - "hevc_cuvid", ], "preset-nvidia-mjpeg": [ "-hwaccel", "cuda", "-hwaccel_output_format", "cuda", - "-extra_hw_frames", - "2", - "-c:v", - "mjpeg_cuvid", ], }