All of lore.kernel.org
 help / color / mirror / Atom feed
* How to use libfslcodec with gstreamer-1.0
@ 2014-11-21  2:31 Ray・Bloodworth
  2014-11-21 11:12 ` Daiane Angolini
  0 siblings, 1 reply; 12+ messages in thread
From: Ray・Bloodworth @ 2014-11-21  2:31 UTC (permalink / raw)
  To: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

Hi, everyone
    In machine-test image, libfslcodec is used with gstreamer-0.1.
    How to use libfslcodec with gstreamer-1.0 ?

BR,
kongling


[-- Attachment #2: Type: text/html, Size: 932 bytes --]

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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-21  2:31 How to use libfslcodec with gstreamer-1.0 Ray・Bloodworth
@ 2014-11-21 11:12 ` Daiane Angolini
  2014-11-24  5:22   ` Ray·Bloodworth
  0 siblings, 1 reply; 12+ messages in thread
From: Daiane Angolini @ 2014-11-21 11:12 UTC (permalink / raw)
  To: Ray·Bloodworth; +Cc: meta-freescale@yoctoproject.org

On Fri, Nov 21, 2014 at 12:31 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi, everyone
>     In machine-test image, libfslcodec is used with gstreamer-0.1.
>     How to use libfslcodec with gstreamer-1.0 ?


The variable used to control/install the gst is
MACHINE_GSTREAMER_PLUGIN  and/or MACHINE_GSTREAMER_1_0_PLUGIN

http://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-arm/tree/conf/machine/include/imx-base.inc#n82

It points to the "package which implement the hardware acceleration
for the gstreamer plugins"

We have packagegroups prepared to install the packages pointed by that
variables (both for gst-1.0 and gst0.1) they are

https://github.com/Freescale/meta-fsl-demos/blob/master/recipes-fsl/packagegroups/packagegroup-fsl-gstreamer.bb#L30

and

https://github.com/Freescale/meta-fsl-demos/blob/master/recipes-multimedia/packagegroups/packagegroup-fslc-gstreamer1.0.bb#L29

Install the needed packagegroup to your image or local.conf.

Daiane

>
> BR,
> kongling
>
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
>


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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-21 11:12 ` Daiane Angolini
@ 2014-11-24  5:22   ` Ray·Bloodworth
  2014-11-24 11:28     ` Daiane Angolini
  0 siblings, 1 reply; 12+ messages in thread
From: Ray·Bloodworth @ 2014-11-24  5:22 UTC (permalink / raw)
  To: Daiane Angolini; +Cc: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 2696 bytes --]

Hi, Daiane
    Thanks for your help!
    I add config to compile machine-test image:
IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0 gst1.0-fsl-plugin "

   There is a error when doing rootfs.
NOTE: Installing the following packages: packagegroup-fsl-tools-gpu packagegroup-core-tools-testapps packagegroup-base-extended run-postinsts packagegroup-fsl-tools-benchmark packagegroup-core-x11-base packagegroup-core-tools-profile packagegroup-fsl-gstreamer-full packagegroup-fsl-tools-gpu-external gstreamer1.0-plugins-imx packagegroup-fsl-gstreamer gst1.0-fsl-plugin packagegroup-fsl-tools-testapps gstreamer1.0 packagegroup-core-boot locale-base-en-us locale-base-en-gb 
ERROR: packagegroup-fsl-tools-gpu not found in the base feeds (imx6qsabresd cortexa9-vfp-neon-mx6qdl cortexa9-vfp-neon cortexa9-vfp armv7a-vfp-neon armv7a-vfp armv7a armv6-vfp armv6 armv5e-vfp armv5e armv5-vfp armv5 armv4 arm noarch any all). 
gst1.0-fsl-plugin-4.0.1-r0@imx6qsabresd gst1.0-fsl-plugin-dbg-4.0.1-r0@imx6qsabresd gst1.0-fsl-plugin-dev-4.0.1-r0@imx6qsabresd gst1.0-fsl-plugin-gplay-4.0.1-r0@imx6qsabresd gst1.0-fsl-plugin-staticdev-4.0.1-r0@imx6qsabresd libgplaycore-1.0-0-4.0.1-r0@imx6qsabresd libgstfsl-1.0-0-4.0.1-r0@imx6qsabresd

  Could you help me with this error?

