summaryrefslogtreecommitdiff
path: root/pkg/ffmpeg
AgeCommit message (Collapse)Author
2025-04-28ffmpeg: Fix build with gcc 15.1.0Michael Forney
2024-08-15ffmpeg: Update to 7.0.2Michael Forney
2023-03-21ffmpeg: Enable srt demuxerMichael Forney
2023-03-21ffmpeg: libavcodec needs zlib, tooMichael Forney
2023-03-04ffmpeg: Enable png encoderMichael Forney
2023-03-03ffmpeg: Enable fd protocolMichael Forney
2023-03-03ffmpeg: Enable ffmetadata demuxerMichael Forney
2023-03-03ffmpeg: Add optional support for bluray protocolMichael Forney
2023-03-03ffmpeg: Enable extract_extradata and pgs_frame_merge bitstream filtersMichael Forney
These are needed for bluray remuxing.
2023-03-02ffmpeg: Enable VC1 and DCA parsersMichael Forney
2023-03-02ffmpeg: Enable support for PGS subtitlesMichael Forney
2023-03-02ffmpeg: Update to 6.0Michael Forney
2023-03-02ffmpeg: Update to 5.1.1Michael Forney
2021-11-17ffmpeg: Update to 4.4.1Michael Forney
2021-10-25ffmpeg: Use C11 _Alignas if availableMichael Forney
2021-09-07ffmpeg: Include dummy stdatomic.h with __STDC_NO_ATOMICS__Michael Forney
2021-09-07ffmpeg: Probe for inline asm and intrinsicsMichael Forney
2021-09-07ffmpeg: Various portability fixesMichael Forney
2021-07-25ffmpeg: Probe for PICMichael Forney
For nasm, we cannot just use __PIC__ from the preprocessor, so add a probe test for it.
2021-04-17ffmpeg: Update to 4.4Michael Forney
2021-03-02ffmpeg: Update to 4.3.2Michael Forney
2021-01-20ffmpeg: Allow building with openssl by changing options.hMichael Forney
2020-08-19ffmpeg: Enable AV1 decoding through dav1dMichael Forney
2020-08-19ffmpeg: Enable wav muxer and pcm encoderMichael Forney
2020-08-19ffmpeg: Detect library dependencies from options.hMichael Forney
2020-08-19ffmpeg: Enable opus encoding through libopusMichael Forney
2020-08-19ffmpeg: Enable y4m muxer/demuxerMichael Forney
2020-08-16ffmpeg: Add V4L2 supportMichael Forney
2020-07-11ffmpeg: Update to 4.3.1Michael Forney
2020-07-07ffmpeg: Enable CONFIG_VP9_SUPERFRAME_SPLIT_BSFMichael Forney
2020-06-30ffmpeg: Enable mp3 demuxerMichael Forney
2020-06-16ffmpeg: Add missing version bumpMichael Forney
2020-06-16ffmpeg: Update to 4.3Michael Forney
2020-06-05Use -isystem to include library headersMichael Forney
This way, warnings from headers that come from another package (in particular linux-headers) won't show up when they get included. To make sure we still track dependencies, use -MD instead of -MMD.
2020-05-21ffmpeg: Update to 4.2.3Michael Forney
2020-05-19ffmpeg: Use locally-built texi2mdoc to generate man pagesMichael Forney
2020-05-10Lua 5.1 compatibilityMichael Forney
2020-01-29Add support for building multiple configurationsMichael Forney
Now, you can build in separate directories per configuration: mkdir foo (cd foo && ../setup.lua) samu -C foo
2020-01-29ffmpeg: Enable rotate filterMichael Forney
2020-01-03ffmpeg: Update to 4.2.2Michael Forney
2020-01-03ffmpeg: Remove libressl patchMichael Forney
We now build against libtls-bearssl.
2020-01-03ffmpeg: Remove version.sh patchMichael Forney
For build reproducibility, we don't use version.sh anymore, and instead create it ourselves.
2019-12-10ffmpeg: Build against libtls-bearsslMichael Forney
2019-12-09ffmpeg: Fix an issue with libavformat/tls_libtlsMichael Forney
2019-11-17Update ninja requirement to 1.8.0 and don't bother with atomic outputsMichael Forney
Since ninja 1.8.0[0] and samurai 0.2[1], output mtime is always recorded after a job succeeds, and outputs are considered dirty if the recorded mtime is older than any input. This means that even if a command partially writes its output then fails (for example, if run with stdout redirected to a file), it will still get re-run during the next build. This means that outputs no longer have to be written atomically (i.e. renamed into place) in order to ensure a correct build, and we can drop the idiom `command >$out.tmp && mv $out.tmp $out`. [0] https://github.com/ninja-build/ninja/commit/04d886b11041bb59d01df794cce7a1e8cad2250d [1] https://github.com/michaelforney/samurai/commit/799bc5a4719b90a1026c129b55b92c0bccf97eeb
2019-09-20ffmpeg: Update to 4.2.1Michael Forney
2019-08-06ffmpeg: Update to 4.2Michael Forney
2019-07-10ffmpeg: Generate ffversion.h from ver fileMichael Forney
2019-07-09ffmpeg: Update to 4.1.4Michael Forney
2019-06-20ffmpeg: Use fixed version to ensure binary reproducibilityMichael Forney