From: Gustavo Zacarias Date: Tue, 3 May 2016 19:56:51 +0000 (-0300) Subject: gst1-plugins-bad: add rtmp support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b850c32541d7702163509726e0c4e02acb4d8c3;p=buildroot.git gst1-plugins-bad: add rtmp support As pointed by sonnex on the mailing list. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in index 53ce589d3a..facfe58dcc 100644 --- a/package/gstreamer1/gst1-plugins-bad/Config.in +++ b/package/gstreamer1/gst1-plugins-bad/Config.in @@ -382,6 +382,12 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REMOVESILENCE help Removes silence from an audio stream +config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTMP + bool "rtmp" + select BR2_PACKAGE_RTMPDUMP + help + RTMP plugin + config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI bool "sdi" diff --git a/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk b/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk index 6d8cac7c2a..e2446a3c25 100644 --- a/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk +++ b/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk @@ -479,6 +479,13 @@ else GST1_PLUGINS_BAD_CONF_OPTS += --disable-removesilence endif +ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTMP),y) +GST1_PLUGINS_BAD_CONF_OPTS += --enable-rtmp +GST1_PLUGINS_BAD_DEPENDENCIES += rtmpdump +else +GST1_PLUGINS_BAD_CONF_OPTS += --disable-rtmp +endif + ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI),y) GST1_PLUGINS_BAD_CONF_OPTS += --enable-sdi else