ffmpeg-full: add support for libsrt

This commit is contained in:
Luke Granger-Brown 2020-06-27 23:28:02 +00:00
parent 7f742e405a
commit 47801afc3d

View File

@ -118,6 +118,7 @@
#, shine ? null # Fixed-point MP3 encoder #, shine ? null # Fixed-point MP3 encoder
, soxr ? null # Resampling via soxr , soxr ? null # Resampling via soxr
, speex ? null # Speex de/encoder , speex ? null # Speex de/encoder
, srt ? null # Secure Reliable Transport (SRT) protocol
#, twolame ? null # MP2 encoder #, twolame ? null # MP2 encoder
#, utvideo ? null # Ut Video de/encoder #, utvideo ? null # Ut Video de/encoder
, vid-stab ? null # Video stabilization , vid-stab ? null # Video stabilization
@ -355,6 +356,7 @@ stdenv.mkDerivation rec {
#(enableFeature (libnut != null) "libnut") #(enableFeature (libnut != null) "libnut")
(enableFeature (libopus != null) "libopus") (enableFeature (libopus != null) "libopus")
(enableFeature (librsvg != null) "librsvg") (enableFeature (librsvg != null) "librsvg")
(enableFeature (srt != null) "libsrt")
(enableFeature (libssh != null) "libssh") (enableFeature (libssh != null) "libssh")
(enableFeature (libtheora != null) "libtheora") (enableFeature (libtheora != null) "libtheora")
(enableFeature (if isLinux then libv4l != null else false) "libv4l2") (enableFeature (if isLinux then libv4l != null else false) "libv4l2")
@ -418,7 +420,7 @@ stdenv.mkDerivation rec {
libjack2 ladspaH lame libaom libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa libjack2 ladspaH lame libaom libass libbluray libbs2b libcaca libdc1394 libmodplug libmysofa
libogg libopus librsvg libssh libtheora libvdpau libvorbis libvpx libwebp libX11 libogg libopus librsvg libssh libtheora libvdpau libvorbis libvpx libwebp libX11
libxcb libXv libXext lzma openal openjpeg libpulseaudio rtmpdump opencore-amr libxcb libXv libXext lzma openal openjpeg libpulseaudio rtmpdump opencore-amr
samba SDL2 soxr speex vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore samba SDL2 soxr speex srt vid-stab vo-amrwbenc wavpack x264 x265 xavs xvidcore
zeromq4 zlib zeromq4 zlib
] ++ optionals openglExtlib [ libGL libGLU ] ] ++ optionals openglExtlib [ libGL libGLU ]
++ optionals nonfreeLicensing [ fdk_aac openssl ] ++ optionals nonfreeLicensing [ fdk_aac openssl ]