Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option
@ 2016-05-03 19:44 Gustavo Zacarias
  2016-05-03 19:44 ` [Buildroot] [PATCH 2/3] gst1-plugins-bad: remove rtp " Gustavo Zacarias
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Gustavo Zacarias @ 2016-05-03 19:44 UTC (permalink / raw)
  To: buildroot

The plugin was moved from -bad to -ugly so remove the option.
Support in -ugly was added via 30cde9a3.
Add legacy entry to notify users of this, however we can't automatically
select the ugly variant since ugly might be disabled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 Config.in.legacy                                        | 7 +++++++
 package/gstreamer1/gst1-plugins-bad/Config.in           | 7 -------
 package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk | 7 -------
 3 files changed, 7 insertions(+), 14 deletions(-)

diff --git a/Config.in.legacy b/Config.in.legacy
index 9f694f8..9901cf6 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -145,6 +145,13 @@ endif
 ###############################################################################
 comment "Legacy options removed in 2016.05"
 
+config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
+	bool "gst1-plugins-bad mpg123 plugin moved to ugly"
+	select BR2_LEGACY
+	help
+	  The mpg123 plugin has been moved from gst1-plugins-bad to
+	  gst1-plugins-ugly.
+
 config BR2_TOOLCHAIN_EXTERNAL_CODESOURCERY_POWERPC
 	bool "PowerPC Sourcery toolchain has been removed"
 	select BR2_LEGACY
diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
index a9667af..16bb36d 100644
--- a/package/gstreamer1/gst1-plugins-bad/Config.in
+++ b/package/gstreamer1/gst1-plugins-bad/Config.in
@@ -553,13 +553,6 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPEG2ENC
 	help
 	  High-quality MPEG-1/2 video encoder
 
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
-	bool "mpg123"
-	select BR2_PACKAGE_MPG123
-	depends on BR2_USE_MMU # mpg123
-	help
-	  mp3 decoding based on the mpg123 library
-
 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MUSEPACK
 	bool "musepack"
 	select BR2_PACKAGE_MUSEPACK
diff --git a/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk b/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk
index a92c4a6..80bdee8 100644
--- a/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk
+++ b/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk
@@ -692,13 +692,6 @@ else
 GST1_PLUGINS_BAD_CONF_OPTS += --disable-mpeg2enc
 endif
 
-ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123),y)
-GST1_PLUGINS_BAD_CONF_OPTS += --enable-mpg123
-GST1_PLUGINS_BAD_DEPENDENCIES += mpg123
-else
-GST1_PLUGINS_BAD_CONF_OPTS += --disable-mpg123
-endif
-
 ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MUSEPACK),y)
 GST1_PLUGINS_BAD_CONF_OPTS += --enable-musepack
 GST1_PLUGINS_BAD_DEPENDENCIES += musepack
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/3] gst1-plugins-bad: remove rtp plugin option
  2016-05-03 19:44 [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option Gustavo Zacarias
@ 2016-05-03 19:44 ` Gustavo Zacarias
  2016-05-05  6:29   ` Peter Korsgaard
  2016-05-03 19:44 ` [Buildroot] [PATCH 3/3] gst1-plugins-bad: add rtmp support Gustavo Zacarias
  2016-05-05  6:29 ` [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option Peter Korsgaard
  2 siblings, 1 reply; 7+ messages in thread
From: Gustavo Zacarias @ 2016-05-03 19:44 UTC (permalink / raw)
  To: buildroot

The plugin was moved from -bad to -good so remove the option.
Support in -good was added via 301e8ffb.
Add legacy entry to notify users of this, however we can't automatically
select the good variant since good might be disabled.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 Config.in.legacy                                        | 7 +++++++
 package/gstreamer1/gst1-plugins-bad/Config.in           | 3 ---
 package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk | 6 ------
 3 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/Config.in.legacy b/Config.in.legacy
index 9901cf6..5317dde 100644
--- a/Config.in.legacy
+++ b/Config.in.legacy
@@ -145,6 +145,13 @@ endif
 ###############################################################################
 comment "Legacy options removed in 2016.05"
 
+config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
+	bool "gst1-plugins-bad rtp plugin moved to good"
+	select BR2_LEGACY
+	help
+	  The rtp plugin has been moved from gst1-plugins-base to
+	  gst1-plugins-good.
+
 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_MPG123
 	bool "gst1-plugins-bad mpg123 plugin moved to ugly"
 	select BR2_LEGACY
diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
index 16bb36d..53ce589 100644
--- a/package/gstreamer1/gst1-plugins-bad/Config.in
+++ b/package/gstreamer1/gst1-plugins-bad/Config.in
@@ -382,9 +382,6 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_REMOVESILENCE
 	help
 	  Removes silence from an audio stream
 
-config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP
-	bool "rtp"
-
 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 80bdee8..6d8cac7 100644
--- a/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk
+++ b/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk
@@ -479,12 +479,6 @@ else
 GST1_PLUGINS_BAD_CONF_OPTS += --disable-removesilence
 endif
 
-ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTP),y)
-GST1_PLUGINS_BAD_CONF_OPTS += --enable-rtp
-else
-GST1_PLUGINS_BAD_CONF_OPTS += --disable-rtp
-endif
-
 ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_SDI),y)
 GST1_PLUGINS_BAD_CONF_OPTS += --enable-sdi
 else
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 3/3] gst1-plugins-bad: add rtmp support
  2016-05-03 19:44 [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option Gustavo Zacarias
  2016-05-03 19:44 ` [Buildroot] [PATCH 2/3] gst1-plugins-bad: remove rtp " Gustavo Zacarias
