Skip to content

Commit

Permalink
ffmpeg-full: disable lcevcdec
Browse files Browse the repository at this point in the history
The dep should be fixed as to not require AVX but, in the mean time, disable it
entirely.

Fixes #368440
  • Loading branch information
Atemu committed Dec 29, 2024
1 parent d70bd19 commit 0ea8c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/libraries/ffmpeg/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
, withKvazaar ? withFullDeps # HEVC encoding
, withLadspa ? withFullDeps # LADSPA audio filtering
, withLc3 ? withFullDeps && lib.versionAtLeast version "7.1" # LC3 de/encoding
, withLcevcdec ? withFullDeps && lib.versionAtLeast version "7.1" # LCEVC decoding
, withLcevcdec ? false && lib.versionAtLeast version "7.1" # LCEVC decoding # FIXME currently makes ffmpeg crash in any operation on non-AVX CPUs
, withLcms2 ? withFullDeps # ICC profile support via lcms2
, withLzma ? withHeadlessDeps # xz-utils
, withMetal ? false # Unfree and requires manual downloading of files
Expand Down

0 comments on commit 0ea8c60

Please sign in to comment.