BR,
kongling

 
From: Daiane Angolini
Date: 2014-11-21 19:12
To: Ray·Bloodworth
CC: meta-freescale@yoctoproject.org
Subject: Re: [meta-freescale] How to use libfslcodec with gstreamer-1.0
On Fri, Nov 21, 2014 at 12:31 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi, everyone
>     In machine-test image, libfslcodec is used with gstreamer-0.1.
>     How to use libfslcodec with gstreamer-1.0 ?
 
 
The variable used to control/install the gst is
MACHINE_GSTREAMER_PLUGIN  and/or MACHINE_GSTREAMER_1_0_PLUGIN
 
http://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-arm/tree/conf/machine/include/imx-base.inc#n82
 
It points to the "package which implement the hardware acceleration
for the gstreamer plugins"
 
We have packagegroups prepared to install the packages pointed by that
variables (both for gst-1.0 and gst0.1) they are
 
https://github.com/Freescale/meta-fsl-demos/blob/master/recipes-fsl/packagegroups/packagegroup-fsl-gstreamer.bb#L30
 
and
 
https://github.com/Freescale/meta-fsl-demos/blob/master/recipes-multimedia/packagegroups/packagegroup-fslc-gstreamer1.0.bb#L29
 
Install the needed packagegroup to your image or local.conf.
 
Daiane
 
>
> BR,
> kongling
>
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
>

[-- Attachment #2: Type: text/html, Size: 5046 bytes --]

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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-24  5:22   ` Ray·Bloodworth
@ 2014-11-24 11:28     ` Daiane Angolini
  2014-11-25  7:33       ` Ray·Bloodworth
       [not found]       ` <2014112515334300531212@outlook.com>
  0 siblings, 2 replies; 12+ messages in thread
From: Daiane Angolini @ 2014-11-24 11:28 UTC (permalink / raw)
  To: Ray·Bloodworth; +Cc: meta-freescale@yoctoproject.org

On Mon, Nov 24, 2014 at 3:22 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi, Daiane
>     Thanks for your help!
>     I add config to compile machine-test image:
> IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0
> gst1.0-fsl-plugin "
>
>    There is a error when doing rootfs.
> NOTE: Installing the following packages: packagegroup-fsl-tools-gpu
> packagegroup-core-tools-testapps packagegroup-base-extended run-postinsts
> packagegroup-fsl-tools-benchmark packagegroup-core-x11-base
> packagegroup-core-tools-profile packagegroup-fsl-gstreamer-full
> packagegroup-fsl-tools-gpu-external gstreamer1.0-plugins-imx
> packagegroup-fsl-gstreamer gst1.0-fsl-plugin packagegroup-fsl-tools-testapps
> gstreamer1.0 packagegroup-core-boot locale-base-en-us locale-base-en-gb
> ERROR: packagegroup-fsl-tools-gpu not found in the base feeds (imx6qsabresd
> cortexa9-vfp-neon-mx6qdl cortexa9-vfp-neon cortexa9-vfp armv7a-vfp-neon
> armv7a-vfp armv7a armv6-vfp armv6 armv5e-vfp armv5e armv5-vfp armv5 armv4
> arm noarch any all).
> gst1.0-fsl-plugin-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-dbg-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-dev-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-gplay-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-staticdev-4.0.1-r0@imx6qsabresd
> libgplaycore-1.0-0-4.0.1-r0@imx6qsabresd
> libgstfsl-1.0-0-4.0.1-r0@imx6qsabresd
>
>   Could you help me with this error?

What branch are you using? Can you test the same with dizzy?

Daiane


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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-24 11:28     ` Daiane Angolini
@ 2014-11-25  7:33       ` Ray·Bloodworth
  2014-11-25 14:50         ` Eric Nelson
       [not found]       ` <2014112515334300531212@outlook.com>
  1 sibling, 1 reply; 12+ messages in thread
From: Ray·Bloodworth @ 2014-11-25  7:33 UTC (permalink / raw)
  To: Daiane Angolini; +Cc: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 2423 bytes --]

