From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yh0-f41.google.com (mail-yh0-f41.google.com [209.85.213.41]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 2088FE005B1 for ; Tue, 10 Dec 2013 12:48:26 -0800 (PST) Received: by mail-yh0-f41.google.com with SMTP id f11so4394993yha.0 for ; Tue, 10 Dec 2013 12:48:25 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=FIydfT226IJV45h5NPv/Rk0dT1kyhvLi/dF4cUoBku0=; b=nABvyfrjpSa1iHf5ZgQqsxpJb+ewkxurUpa6MqmuBHqy9j8h/1mBEvbznAxnX80uKe aT622iYllODuIsRf6egzD3OGks5qYVWzy5hUvKQqZgZqWsJoFOjHPZmwG/ASq49Ka6Yk MT3EbW+7SMiVaniCXcKrQXU8uVgj+OopZohzPPwth8fWdxgLkLG0BiZK/14CUbLkYNXn uBBX3HcLvSNzKqYgpMzpFgRcOPv5AXghQ/fZNywygNfUbWMTaIzYnDjgSbZ1JSlZ6Cbt H+jbfZMqHFO//wtM97hcOXtQRjrH3dstQhHcYCb7kn7Ejpl5AyUE2hIGE7XgYXQYdjya l+Tw== X-Received: by 10.236.228.137 with SMTP id f9mr21728440yhq.44.1386708505784; Tue, 10 Dec 2013 12:48:25 -0800 (PST) Received: from localhost.localdomain ([75.76.228.60]) by mx.google.com with ESMTPSA id d26sm24476746yhj.25.2013.12.10.12.48.24 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 10 Dec 2013 12:48:24 -0800 (PST) From: John Weber To: meta-freescale@yoctoproject.org Date: Tue, 10 Dec 2013 14:47:51 -0600 Message-Id: <1386708471-8161-1-git-send-email-rjohnweber@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [meta-fsl-demos][PATCH] glive: Add recipe for Gstreamer Live Example X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Dec 2013 20:48:28 -0000 glive is a Gstreamer Live Example project consisting of a server and a client program which shows one way of streaming video data using Gstreamer. It makes use of Gstreamer version 0.10 and uses RTP and RTCP, as well as a TCP socket for link status and control. Signed-off-by: John Weber --- recipes-multimedia/glive/glive.bb | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 recipes-multimedia/glive/glive.bb diff --git a/recipes-multimedia/glive/glive.bb b/recipes-multimedia/glive/glive.bb new file mode 100644 index 0000000..fb3681a --- /dev/null +++ b/recipes-multimedia/glive/glive.bb @@ -0,0 +1,25 @@ +# Copyright (C) 2013 Avnet Electronics Marketing + +DESCRIPTION = "Gstreamer Live Example (GLIVE) Server and Client Application" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263" + +SRC_URI = "git://github.com/johnweber/glive.git;branch=master" +SRCREV = "d7263f6dc685efb06cbd0f70b12c12193cec480a" + +inherit autotools pkgconfig + +S = "${WORKDIR}/git" + +# Depends on Gstreamer +DEPENDS = "gstreamer glib-2.0 " +RDEPENDS_${PN} = "gstreamer \ + gst-plugins-good-rtp \ + gst-plugins-good-udp \ + gst-plugins-good-rtpmanager \ + gst-plugins-good-video4linux2 \ + gst-fsl-plugin \ + glib-2.0 \ +" + +PACKAGE_ARCH = "${MACHINE_ARCH}" -- 1.7.9.5