All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
@ 2019-08-07 21:58 James Hilliard
  2019-08-07 22:24 ` Adrian Perez de Castro
  2019-08-15 22:02 ` Thomas Petazzoni
  0 siblings, 2 replies; 8+ messages in thread
From: James Hilliard @ 2019-08-07 21:58 UTC (permalink / raw)
  To: buildroot

Fixes:
WPEThreadedView.h:24:10: fatal error: gst/gl/gl.h: No such file or directory
 #include <gst/gl/gl.h>
          ^~~~~~~~~~~~~

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/gstreamer1/gst1-plugins-bad/Config.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
index f00f3edb7c..79acd83a63 100644
--- a/package/gstreamer1/gst1-plugins-bad/Config.in
+++ b/package/gstreamer1/gst1-plugins-bad/Config.in
@@ -595,11 +595,11 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WPE
 	bool "wpe"
 	default y
 	depends on BR2_PACKAGE_WPEWEBKIT
-	depends on BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL
+	depends on BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
 
 comment "wpe needs the gst1-plugins-base opengl library and wpewebkit"
 	depends on !BR2_PACKAGE_WPEWEBKIT \
-		|| !BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL
+		|| !BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
 
 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_X265
 	bool "x265"
-- 
2.20.1

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

* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
  2019-08-07 21:58 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency James Hilliard
@ 2019-08-07 22:24 ` Adrian Perez de Castro
  2019-08-15 22:02 ` Thomas Petazzoni
  1 sibling, 0 replies; 8+ messages in thread
From: Adrian Perez de Castro @ 2019-08-07 22:24 UTC (permalink / raw)
  To: buildroot

Hi,

On Wed,  7 Aug 2019 15:58:04 -0600, James Hilliard <james.hilliard1@gmail.com> wrote:
> Fixes:
> WPEThreadedView.h:24:10: fatal error: gst/gl/gl.h: No such file or directory
>  #include <gst/gl/gl.h>
>           ^~~~~~~~~~~~~
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

Reviewed-by: Adrian Perez de Castro <aperez@igalia.com>

Thanks for the patch :)
?Adri?n

> ---
>  package/gstreamer1/gst1-plugins-bad/Config.in | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
> index f00f3edb7c..79acd83a63 100644
> --- a/package/gstreamer1/gst1-plugins-bad/Config.in
> +++ b/package/gstreamer1/gst1-plugins-bad/Config.in
> @@ -595,11 +595,11 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WPE
>  	bool "wpe"
>  	default y
>  	depends on BR2_PACKAGE_WPEWEBKIT
> -	depends on BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL
> +	depends on BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
>  
>  comment "wpe needs the gst1-plugins-base opengl library and wpewebkit"
>  	depends on !BR2_PACKAGE_WPEWEBKIT \
> -		|| !BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL
> +		|| !BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
>  
>  config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_X265
>  	bool "x265"
> -- 
> 2.20.1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20190808/5c631240/attachment.asc>

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

* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
  2019-08-07 21:58 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency James Hilliard
  2019-08-07 22:24 ` Adrian Perez de Castro
@ 2019-08-15 22:02 ` Thomas Petazzoni
  2019-08-15 22:54   ` James Hilliard
  1 sibling, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2019-08-15 22:02 UTC (permalink / raw)
  To: buildroot

James, Adrian, Adam,

On Wed,  7 Aug 2019 15:58:04 -0600
James Hilliard <james.hilliard1@gmail.com> wrote:

> Fixes:
> WPEThreadedView.h:24:10: fatal error: gst/gl/gl.h: No such file or directory
>  #include <gst/gl/gl.h>
>           ^~~~~~~~~~~~~
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
>  package/gstreamer1/gst1-plugins-bad/Config.in | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

I must say I'm a bit confused by the GStreamer OpenGL options, and this
particular patch. See below.

> diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
> index f00f3edb7c..79acd83a63 100644
> --- a/package/gstreamer1/gst1-plugins-bad/Config.in
> +++ b/package/gstreamer1/gst1-plugins-bad/Config.in
> @@ -595,11 +595,11 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WPE
>  	bool "wpe"
>  	default y
>  	depends on BR2_PACKAGE_WPEWEBKIT
> -	depends on BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL
> +	depends on BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL

So with this patch in place, it is no longer possible to select the wpe
plugin if you have OpenGL ES, you really need full OpenGL, making the
WPE plugin unselectable on most embedded platforms, that often only
provide OpenGL ES, and not full OpenGL ? Is that really the case ?

Also, I'm confused by the semantic of
BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL. With this patch +
http://patchwork.ozlabs.org/patch/1143636/, it's essentially going to
be used in only one remaining place:
BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GL. And it is exactly equal to
BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_HAS_WINDOW &&
BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL.

The naming is very confusing, and there are not many comments to
explain what's going on. Can we try to clarify all of this ?

Thanks,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
  2019-08-15 22:02 ` Thomas Petazzoni
