diff options
| author | Dominyk Tiller | 2014-11-18 06:52:37 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-11-18 08:43:01 +0000 |
| commit | 2f2137f18e1a2ad92b3bebe5d05f38e1e93c8549 (patch) | |
| tree | d1a4ecf7d3a369b8c08e74772eb3dc6581e384d2 /Library | |
| parent | cc4d66f9847ce7050967130d80590bfa01b99bae (diff) | |
| download | homebrew-2f2137f18e1a2ad92b3bebe5d05f38e1e93c8549.tar.bz2 | |
ffmpeg: adds libsoxr option
Closes #34135.
Closes #34278.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/ffmpeg.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Formula/ffmpeg.rb b/Library/Formula/ffmpeg.rb index 74764c01e..6d93f192d 100644 --- a/Library/Formula/ffmpeg.rb +++ b/Library/Formula/ffmpeg.rb @@ -30,6 +30,7 @@ class Ffmpeg < Formula option "with-fdk-aac", "Enable the Fraunhofer FDK AAC library" option "with-libvidstab", "Enable vid.stab support for video stabilization" option "with-x265", "Enable x265 encoder" + option "with-libsoxr", "Enable the soxr resample library" depends_on "pkg-config" => :build @@ -59,6 +60,7 @@ class Ffmpeg < Formula depends_on "frei0r" => :optional depends_on "libcaca" => :optional depends_on "libbluray" => :optional + depends_on "libsoxr" => :optional depends_on "libquvi" => :optional depends_on "libvidstab" => :optional depends_on "x265" => :optional @@ -99,6 +101,7 @@ class Ffmpeg < Formula args << "--enable-libopus" if build.with? "opus" args << "--enable-frei0r" if build.with? "frei0r" args << "--enable-libcaca" if build.with? "libcaca" + args << "--enable-libsoxr" if build.with? "libsoxr" args << "--enable-libquvi" if build.with? "libquvi" args << "--enable-libvidstab" if build.with? "libvidstab" args << "--enable-libx265" if build.with? "x265" |