Hi, Daiane
   Sorry for late...
   I'm using the master branch. I think my environment is dirty, so I use repo sync to get a clean environment.
   I add "IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0 gst1.0-fsl-plugin "  and "bitbake core-image-weston".
  After this, I got this error:

| configure: error: Package requirements (egl >= 7.10 glesv2 wayland-client wayland-egl) were not met: 
| 
| No package 'wayland-egl' found 
| 
| Consider adjusting the PKG_CONFIG_PATH environment variable if you 
| installed software in a non-standard prefix.

   I know this is lack of wayland-egl, for gpu-viv libs, it should be libEGL. How to add cflags and libs to solve this error?




Ray·Bloodworth

 
From: Daiane Angolini
Date: 2014-11-24 19:28
To: Ray·Bloodworth
CC: meta-freescale@yoctoproject.org
Subject: Re: Re: [meta-freescale] How to use libfslcodec with gstreamer-1.0
On Mon, Nov 24, 2014 at 3:22 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi, Daiane
>     Thanks for your help!
>     I add config to compile machine-test image:
> IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0
> gst1.0-fsl-plugin "
>
>    There is a error when doing rootfs.
> NOTE: Installing the following packages: packagegroup-fsl-tools-gpu
> packagegroup-core-tools-testapps packagegroup-base-extended run-postinsts
> packagegroup-fsl-tools-benchmark packagegroup-core-x11-base
> packagegroup-core-tools-profile packagegroup-fsl-gstreamer-full
> packagegroup-fsl-tools-gpu-external gstreamer1.0-plugins-imx
> packagegroup-fsl-gstreamer gst1.0-fsl-plugin packagegroup-fsl-tools-testapps
> gstreamer1.0 packagegroup-core-boot locale-base-en-us locale-base-en-gb
> ERROR: packagegroup-fsl-tools-gpu not found in the base feeds (imx6qsabresd
> cortexa9-vfp-neon-mx6qdl cortexa9-vfp-neon cortexa9-vfp armv7a-vfp-neon
> armv7a-vfp armv7a armv6-vfp armv6 armv5e-vfp armv5e armv5-vfp armv5 armv4
> arm noarch any all).
> gst1.0-fsl-plugin-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-dbg-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-dev-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-gplay-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-staticdev-4.0.1-r0@imx6qsabresd
> libgplaycore-1.0-0-4.0.1-r0@imx6qsabresd
> libgstfsl-1.0-0-4.0.1-r0@imx6qsabresd
>
>   Could you help me with this error?
 
What branch are you using? Can you test the same with dizzy?
 
Daiane

[-- Attachment #2: Type: text/html, Size: 5353 bytes --]

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

* Re: How to use libfslcodec with gstreamer-1.0
       [not found]       ` <2014112515334300531212@outlook.com>
@ 2014-11-25  8:51         ` Ray·Bloodworth
  2014-11-25 11:06           ` Otavio Salvador
  0 siblings, 1 reply; 12+ messages in thread
From: Ray·Bloodworth @ 2014-11-25  8:51 UTC (permalink / raw)
  To: Daiane Angolini; +Cc: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 2803 bytes --]

Hi, Daiane
    I forget to add DISTRO_FEATURES_remove = "directfb x11" in local.conf.
    Run "bitbake core-image-weston" with gstreamer-1.0 is ok.

   Thank you!




Ray·Bloodworth

 
From: Ray·Bloodworth
Date: 2014-11-25 15:33
To: Daiane Angolini
CC: meta-freescale@yoctoproject.org
Subject: Re: Re: [meta-freescale] How to use libfslcodec with gstreamer-1.0
Hi, Daiane
   Sorry for late...
   I'm using the master branch. I think my environment is dirty, so I use repo sync to get a clean environment.
   I add "IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0 gst1.0-fsl-plugin "  and "bitbake core-image-weston".
  After this, I got this error:

| configure: error: Package requirements (egl >= 7.10 glesv2 wayland-client wayland-egl) were not met: 
| 
| No package 'wayland-egl' found 
| 
| Consider adjusting the PKG_CONFIG_PATH environment variable if you 
| installed software in a non-standard prefix.

   I know this is lack of wayland-egl, for gpu-viv libs, it should be libEGL. How to add cflags and libs to solve this error?




Ray·Bloodworth

 
From: Daiane Angolini
Date: 2014-11-24 19:28
To: Ray·Bloodworth
CC: meta-freescale@yoctoproject.org
Subject: Re: Re: [meta-freescale] How to use libfslcodec with gstreamer-1.0
On Mon, Nov 24, 2014 at 3:22 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi, Daiane
>     Thanks for your help!
>     I add config to compile machine-test image:
> IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0
> gst1.0-fsl-plugin "
>
>    There is a error when doing rootfs.
> NOTE: Installing the following packages: packagegroup-fsl-tools-gpu
> packagegroup-core-tools-testapps packagegroup-base-extended run-postinsts
> packagegroup-fsl-tools-benchmark packagegroup-core-x11-base
> packagegroup-core-tools-profile packagegroup-fsl-gstreamer-full
> packagegroup-fsl-tools-gpu-external gstreamer1.0-plugins-imx
> packagegroup-fsl-gstreamer gst1.0-fsl-plugin packagegroup-fsl-tools-testapps
> gstreamer1.0 packagegroup-core-boot locale-base-en-us locale-base-en-gb
> ERROR: packagegroup-fsl-tools-gpu not found in the base feeds (imx6qsabresd
> cortexa9-vfp-neon-mx6qdl cortexa9-vfp-neon cortexa9-vfp armv7a-vfp-neon
> armv7a-vfp armv7a armv6-vfp armv6 armv5e-vfp armv5e armv5-vfp armv5 armv4
> arm noarch any all).
> gst1.0-fsl-plugin-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-dbg-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-dev-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-gplay-4.0.1-r0@imx6qsabresd
> gst1.0-fsl-plugin-staticdev-4.0.1-r0@imx6qsabresd
> libgplaycore-1.0-0-4.0.1-r0@imx6qsabresd
> libgstfsl-1.0-0-4.0.1-r0@imx6qsabresd
>
>   Could you help me with this error?
 
What branch are you using? Can you test the same with dizzy?
 
Daiane

[-- Attachment #2: Type: text/html, Size: 7512 bytes --]

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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-25  8:51         ` Ray·Bloodworth
@ 2014-11-25 11:06           ` Otavio Salvador
  2014-11-25 11:29             ` Ray·Bloodworth
  0 siblings, 1 reply; 12+ messages in thread
From: Otavio Salvador @ 2014-11-25 11:06 UTC (permalink / raw)
  To: Ray·Bloodworth; +Cc: meta-freescale@yoctoproject.org

On Tue, Nov 25, 2014 at 6:51 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi, Daiane
>     I forget to add DISTRO_FEATURES_remove = "directfb x11" in local.conf.
>     Run "bitbake core-image-weston" with gstreamer-1.0 is ok.

Which board are you using? i.MX6 is failing to build without the patch
I sent to the mailing list yesterday.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-25 11:06           ` Otavio Salvador
@ 2014-11-25 11:29             ` Ray·Bloodworth
  2014-11-25 11:36               ` Otavio Salvador
  0 siblings, 1 reply; 12+ messages in thread
From: Ray·Bloodworth @ 2014-11-25 11:29 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 996 bytes --]

Hi, 
    I'm using MCIMX6Q-SDP.
    When I build "core-image-weston" first time, there was a error about weston-1.6. So I copied the weston-1.5 from dizzy to replace it.
    After this, it could be built successfully.




Ray·Bloodworth

 
From: Otavio Salvador
Date: 2014-11-25 19:06
To: Ray·Bloodworth
CC: Daiane Angolini; meta-freescale@yoctoproject.org
Subject: Re: [meta-freescale] How to use libfslcodec with gstreamer-1.0
On Tue, Nov 25, 2014 at 6:51 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi, Daiane
>     I forget to add DISTRO_FEATURES_remove = "directfb x11" in local.conf.
>     Run "bitbake core-image-weston" with gstreamer-1.0 is ok.
 
Which board are you using? i.MX6 is failing to build without the patch
I sent to the mailing list yesterday.
 
-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750

[-- Attachment #2: Type: text/html, Size: 3126 bytes --]

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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-25 11:29             ` Ray·Bloodworth
@ 2014-11-25 11:36               ` Otavio Salvador
  2014-11-26  1:11                 ` Ray·Bloodworth
  0 siblings, 1 reply; 12+ messages in thread
From: Otavio Salvador @ 2014-11-25 11:36 UTC (permalink / raw)
  To: Ray·Bloodworth; +Cc: meta-freescale@yoctoproject.org

On Tue, Nov 25, 2014 at 9:29 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi,
>     I'm using MCIMX6Q-SDP.
>     When I build "core-image-weston" first time, there was a error about
> weston-1.6. So I copied the weston-1.5 from dizzy to replace it.
>     After this, it could be built successfully.

Well this is the kind of information you must inform when asking for
help; we cannot know what you did if you don't tell us.

So this is expected to fail. Revert those changes and apply the patch
I sent yesterday and give it a go please.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-25  7:33       ` Ray·Bloodworth
@ 2014-11-25 14:50         ` Eric Nelson
  2014-11-26  1:07           ` Ray·Bloodworth
  0 siblings, 1 reply; 12+ messages in thread
From: Eric Nelson @ 2014-11-25 14:50 UTC (permalink / raw)
  To: Ray·Bloodworth, Daiane Angolini; +Cc: meta-freescale

Hi Ray,

On 11/25/2014 12:33 AM, Ray·Bloodworth wrote:
> Hi, Daiane
>    Sorry for late...
>    I'm using the master branch. I think my environment is dirty, so I
> use repo sync to get a clean environment.
>    I add "IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0
> gst1.0-fsl-plugin "  and "bitbake core-image-weston".
>   After this, I got this error:
> 
> | configure: error: Package requirements (egl >= 7.10 glesv2
> wayland-client wayland-egl) were not met:
> |
> | No package 'wayland-egl' found
> |
> | Consider adjusting the PKG_CONFIG_PATH environment variable if you
> | installed software in a non-standard prefix.
> 
>    I know this is lack of wayland-egl, for gpu-viv libs, it should be
> libEGL. How to add cflags and libs to solve this error?
> 

Did you remove X11?

i.e.
DISTRO_FEATURES_remove = "x11"




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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-25 14:50         ` Eric Nelson
@ 2014-11-26  1:07           ` Ray·Bloodworth
  0 siblings, 0 replies; 12+ messages in thread
From: Ray·Bloodworth @ 2014-11-26  1:07 UTC (permalink / raw)
  To: Eric Nelson, Daiane Angolini; +Cc: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 1485 bytes --]

Hi, 
   Yes, I need weston image because my target device is running with weston.

   I'm working on OS porting.

   Here is my link:
   https://github.com/RayBloodworth/porting_tizen_to_imx6q
   
   Since multi-media(audo/video encoder/decoder) with gstreamer-1.0 still has some problems, I haven't publish this yet.
   gstreamer-0.1 porting is ok, but this file-system is using gstreamer-1.0.




Ray·Bloodworth

 
From: Eric Nelson
Date: 2014-11-25 22:50
To: Ray·Bloodworth; Daiane Angolini
CC: meta-freescale
Subject: Re: [meta-freescale] How to use libfslcodec with gstreamer-1.0
Hi Ray,
 
On 11/25/2014 12:33 AM, Ray·Bloodworth wrote:
> Hi, Daiane
>    Sorry for late...
>    I'm using the master branch. I think my environment is dirty, so I
> use repo sync to get a clean environment.
>    I add "IMAGE_INSTALL_append = " gstreamer1.0-plugins-imx gstreamer1.0
> gst1.0-fsl-plugin "  and "bitbake core-image-weston".
>   After this, I got this error:
> 
> | configure: error: Package requirements (egl >= 7.10 glesv2
> wayland-client wayland-egl) were not met:
> |
> | No package 'wayland-egl' found
> |
> | Consider adjusting the PKG_CONFIG_PATH environment variable if you
> | installed software in a non-standard prefix.
> 
>    I know this is lack of wayland-egl, for gpu-viv libs, it should be
> libEGL. How to add cflags and libs to solve this error?
> 
 
Did you remove X11?
 
i.e.
DISTRO_FEATURES_remove = "x11"
 
 

[-- Attachment #2: Type: text/html, Size: 3666 bytes --]

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

* Re: How to use libfslcodec with gstreamer-1.0
  2014-11-25 11:36               ` Otavio Salvador
@ 2014-11-26  1:11                 ` Ray·Bloodworth
  0 siblings, 0 replies; 12+ messages in thread
From: Ray·Bloodworth @ 2014-11-26  1:11 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale

[-- Attachment #1: Type: text/plain, Size: 1078 bytes --]

   I forgot this point because I'm focusing on gstreamer...
   I will try this patch later.



Ray·Bloodworth

 
From: Otavio Salvador
Date: 2014-11-25 19:36
To: Ray·Bloodworth
CC: Daiane Angolini; meta-freescale@yoctoproject.org
Subject: Re: Re: [meta-freescale] How to use libfslcodec with gstreamer-1.0
On Tue, Nov 25, 2014 at 9:29 AM, Ray·Bloodworth <k870818319@outlook.com> wrote:
> Hi,
>     I'm using MCIMX6Q-SDP.
>     When I build "core-image-weston" first time, there was a error about
> weston-1.6. So I copied the weston-1.5 from dizzy to replace it.
>     After this, it could be built successfully.
 
Well this is the kind of information you must inform when asking for
help; we cannot know what you did if you don't tell us.
 
So this is expected to fail. Revert those changes and apply the patch
I sent yesterday and give it a go please.
 
-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750

[-- Attachment #2: Type: text/html, Size: 3189 bytes --]

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

end of thread, other threads:[~2014-11-26  1:11 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-21  2:31 How to use libfslcodec with gstreamer-1.0 Ray・Bloodworth
2014-11-21 11:12 ` Daiane Angolini
2014-11-24  5:22   ` Ray·Bloodworth
2014-11-24 11:28     ` Daiane Angolini
2014-11-25  7:33       ` Ray·Bloodworth
2014-11-25 14:50         ` Eric Nelson
2014-11-26  1:07           ` Ray·Bloodworth
     [not found]       ` <2014112515334300531212@outlook.com>
2014-11-25  8:51         ` Ray·Bloodworth
2014-11-25 11:06           ` Otavio Salvador
2014-11-25 11:29             ` Ray·Bloodworth
2014-11-25 11:36               ` Otavio Salvador
2014-11-26  1:11                 ` Ray·Bloodworth

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.