* [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo
@ 2015-05-28 6:53 Jun Zhu
2015-05-28 11:20 ` Otavio Salvador
2015-05-28 11:59 ` Daiane Angolini
0 siblings, 2 replies; 5+ messages in thread
From: Jun Zhu @ 2015-05-28 6:53 UTC (permalink / raw)
To: meta-freescale; +Cc: Jun Zhu
Freescale releases a QT5 Media Player, which is based on GStreamer1.x.
And more QT based demo applications will be released in future.
Signed-off-by: Jun Zhu <R01007@freescale.com>
---
.../qt5/fslqtapplications/qtimxplayer.desktop | 9 ++++++
recipes-qt/qt5/fslqtapplications_1.0.1.bb | 37 ++++++++++++++++++++++
2 files changed, 46 insertions(+)
create mode 100644 recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
create mode 100644 recipes-qt/qt5/fslqtapplications_1.0.1.bb
diff --git a/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop b/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
new file mode 100644
index 0000000..1823658
--- /dev/null
+++ b/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=iMX Player
+Exec=/usr/share/qt5/examples/multimedia/imxplayer/imxplayer
+Icon=imxplayer
+Terminal=false
+Type=Application
+X-MB-SingleInstance=true
+Comment=i.MX Player
+StartupNotify=false
diff --git a/recipes-qt/qt5/fslqtapplications_1.0.1.bb b/recipes-qt/qt5/fslqtapplications_1.0.1.bb
new file mode 100644
index 0000000..98a9a44
--- /dev/null
+++ b/recipes-qt/qt5/fslqtapplications_1.0.1.bb
@@ -0,0 +1,37 @@
+# Copyright (C) 2014-2015 Freescale Semiconductor
+# Released under the MIT license (see COPYING.MIT for the terms)
+
+DESCRIPTION = "Freescale QT Multimedia applications"
+LICENSE = "Proprietary"
+LIC_FILES_CHKSUM = "file://COPYING;md5=acdb807ac7275fe32f9f64992e111241"
+
+inherit fsl-eula-unpack autotools pkgconfig
+
+# base on QtMultimedia v5.x
+DEPENDS += "qtmultimedia gstreamer1.0 gstreamer1.0-plugins-base"
+
+SRC_URI = "${FSL_MIRROR}/${PN}-${PV}.bin;fsl-eula=true \
+ file://qtimxplayer.desktop \
+"
+SRC_URI[md5sum] = "a703e0b1390455c2f60804a5786a4f1f"
+SRC_URI[sha256sum] = "127f54bbea16998aefea28079116628bd72e1eb79cdb42d80e10efd1a897db51"
+
+do_install () {
+ install -d ${D}${datadir}/applications
+ install -m 0644 ${WORKDIR}/qtimxplayer.desktop ${D}${datadir}/applications
+ install -d ${D}${datadir}/qt5
+ cp -r ${S}/usr/share/qt5/examples ${D}${datadir}/qt5
+ install -d ${D}${datadir}/pixmaps
+ cp -r ${S}/usr/share/pixmaps/* ${D}${datadir}/pixmaps
+}
+
+FILES_${PN} = " \
+ ${datadir}/qt5/examples/*/* \
+ ${datadir}/applications/* \
+ ${datadir}/pixmaps/* \
+"
+
+INSANE_SKIP_${PN} += "debug-files"
+
+
+
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo
2015-05-28 6:53 [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo Jun Zhu
@ 2015-05-28 11:20 ` Otavio Salvador
2015-05-29 6:38 ` Nikolay Dimitrov
2015-05-28 11:59 ` Daiane Angolini
1 sibling, 1 reply; 5+ messages in thread
From: Otavio Salvador @ 2015-05-28 11:20 UTC (permalink / raw)
To: Jun Zhu; +Cc: meta-freescale@yoctoproject.org
On Thu, May 28, 2015 at 3:53 AM, Jun Zhu <R01007@freescale.com> wrote:
> Freescale releases a QT5 Media Player, which is based on GStreamer1.x.
> And more QT based demo applications will be released in future.
>
> Signed-off-by: Jun Zhu <R01007@freescale.com>
What a binary demo buy us? Qt5 already provides nice demos which work
fine with GStreamer 1.0 using the community plugin so could you please
elaborate what this provide to users?
--
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] 5+ messages in thread
* Re: [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo
2015-05-28 11:20 ` Otavio Salvador
@ 2015-05-29 6:38 ` Nikolay Dimitrov
0 siblings, 0 replies; 5+ messages in thread
From: Nikolay Dimitrov @ 2015-05-29 6:38 UTC (permalink / raw)
To: Jun Zhu; +Cc: meta-freescale@yoctoproject.org, Otavio Salvador
Hi Jun,
On 05/28/2015 02:20 PM, Otavio Salvador wrote:
> On Thu, May 28, 2015 at 3:53 AM, Jun Zhu <R01007@freescale.com> wrote:
>> Freescale releases a QT5 Media Player, which is based on GStreamer1.x.
>> And more QT based demo applications will be released in future.
>>
>> Signed-off-by: Jun Zhu <R01007@freescale.com>
>
> What a binary demo buy us? Qt5 already provides nice demos which work
> fine with GStreamer 1.0 using the community plugin so could you please
> elaborate what this provide to users?
Are there any plans for releasing the source code of this media player?
Regards,
Nikolay
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo
2015-05-28 6:53 [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo Jun Zhu
2015-05-28 11:20 ` Otavio Salvador
@ 2015-05-28 11:59 ` Daiane Angolini
2015-05-29 5:27 ` Zhu Jun
1 sibling, 1 reply; 5+ messages in thread
From: Daiane Angolini @ 2015-05-28 11:59 UTC (permalink / raw)
To: Jun Zhu; +Cc: meta-freescale@yoctoproject.org
Besides what Otavio said,
On Thu, May 28, 2015 at 3:53 AM, Jun Zhu <R01007@freescale.com> wrote:
> Freescale releases a QT5 Media Player, which is based on GStreamer1.x.
> And more QT based demo applications will be released in future.
I'm not sure this last sentence make any sense for us, I would drop it.
(I mean, of course more application may be released in future, it's
the natural behavior, but if you don't say what and when it is useless
information)
>
> Signed-off-by: Jun Zhu <R01007@freescale.com>
> ---
> .../qt5/fslqtapplications/qtimxplayer.desktop | 9 ++++++
> recipes-qt/qt5/fslqtapplications_1.0.1.bb | 37 ++++++++++++++++++++++
> 2 files changed, 46 insertions(+)
> create mode 100644 recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
> create mode 100644 recipes-qt/qt5/fslqtapplications_1.0.1.bb
>
> diff --git a/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop b/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
> new file mode 100644
> index 0000000..1823658
> --- /dev/null
> +++ b/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
> @@ -0,0 +1,9 @@
> +[Desktop Entry]
> +Name=iMX Player
> +Exec=/usr/share/qt5/examples/multimedia/imxplayer/imxplayer
> +Icon=imxplayer
> +Terminal=false
> +Type=Application
> +X-MB-SingleInstance=true
> +Comment=i.MX Player
> +StartupNotify=false
> diff --git a/recipes-qt/qt5/fslqtapplications_1.0.1.bb b/recipes-qt/qt5/fslqtapplications_1.0.1.bb
> new file mode 100644
> index 0000000..98a9a44
> --- /dev/null
> +++ b/recipes-qt/qt5/fslqtapplications_1.0.1.bb
> @@ -0,0 +1,37 @@
> +# Copyright (C) 2014-2015 Freescale Semiconductor
> +# Released under the MIT license (see COPYING.MIT for the terms)
> +
> +DESCRIPTION = "Freescale QT Multimedia applications"
If you are going to send v2, please elaborate the DESCRIPTION. QT
Multimedia applications says nothing to me.
Daiane
> +LICENSE = "Proprietary"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=acdb807ac7275fe32f9f64992e111241"
> +
> +inherit fsl-eula-unpack autotools pkgconfig
> +
> +# base on QtMultimedia v5.x
> +DEPENDS += "qtmultimedia gstreamer1.0 gstreamer1.0-plugins-base"
> +
> +SRC_URI = "${FSL_MIRROR}/${PN}-${PV}.bin;fsl-eula=true \
> + file://qtimxplayer.desktop \
> +"
> +SRC_URI[md5sum] = "a703e0b1390455c2f60804a5786a4f1f"
> +SRC_URI[sha256sum] = "127f54bbea16998aefea28079116628bd72e1eb79cdb42d80e10efd1a897db51"
> +
> +do_install () {
> + install -d ${D}${datadir}/applications
> + install -m 0644 ${WORKDIR}/qtimxplayer.desktop ${D}${datadir}/applications
> + install -d ${D}${datadir}/qt5
> + cp -r ${S}/usr/share/qt5/examples ${D}${datadir}/qt5
> + install -d ${D}${datadir}/pixmaps
> + cp -r ${S}/usr/share/pixmaps/* ${D}${datadir}/pixmaps
> +}
> +
> +FILES_${PN} = " \
> + ${datadir}/qt5/examples/*/* \
> + ${datadir}/applications/* \
> + ${datadir}/pixmaps/* \
> +"
> +
> +INSANE_SKIP_${PN} += "debug-files"
> +
> +
> +
> --
> 1.9.1
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo
2015-05-28 11:59 ` Daiane Angolini
@ 2015-05-29 5:27 ` Zhu Jun
0 siblings, 0 replies; 5+ messages in thread
From: Zhu Jun @ 2015-05-29 5:27 UTC (permalink / raw)
To: Daiane Angolini; +Cc: meta-freescale@yoctoproject.org
It is a set of QT5 Demo apps developed by Freescale. In recent version, a Media Player -- imxplayer is released.
Thank you for the feedback, I will submit a V2 patch for review.
-----Original Message-----
From: angolini@gmail.com [mailto:angolini@gmail.com] On Behalf Of Daiane Angolini
Sent: Thursday, May 28, 2015 7:59 PM
To: Zhu Jun-R01007
Cc: meta-freescale@yoctoproject.org
Subject: Re: [meta-freescale] [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo
Besides what Otavio said,
On Thu, May 28, 2015 at 3:53 AM, Jun Zhu <R01007@freescale.com> wrote:
> Freescale releases a QT5 Media Player, which is based on GStreamer1.x.
> And more QT based demo applications will be released in future.
I'm not sure this last sentence make any sense for us, I would drop it.
(I mean, of course more application may be released in future, it's the natural behavior, but if you don't say what and when it is useless
information)
>
> Signed-off-by: Jun Zhu <R01007@freescale.com>
> ---
> .../qt5/fslqtapplications/qtimxplayer.desktop | 9 ++++++
> recipes-qt/qt5/fslqtapplications_1.0.1.bb | 37 ++++++++++++++++++++++
> 2 files changed, 46 insertions(+)
> create mode 100644
> recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
> create mode 100644 recipes-qt/qt5/fslqtapplications_1.0.1.bb
>
> diff --git a/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
> b/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
> new file mode 100644
> index 0000000..1823658
> --- /dev/null
> +++ b/recipes-qt/qt5/fslqtapplications/qtimxplayer.desktop
> @@ -0,0 +1,9 @@
> +[Desktop Entry]
> +Name=iMX Player
> +Exec=/usr/share/qt5/examples/multimedia/imxplayer/imxplayer
> +Icon=imxplayer
> +Terminal=false
> +Type=Application
> +X-MB-SingleInstance=true
> +Comment=i.MX Player
> +StartupNotify=false
> diff --git a/recipes-qt/qt5/fslqtapplications_1.0.1.bb
> b/recipes-qt/qt5/fslqtapplications_1.0.1.bb
> new file mode 100644
> index 0000000..98a9a44
> --- /dev/null
> +++ b/recipes-qt/qt5/fslqtapplications_1.0.1.bb
> @@ -0,0 +1,37 @@
> +# Copyright (C) 2014-2015 Freescale Semiconductor # Released under
> +the MIT license (see COPYING.MIT for the terms)
> +
> +DESCRIPTION = "Freescale QT Multimedia applications"
If you are going to send v2, please elaborate the DESCRIPTION. QT Multimedia applications says nothing to me.
Daiane
> +LICENSE = "Proprietary"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=acdb807ac7275fe32f9f64992e111241"
> +
> +inherit fsl-eula-unpack autotools pkgconfig
> +
> +# base on QtMultimedia v5.x
> +DEPENDS += "qtmultimedia gstreamer1.0 gstreamer1.0-plugins-base"
> +
> +SRC_URI = "${FSL_MIRROR}/${PN}-${PV}.bin;fsl-eula=true \
> + file://qtimxplayer.desktop \ "
> +SRC_URI[md5sum] = "a703e0b1390455c2f60804a5786a4f1f"
> +SRC_URI[sha256sum] = "127f54bbea16998aefea28079116628bd72e1eb79cdb42d80e10efd1a897db51"
> +
> +do_install () {
> + install -d ${D}${datadir}/applications
> + install -m 0644 ${WORKDIR}/qtimxplayer.desktop ${D}${datadir}/applications
> + install -d ${D}${datadir}/qt5
> + cp -r ${S}/usr/share/qt5/examples ${D}${datadir}/qt5
> + install -d ${D}${datadir}/pixmaps
> + cp -r ${S}/usr/share/pixmaps/* ${D}${datadir}/pixmaps }
> +
> +FILES_${PN} = " \
> + ${datadir}/qt5/examples/*/* \
> + ${datadir}/applications/* \
> + ${datadir}/pixmaps/* \
> +"
> +
> +INSANE_SKIP_${PN} += "debug-files"
> +
> +
> +
> --
> 1.9.1
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2015-05-29 6:38 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-05-28 6:53 [meta-fsl-demo][PATCH] fslqtapplications: Add Freescale QT5 Multimedia Applications for Demo Jun Zhu
2015-05-28 11:20 ` Otavio Salvador
2015-05-29 6:38 ` Nikolay Dimitrov
2015-05-28 11:59 ` Daiane Angolini
2015-05-29 5:27 ` Zhu Jun
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.