summaryrefslogtreecommitdiff
path: root/pkg/ffmpeg/gen.lua
AgeCommit message (Collapse)Author
2024-08-15ffmpeg: Update to 7.0.2Michael Forney
2023-03-21ffmpeg: libavcodec needs zlib, tooMichael Forney
2023-03-03ffmpeg: Add optional support for bluray protocolMichael Forney
2023-03-02ffmpeg: Update to 6.0Michael Forney
2023-03-02ffmpeg: Update to 5.1.1Michael 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-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-01-20ffmpeg: Allow building with openssl by changing options.hMichael Forney
2020-08-19ffmpeg: Enable AV1 decoding through dav1dMichael Forney
2020-08-19ffmpeg: Detect library dependencies from options.hMichael Forney
2020-08-19ffmpeg: Enable opus encoding through libopusMichael 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-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
2019-12-10ffmpeg: Build against libtls-bearsslMichael 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-08-06ffmpeg: Update to 4.2Michael Forney
2019-07-10ffmpeg: Generate ffversion.h from ver fileMichael Forney
2019-06-20ffmpeg: Use fixed version to ensure binary reproducibilityMichael Forney
2019-06-17ffmpeg: libavformat/protocols.c depends on avconfig.hMichael Forney
2018-11-13texi2mdoc: Update date patch to one adapted from upstream commitMichael Forney
2018-11-12Call lua as lua5.2 to make sure we get the right versionMichael Forney
2018-11-12ffmpeg: Specify date for generated man pagesMichael Forney
This ensures that they are reproducible.
2018-11-06ffmpeg: Update to 4.1Michael Forney
2018-09-07ffmpeg: Enable zlib supportMichael Forney
2018-05-10ffmpeg: Update to 4.0Michael Forney
2018-02-16Add ability to build ffmpeg and libass into PIEsMichael Forney
2017-12-30Add raw mode for iterlinesMichael Forney
2017-10-15ffmpeg: Update to 3.4Michael Forney
2017-09-25ffmpeg: Add libavcodec/x86 to nasm includesMichael Forney
This is needed for some codecs.
2017-09-25ffmpeg: Use texi2mdoc to build man pagesMichael Forney
2017-09-25Rewrite ninja generation scripts in LuaMichael Forney