From 9828cf1ea1e56cc77a2ee3f67688a0ef926fffa0 Mon Sep 17 00:00:00 2001 From: Nicolas Thill Date: Sun, 26 Apr 2015 18:34:54 +0200 Subject: [PATCH] ffmpeg: add icecast transport Signed-off-by: Nicolas Thill --- multimedia/ffmpeg/Config.in | 4 ++++ multimedia/ffmpeg/Makefile | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/multimedia/ffmpeg/Config.in b/multimedia/ffmpeg/Config.in index c01498778..71c30d1ba 100644 --- a/multimedia/ffmpeg/Config.in +++ b/multimedia/ffmpeg/Config.in @@ -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:" diff --git a/multimedia/ffmpeg/Makefile b/multimedia/ffmpeg/Makefile index 1d5553e4e..9fd40113b 100644 --- a/multimedia/ffmpeg/Makefile +++ b/multimedia/ffmpeg/Makefile @@ -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)