@ 2016-05-03 19:44 ` Gustavo Zacarias
  2016-05-03 19:53   ` André Hentschel
  2016-05-05  6:29 ` [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option Peter Korsgaard
  2 siblings, 1 reply; 7+ messages in thread
From: Gustavo Zacarias @ 2016-05-03 19:44 UTC (permalink / raw)
  To: buildroot

As pointed by sonnex on the mailing list.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/gstreamer1/gst1-plugins-bad/Config.in           | 6 ++++++
 package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk | 7 +++++++
 2 files changed, 13 insertions(+)

diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
index 53ce589..5248c4d 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 plugni
+
 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 6d8cac7..e2446a3 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
-- 
2.7.3

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 3/3] gst1-plugins-bad: add rtmp support
  2016-05-03 19:44 ` [Buildroot] [PATCH 3/3] gst1-plugins-bad: add rtmp support Gustavo Zacarias
@ 2016-05-03 19:53   ` André Hentschel
  2016-05-03 19:56     ` Gustavo Zacarias
  0 siblings, 1 reply; 7+ messages in thread
From: André Hentschel @ 2016-05-03 19:53 UTC (permalink / raw)
  To: buildroot

Am 03.05.2016 um 21:44 schrieb Gustavo Zacarias:
> As pointed by sonnex on the mailing list.
> 
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
>  package/gstreamer1/gst1-plugins-bad/Config.in           | 6 ++++++
>  package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk | 7 +++++++
>  2 files changed, 13 insertions(+)
> 
> diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
> index 53ce589..5248c4d 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 plugni

just caught that typo while looking at the patch...

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 3/3] gst1-plugins-bad: add rtmp support
  2016-05-03 19:53   ` André Hentschel
@ 2016-05-03 19:56     ` Gustavo Zacarias
  0 siblings, 0 replies; 7+ messages in thread
From: Gustavo Zacarias @ 2016-05-03 19:56 UTC (permalink / raw)
  To: buildroot

On 03/05/16 16:53, Andr? Hentschel wrote:

>> +config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_RTMP
>> +	bool "rtmp"
>> +	select BR2_PACKAGE_RTMPDUMP
>> +	help
>> +	  RTMP plugni
>
> just caught that typo while looking at the patch...

Hi.
Thanks, too quick a patch, i'll send v2.
Regards.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option
  2016-05-03 19:44 [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option Gustavo Zacarias
  2016-05-03 19:44 ` [Buildroot] [PATCH 2/3] gst1-plugins-bad: remove rtp " Gustavo Zacarias
  2016-05-03 19:44 ` [Buildroot] [PATCH 3/3] gst1-plugins-bad: add rtmp support Gustavo Zacarias
@ 2016-05-05  6:29 ` Peter Korsgaard
  2 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2016-05-05  6:29 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > The plugin was moved from -bad to -ugly so remove the option.
 > Support in -ugly was added via 30cde9a3.
 > Add legacy entry to notify users of this, however we can't automatically
 > select the ugly variant since ugly might be disabled.

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Buildroot] [PATCH 2/3] gst1-plugins-bad: remove rtp plugin option
  2016-05-03 19:44 ` [Buildroot] [PATCH 2/3] gst1-plugins-bad: remove rtp " Gustavo Zacarias
@ 2016-05-05  6:29   ` Peter Korsgaard
  0 siblings, 0 replies; 7+ messages in thread
From: Peter Korsgaard @ 2016-05-05  6:29 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 > The plugin was moved from -bad to -good so remove the option.
 > Support in -good was added via 301e8ffb.
 > Add legacy entry to notify users of this, however we can't automatically
 > select the good variant since good might be disabled.

 > Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-05-05  6:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-03 19:44 [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option Gustavo Zacarias
2016-05-03 19:44 ` [Buildroot] [PATCH 2/3] gst1-plugins-bad: remove rtp " Gustavo Zacarias
2016-05-05  6:29   ` Peter Korsgaard
2016-05-03 19:44 ` [Buildroot] [PATCH 3/3] gst1-plugins-bad: add rtmp support Gustavo Zacarias
2016-05-03 19:53   ` André Hentschel
2016-05-03 19:56     ` Gustavo Zacarias
2016-05-05  6:29 ` [Buildroot] [PATCH 1/3] gst1-plugins-bad: remove mpg123 plugin option Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox