On Tuesday 13 August 2013 12:37:19 Mark Hatle wrote: > On 8/13/13 12:29 PM, Gary Thomas wrote: > > I see that some of the gstreamer recipes have changed so that x264 > > is now a PACKAGECONFIG option. However, I don't see anything that > > enables this option anywhere. > > > > How do I get x264 support back - it was working with Poky/Yocto > > just a few weeks back... > > > > Note: I have imported meta-oe/recipes-multimedia/x264 from > > meta-openembedded into my layers for this [library] package. > > I havn't worked with this myself, but my guess is. In your > distribution.conf file (or your local.conf): > > PACKAGECONFIG_gst-plugins-ugly = "x264" > > or > > PACKAGECONFIG_gstreamer1.0-plugins-ugly = "a52dec lame mad mpeg2dec x264"
You missed out the "pn-" which is necessary for such per-recipe overrides to work. The correct examples would be: PACKAGECONFIG_pn-gst-plugins-ugly = "x264" or PACKAGECONFIG_pn-gstreamer1.0-plugins-ugly = "a52dec lame mad mpeg2dec x264" If preferred you could use ..._append_pn-... = " x264" to add to the existing options rather than setting them outright. Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