@ 2019-08-15 22:54   ` James Hilliard
  2019-08-16 12:31     ` Thomas Petazzoni
  0 siblings, 1 reply; 8+ messages in thread
From: James Hilliard @ 2019-08-15 22:54 UTC (permalink / raw)
  To: buildroot

On Thu, Aug 15, 2019 at 4:02 PM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> James, Adrian, Adam,
>
> On Wed,  7 Aug 2019 15:58:04 -0600
> James Hilliard <james.hilliard1@gmail.com> wrote:
>
> > Fixes:
> > WPEThreadedView.h:24:10: fatal error: gst/gl/gl.h: No such file or directory
> >  #include <gst/gl/gl.h>
> >           ^~~~~~~~~~~~~
> >
> > Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> > ---
> >  package/gstreamer1/gst1-plugins-bad/Config.in | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
>
> I must say I'm a bit confused by the GStreamer OpenGL options, and this
> particular patch. See below.
>
> > diff --git a/package/gstreamer1/gst1-plugins-bad/Config.in b/package/gstreamer1/gst1-plugins-bad/Config.in
> > index f00f3edb7c..79acd83a63 100644
> > --- a/package/gstreamer1/gst1-plugins-bad/Config.in
> > +++ b/package/gstreamer1/gst1-plugins-bad/Config.in
> > @@ -595,11 +595,11 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_WPE
> >       bool "wpe"
> >       default y
> >       depends on BR2_PACKAGE_WPEWEBKIT
> > -     depends on BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL
> > +     depends on BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
>
> So with this patch in place, it is no longer possible to select the wpe
> plugin if you have OpenGL ES, you really need full OpenGL, making the
> WPE plugin unselectable on most embedded platforms, that often only
> provide OpenGL ES, and not full OpenGL ? Is that really the case ?
From my testing it was required, maybe there's some additional config options I
missed however.
>
> Also, I'm confused by the semantic of
> BR2_PACKAGE_GST1_PLUGINS_BASE_HAS_LIB_OPENGL. With this patch +
> http://patchwork.ozlabs.org/patch/1143636/, it's essentially going to
> be used in only one remaining place:
> BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_GL. And it is exactly equal to
> BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_HAS_WINDOW &&
> BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL.
>
> The naming is very confusing, and there are not many comments to
> explain what's going on. Can we try to clarify all of this ?
Yeah, I agree this is very confusing, this patch took me quite a bit
of testing to get
something that appears to be correct.
Not really sure myself what's up with the naming but a lot of stuff
got moved around here:
https://github.com/buildroot/buildroot/commit/3f2aef56127fbe71378e6a2d55192a0835d962ab
>
> Thanks,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
  2019-08-15 22:54   ` James Hilliard
@ 2019-08-16 12:31     ` Thomas Petazzoni
  2019-08-16 23:09       ` James Hilliard
  0 siblings, 1 reply; 8+ messages in thread
From: Thomas Petazzoni @ 2019-08-16 12:31 UTC (permalink / raw)
  To: buildroot

Hello James,

+Peter Seiderer

On Thu, 15 Aug 2019 16:54:56 -0600
James Hilliard <james.hilliard1@gmail.com> wrote:

> On Thu, Aug 15, 2019 at 4:02 PM Thomas Petazzoni
> <thomas.petazzoni@bootlin.com> wrote:
> >
> > James, Adrian, Adam,
> >
> > On Wed,  7 Aug 2019 15:58:04 -0600
> > James Hilliard <james.hilliard1@gmail.com> wrote:
> >  
> > > Fixes:
> > > WPEThreadedView.h:24:10: fatal error: gst/gl/gl.h: No such file or directory
> > >  #include <gst/gl/gl.h>

So, I just did a test with the following defconfig, which only has
OpenGL ES (provided by rpi-userland) and not the full OpenGL:

BR2_arm=y
BR2_TOOLCHAIN_EXTERNAL=y
BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y
BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-arm-full-2019.05.1.tar.bz2"
BR2_TOOLCHAIN_EXTERNAL_GCC_4_9=y
BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_14=y
BR2_TOOLCHAIN_EXTERNAL_LOCALE=y
# BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG is not set
BR2_TOOLCHAIN_EXTERNAL_CXX=y
BR2_INIT_NONE=y
BR2_SYSTEM_BIN_SH_NONE=y
# BR2_PACKAGE_BUSYBOX is not set
BR2_PACKAGE_GSTREAMER1=y
BR2_PACKAGE_GST1_PLUGINS_BASE=y
# BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOCONVERT is not set
# BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE is not set
# BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VOLUME is not set
BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL=y
BR2_PACKAGE_RPI_USERLAND=y
# BR2_TARGET_ROOTFS_TAR is not set

And it does provide gst/gl/gl.h:

$ find . -name 'gl.h'
./output/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/GLES/gl.h

So, gst/gl/gl.h is provided when OpenGL ES is used, which means your
patch is most likely incorrect, and we should allow enabling the wpe
plugin when OpenGL ES is available.

Best regards,

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
  2019-08-16 12:31     ` Thomas Petazzoni
