summaryrefslogtreecommitdiffstats
path: root/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
diff options
context:
space:
mode:
authorGary Thomas <gary@mlbassoc.com>2012-03-29 08:40:04 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-29 22:57:30 +0100
commitdd4d49b20f3c690d7bff2347e176e7acf6ffc787 (patch)
tree95d86b03e48682de6a112c7989aadec5b47a140e /meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
parent3af7e95d69d29f1a5f79e60adfd4db7bd3c4570d (diff)
downloadpoky-dd4d49b20f3c690d7bff2347e176e7acf6ffc787.tar.gz
gstreamer: Provide easy way to enable runtime debugging
The gstreamer framework has a very useful debugging setup which is essential for debugging pipelines and plugins. This patch makes it simple to enable this (disabled by default). To enable debugging, just add this line to local.conf GSTREAMER_DEBUG = "--enable-debug" (From OE-Core rev: 947c00c78732da48a111228e1325ad42cf57a370) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb')
-rw-r--r--meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
index 5ee5066d87..92cd349b70 100644
--- a/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-ffmpeg_0.10.13.bb
@@ -25,7 +25,8 @@ SRC_URI[sha256sum] = "76fca05b08e00134e3cb92fa347507f42cbd48ddb08ed3343a912def18
25 25
26PR = "r1" 26PR = "r1"
27 27
28EXTRA_OECONF = "--with-ffmpeg-extra-configure=\"--target-os=linux\" " 28GSTREAMER_DEBUG ?= "--disable-debug"
29EXTRA_OECONF = "--with-ffmpeg-extra-configure=\"--target-os=linux\" ${GSTREAMER_DEBUG}"
29 30
30# yasm not found, use --disable-yasm for a crippled build for libav 31# yasm not found, use --disable-yasm for a crippled build for libav
31EXTRA_OECONF_append_x86-64 = " --disable-yasm " 32EXTRA_OECONF_append_x86-64 = " --disable-yasm "