17 Commits

Author SHA1 Message Date
Michael Forney
8110e1b440 ffmpeg: Fix build with gcc 15.1.0 2025-04-28 12:37:25 -07:00
Michael Forney
e052c31cb8 ffmpeg: Update to 7.0.2 2024-08-15 01:09:25 -07:00
Michael Forney
197efbce15 ffmpeg: Update to 6.0 2023-03-02 22:31:21 -08:00
Michael Forney
743341f406 ffmpeg: Update to 5.1.1 2023-03-02 17:35:38 -08:00
Michael Forney
3a62a56b12 ffmpeg: Update to 4.4.1 2021-11-17 13:42:34 -08:00
Michael Forney
f8b20538cc ffmpeg: Use C11 _Alignas if available 2021-10-25 17:10:44 -07:00
Michael Forney
9b4962ff1c ffmpeg: Various portability fixes 2021-09-07 13:41:35 -07:00
Michael Forney
3f6403a24b ffmpeg: Update to 4.3 2020-06-16 02:49:42 -07:00
Michael Forney
f1fb809ce8 ffmpeg: Remove libressl patch
We now build against libtls-bearssl.
2020-01-03 13:00:57 -08:00
Michael Forney
979ec8e98b ffmpeg: Remove version.sh patch
For build reproducibility, we don't use version.sh anymore, and
instead create it ourselves.
2020-01-03 12:59:36 -08:00
Michael Forney
02bc12059f ffmpeg: Fix an issue with libavformat/tls_libtls 2019-12-09 17:29:36 -08:00
Michael Forney
1d73018af2 ffmpeg: Update to 4.1 2018-11-06 00:00:25 -08:00
Michael Forney
f8f4562b49 ffmpeg: Update to 4.0 2018-05-10 12:30:59 -07:00
Michael Forney
040ad481b7 ffmpeg: Enable use of libressl-2.7.0 APIs 2018-03-23 21:28:06 -07:00
Michael Forney
79e60e5e95 ffmpeg: Update to 3.4 2017-10-15 21:03:10 -07:00
Michael Forney
9231c3c26e ffmpeg: Update to 3.3.1 2017-06-05 21:45:55 -07:00
Michael Forney
293f5a93b7 Move to flat package hierarchy
Note to self: never try to move submodules again

To migrate your existing submodules (more or less):

	set -x
	set -e

	mkdir .git/modules/pkg
	for old in */*/src ; do
	        new="pkg/${old#*/}"
	        if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then
			continue
		fi
		git -C ".git/modules/$old" config core.worktree "../../../../../$new"
		rmdir "$new"
		mv "$old" "$new"
	        sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp"
	        mv "$new/.git.tmp" "$new/.git"
		mkdir ".git/modules/${new%/src}"
	        mv ".git/modules/$old" ".git/modules/$new"

		rm "${old%/src}"/*.ninja
		mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/"
		rmdir "${old%/src}" || true
	done
	sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp
	mv .git/config.tmp .git/config
2016-12-13 23:10:30 -08:00