ffmpeg: add icecast transport
authorNicolas Thill <[email protected]>
Sun, 26 Apr 2015 16:34:54 +0000 (18:34 +0200)
committerNicolas Thill <[email protected]>
Sun, 26 Apr 2015 16:58:08 +0000 (18:58 +0200)
Signed-off-by: Nicolas Thill <[email protected]>
multimedia/ffmpeg/Config.in
multimedia/ffmpeg/Makefile

index c014987781555297ae27fddbcfdc31cc13508e4c..71c30d1ba0d2b3ab8e18734b6bf263f21b45aed5 100644 (file)
@@ -406,6 +406,10 @@ config FFMPEG_CUSTOM_PROTOCOL_file
 config FFMPEG_CUSTOM_PROTOCOL_http
        bool "http:"
 
+config FFMPEG_CUSTOM_PROTOCOL_icecast
+       bool "icecast:"
+       select FFMPEG_CUSTOM_PROTOCOL_http
+
 config FFMPEG_CUSTOM_PROTOCOL_pipe
        bool "pipe:"
 
index 1d5553e4eafb9ea118edcfd7d139698cbc442ab0..9fd40113b6d0b48b991f56922d39b7359f1cb41e 100644 (file)
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
 
 PKG_NAME:=ffmpeg
 PKG_VERSION:=2.5.5
-PKG_RELEASE:=1
+PKG_RELEASE:=2
 
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
 PKG_SOURCE_URL:=http://ffmpeg.org/releases/
@@ -108,7 +108,7 @@ FFMPEG_CUSTOM_PARSERS:= \
        mpegvideo \
 
 FFMPEG_CUSTOM_PROTOCOLS:= \
-       file http pipe rtp tcp udp
+       file http icecast pipe rtp tcp udp
 
 FFMPEG_MINI_DECODERS:= \
        aac \
@@ -202,7 +202,7 @@ FFMPEG_AUDIO_PARSERS:= \
        mpegaudio \
 
 FFMPEG_AUDIO_PROTOCOLS:= \
-       file http rtp tcp udp
+       file http icecast rtp tcp udp
 
 
 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-$(PKG_VERSION)