gnu: ffmpeg: Add more optional inputs.

* gnu/packages/video.scm (ffmpeg): Add inputs ladspa, openal, pulseaudio.
This commit is contained in:
Taylan Ulrich Bayırlı/Kammer 2015-03-05 19:54:25 +01:00
parent cc6c017066
commit 7124119203
1 changed files with 6 additions and 3 deletions

View File

@ -175,6 +175,7 @@ SMPTE 314M.")
`(("fontconfig" ,fontconfig) `(("fontconfig" ,fontconfig)
("freetype" ,freetype) ("freetype" ,freetype)
("opus" ,opus) ("opus" ,opus)
("ladspa" ,ladspa)
("lame" ,lame) ("lame" ,lame)
("libbluray" ,libbluray) ("libbluray" ,libbluray)
("libcaca" ,libcaca) ("libcaca" ,libcaca)
@ -183,7 +184,9 @@ SMPTE 314M.")
("libtheora" ,libtheora) ("libtheora" ,libtheora)
("libvorbis" ,libvorbis) ("libvorbis" ,libvorbis)
("libvpx" ,libvpx) ("libvpx" ,libvpx)
("openal" ,openal)
("patchelf" ,patchelf) ("patchelf" ,patchelf)
("pulseaudio" ,pulseaudio)
("soxr" ,soxr) ("soxr" ,soxr)
("speex" ,speex) ("speex" ,speex)
("twolame" ,twolame) ("twolame" ,twolame)
@ -220,7 +223,6 @@ SMPTE 314M.")
;; possible additional inputs: ;; possible additional inputs:
;; --enable-avisynth enable reading of AviSynth script files [no] ;; --enable-avisynth enable reading of AviSynth script files [no]
;; --enable-frei0r enable frei0r video filtering ;; --enable-frei0r enable frei0r video filtering
;; --enable-ladspa enable LADSPA audio filtering
;; --enable-libaacplus enable AAC+ encoding via libaacplus [no] ;; --enable-libaacplus enable AAC+ encoding via libaacplus [no]
;; --enable-libass enable libass subtitles rendering [no] ;; --enable-libass enable libass subtitles rendering [no]
;; --enable-libcelt enable CELT decoding via libcelt [no] ;; --enable-libcelt enable CELT decoding via libcelt [no]
@ -240,7 +242,6 @@ SMPTE 314M.")
;; --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no] ;; --enable-libopencore-amrwb enable AMR-WB decoding via libopencore-amrwb [no]
;; --enable-libopencv enable video filtering via libopencv [no] ;; --enable-libopencv enable video filtering via libopencv [no]
;; --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no] ;; --enable-libopenjpeg enable JPEG 2000 de/encoding via OpenJPEG [no]
;; --enable-libpulse enable Pulseaudio input via libpulse [no]
;; --enable-librtmp enable RTMP[E] support via librtmp [no] ;; --enable-librtmp enable RTMP[E] support via librtmp [no]
;; --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no] ;; --enable-libschroedinger enable Dirac de/encoding via libschroedinger [no]
;; --enable-libshine enable fixed-point MP3 encoding via libshine [no] ;; --enable-libshine enable fixed-point MP3 encoding via libshine [no]
@ -257,7 +258,6 @@ SMPTE 314M.")
;; --enable-libxavs enable AVS encoding via xavs [no] ;; --enable-libxavs enable AVS encoding via xavs [no]
;; --enable-libzmq enable message passing via libzmq [no] ;; --enable-libzmq enable message passing via libzmq [no]
;; --enable-libzvbi enable teletext support via libzvbi [no] ;; --enable-libzvbi enable teletext support via libzvbi [no]
;; --enable-openal enable OpenAL 1.1 capture support [no]
;; --enable-opencl enable OpenCL code ;; --enable-opencl enable OpenCL code
;; --enable-x11grab enable X11 grabbing [no] ;; --enable-x11grab enable X11 grabbing [no]
(zero? (system* (zero? (system*
@ -267,12 +267,14 @@ SMPTE 314M.")
"--enable-shared" "--enable-shared"
"--enable-fontconfig" "--enable-fontconfig"
;; "--enable-gnutls" ; causes test failures ;; "--enable-gnutls" ; causes test failures
"--enable-ladspa"
"--enable-libbluray" "--enable-libbluray"
"--enable-libcaca" "--enable-libcaca"
"--enable-libcdio" "--enable-libcdio"
"--enable-libfreetype" "--enable-libfreetype"
"--enable-libmp3lame" "--enable-libmp3lame"
"--enable-libopus" "--enable-libopus"
"--enable-libpulse"
"--enable-libquvi" "--enable-libquvi"
"--enable-libsoxr" "--enable-libsoxr"
"--enable-libspeex" "--enable-libspeex"
@ -281,6 +283,7 @@ SMPTE 314M.")
"--enable-libvorbis" "--enable-libvorbis"
"--enable-libvpx" "--enable-libvpx"
"--enable-libxvid" "--enable-libxvid"
"--enable-openal"
"--enable-runtime-cpudetect" "--enable-runtime-cpudetect"