Skip to content

Commit

Permalink
devops: fine-tune ffmpeg compilation (#3823)
Browse files Browse the repository at this point in the history
This patch:
- removes `--enable-gpl` and `--enable-version3` flags. This defaults
builds to LGPL2 license
- includes `--disable-autodetect` to ensure determenism
- includes extra version suffix to link from binary files back to these
build scripts
  • Loading branch information
aslushnikov authored Sep 10, 2020
1 parent 4240e1d commit 3124a1b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion browser_patches/ffmpeg/BUILD_NUMBER
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1000
1001
4 changes: 2 additions & 2 deletions browser_patches/ffmpeg/CONFIG.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ LIBVPX_CONFIG="--enable-static \
--disable-examples"

FFMPEG_VERSION="n4.3.1"
FFMPEG_CONFIG="--enable-gpl \
--enable-version3 \
FFMPEG_CONFIG="--extra-version=playwright-build-$(cat ./BUILD_NUMBER | head -1) \
--disable-debug \
--disable-autodetect \
--disable-everything \
--enable-ffmpeg \
--enable-protocol=pipe \
Expand Down

0 comments on commit 3124a1b

Please sign in to comment.