ladybird/Ports/ffmpeg/patches
2022-03-02 11:40:37 +01:00
..
errno-is-not-valid-during-cpp.patch Ports: Upgrade to FFmpeg 5.0 release; enable SDL and networking 2022-03-02 11:40:37 +01:00
ReadMe.md Ports: Upgrade to FFmpeg 5.0 release; enable SDL and networking 2022-03-02 11:40:37 +01:00

Patches for FFmpeg on SerenityOS

errno-is-not-valid-during-cpp.patch

FFmpeg performs a preprocessor-time test on errno values. This test does not work on SerenityOS because our errno values are described by an enum, and therefore are only available at compile time.

The patch removes the preprocessor-time test.