1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-06-19 19:03:00 +02:00

tools: Split the list of source plugins out of "merge-all-source-plugins"

(cherry picked from commit fd31df4306)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer
2025-08-12 12:43:06 +02:00
parent 263e819aa4
commit 4a3e5ea8d2
2 changed files with 14 additions and 1 deletions
+10 -1
View File
@@ -31,7 +31,16 @@ git diff --cached --exit-code >/dev/null ||\
version="8.0"
merge "https://github.com/michaelni/FFmpeg.git" "libpostproc"
[ $# -ne 1 ] &&\
error "Usage: $0 source-plugins.txt"
while IFS=' ' read -r a b; do
case "$a" in
''|'#'*) continue ;;
esac
merge "$a" "$b"
done < "$1"
[ -n "$version" ] && echo version: $version
[ -n "$succeeded" ] && echo Succeeded merging: $succeeded
+4
View File
@@ -0,0 +1,4 @@
# List of source plugins
# libpostproc, GPL, maintained by Michael Niedermayer
https://github.com/michaelni/FFmpeg.git libpostproc