@ 2019-08-16 23:09       ` James Hilliard
  2019-10-11 22:11         ` Arnout Vandecappelle
  0 siblings, 1 reply; 8+ messages in thread
From: James Hilliard @ 2019-08-16 23:09 UTC (permalink / raw)
  To: buildroot

On Fri, Aug 16, 2019 at 6:31 AM Thomas Petazzoni
<thomas.petazzoni@bootlin.com> wrote:
>
> Hello James,
>
> +Peter Seiderer
>
> On Thu, 15 Aug 2019 16:54:56 -0600
> James Hilliard <james.hilliard1@gmail.com> wrote:
>
> > On Thu, Aug 15, 2019 at 4:02 PM Thomas Petazzoni
> > <thomas.petazzoni@bootlin.com> wrote:
> > >
> > > James, Adrian, Adam,
> > >
> > > On Wed,  7 Aug 2019 15:58:04 -0600
> > > James Hilliard <james.hilliard1@gmail.com> wrote:
> > >
> > > > Fixes:
> > > > WPEThreadedView.h:24:10: fatal error: gst/gl/gl.h: No such file or directory
> > > >  #include <gst/gl/gl.h>
>
> So, I just did a test with the following defconfig, which only has
> OpenGL ES (provided by rpi-userland) and not the full OpenGL:
>
> BR2_arm=y
> BR2_TOOLCHAIN_EXTERNAL=y
> BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y
> BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
> BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-arm-full-2019.05.1.tar.bz2"
> BR2_TOOLCHAIN_EXTERNAL_GCC_4_9=y
> BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_14=y
> BR2_TOOLCHAIN_EXTERNAL_LOCALE=y
> # BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG is not set
> BR2_TOOLCHAIN_EXTERNAL_CXX=y
> BR2_INIT_NONE=y
> BR2_SYSTEM_BIN_SH_NONE=y
> # BR2_PACKAGE_BUSYBOX is not set
> BR2_PACKAGE_GSTREAMER1=y
> BR2_PACKAGE_GST1_PLUGINS_BASE=y
> # BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOCONVERT is not set
> # BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE is not set
> # BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VOLUME is not set
> BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL=y
> BR2_PACKAGE_RPI_USERLAND=y
> # BR2_TARGET_ROOTFS_TAR is not set
>
> And it does provide gst/gl/gl.h:
>
> $ find . -name 'gl.h'
> ./output/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/GLES/gl.h
That's different from this right?:
https://github.com/GStreamer/gst-plugins-base/blob/1.16.0/gst-libs/gst/gl/gl.h
>
> So, gst/gl/gl.h is provided when OpenGL ES is used, which means your
> patch is most likely incorrect, and we should allow enabling the wpe
> plugin when OpenGL ES is available.
I thought gst/gl/gl.h was provided by gst1-plugins-base not OpenGL ES right?
That should get built based on this and not OpenGL ES AFAICT:
BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL
>
> Best regards,
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

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

* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
  2019-08-16 23:09       ` James Hilliard
@ 2019-10-11 22:11         ` Arnout Vandecappelle
  2019-10-11 22:11           ` Arnout Vandecappelle
  0 siblings, 1 reply; 8+ messages in thread
From: Arnout Vandecappelle @ 2019-10-11 22:11 UTC (permalink / raw)
  To: buildroot



On 17/08/2019 01:09, James Hilliard wrote:
> On Fri, Aug 16, 2019 at 6:31 AM Thomas Petazzoni
> <thomas.petazzoni@bootlin.com> wrote:
>>
>> Hello James,
>>
>> +Peter Seiderer
>>
>> On Thu, 15 Aug 2019 16:54:56 -0600
>> James Hilliard <james.hilliard1@gmail.com> wrote:
>>
>>> On Thu, Aug 15, 2019 at 4:02 PM Thomas Petazzoni
>>> <thomas.petazzoni@bootlin.com> wrote:
>>>>
>>>> James, Adrian, Adam,
>>>>
>>>> On Wed,  7 Aug 2019 15:58:04 -0600
>>>> James Hilliard <james.hilliard1@gmail.com> wrote:
>>>>
>>>>> Fixes:
>>>>> WPEThreadedView.h:24:10: fatal error: gst/gl/gl.h: No such file or directory
>>>>>  #include <gst/gl/gl.h>
>>
>> So, I just did a test with the following defconfig, which only has
>> OpenGL ES (provided by rpi-userland) and not the full OpenGL:
>>
>> BR2_arm=y
>> BR2_TOOLCHAIN_EXTERNAL=y
>> BR2_TOOLCHAIN_EXTERNAL_CUSTOM=y
>> BR2_TOOLCHAIN_EXTERNAL_DOWNLOAD=y
>> BR2_TOOLCHAIN_EXTERNAL_URL="http://autobuild.buildroot.org/toolchains/tarballs/br-arm-full-2019.05.1.tar.bz2"
>> BR2_TOOLCHAIN_EXTERNAL_GCC_4_9=y
>> BR2_TOOLCHAIN_EXTERNAL_HEADERS_4_14=y
>> BR2_TOOLCHAIN_EXTERNAL_LOCALE=y
>> # BR2_TOOLCHAIN_EXTERNAL_HAS_THREADS_DEBUG is not set
>> BR2_TOOLCHAIN_EXTERNAL_CXX=y
>> BR2_INIT_NONE=y
>> BR2_SYSTEM_BIN_SH_NONE=y
>> # BR2_PACKAGE_BUSYBOX is not set
>> BR2_PACKAGE_GSTREAMER1=y
>> BR2_PACKAGE_GST1_PLUGINS_BASE=y
>> # BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIOCONVERT is not set
>> # BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE is not set
>> # BR2_PACKAGE_GST1_PLUGINS_BASE_PLUGIN_VOLUME is not set
>> BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL=y
>> BR2_PACKAGE_RPI_USERLAND=y
>> # BR2_TARGET_ROOTFS_TAR is not set
>>
>> And it does provide gst/gl/gl.h:
>>
>> $ find . -name 'gl.h'
>> ./output/host/arm-buildroot-linux-uclibcgnueabi/sysroot/usr/include/GLES/gl.h
> That's different from this right?:
> https://github.com/GStreamer/gst-plugins-base/blob/1.16.0/gst-libs/gst/gl/gl.h
>>
>> So, gst/gl/gl.h is provided when OpenGL ES is used, which means your
>> patch is most likely incorrect, and we should allow enabling the wpe
>> plugin when OpenGL ES is available.
> I thought gst/gl/gl.h was provided by gst1-plugins-base not OpenGL ES right?
> That should get built based on this and not OpenGL ES AFAICT:
> BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_OPENGL

 I suspect that what is actually needed is that gst1-plugins-base is configured
with -Dgl=enabled. Therefore, after 4164d31e05 which I just applied, I think the
condition should actually be on BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_HAS_API.

 Could you test with the defconfig that Thomas provided and
BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2 if the build of WPE succeeds?


 Regards,
 Arnout

>>
>> Best regards,
>>
>> Thomas
>> --
>> Thomas Petazzoni, CTO, Bootlin
>> Embedded Linux and Kernel engineering
>> https://bootlin.com
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
> 

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

* [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency
  2019-10-11 22:11         ` Arnout Vandecappelle
@ 2019-10-11 22:11           ` Arnout Vandecappelle
  0 siblings, 0 replies; 8+ messages in thread
From: Arnout Vandecappelle @ 2019-10-11 22:11 UTC (permalink / raw)
  To: buildroot



On 12/10/2019 00:11, Arnout Vandecappelle wrote:
[snip]
>  I suspect that what is actually needed is that gst1-plugins-base is configured
> with -Dgl=enabled. Therefore, after 4164d31e05 which I just applied, I think the
> condition should actually be on BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_HAS_API.
> 
>  Could you test with the defconfig that Thomas provided and
> BR2_PACKAGE_GST1_PLUGINS_BASE_LIB_OPENGL_GLES2 if the build of WPE succeeds?

 BTW I've marked this patch as Changes Requested.

 Regards,
 Arnout

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

end of thread, other threads:[~2019-10-11 22:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-07 21:58 [Buildroot] [PATCH 1/1] package/gstreamer1/gst1-plugins-bad: fix opengl dependency James Hilliard
2019-08-07 22:24 ` Adrian Perez de Castro
2019-08-15 22:02 ` Thomas Petazzoni
2019-08-15 22:54   ` James Hilliard
2019-08-16 12:31     ` Thomas Petazzoni
2019-08-16 23:09       ` James Hilliard
2019-10-11 22:11         ` Arnout Vandecappelle
2019-10-11 22:11           ` Arnout Vandecappelle

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.