All of lore.kernel.org
 help / color / mirror / Atom feed
* [rocko V2 0/2] gstreamer 1.12 patches
@ 2018-06-12  4:45 Ramprasad N
  2018-06-12  4:45 ` [rocko V2 1/2] gstvpe: Bump SRCREV with latest fixes Ramprasad N
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Ramprasad N @ 2018-06-12  4:45 UTC (permalink / raw)
  To: meta-arago

Update SRCREV of gst-vpe and gst-ducati with latest commits

Ramprasad N (2):
  gstvpe: Bump SRCREV with latest fixes
  gst-ducati: Update SRCREV with latest commit

 .../gstreamer1.0-plugins-ducati_git.bb             |  4 +--
 ...late-the-output-structure-with-progressiv.patch | 33 ----------------------
 .../gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb |  5 ++--
 3 files changed, 4 insertions(+), 38 deletions(-)
 delete mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch

-- 
1.9.1



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

* [rocko V2 1/2] gstvpe: Bump SRCREV with latest fixes
  2018-06-12  4:45 [rocko V2 0/2] gstreamer 1.12 patches Ramprasad N
@ 2018-06-12  4:45 ` Ramprasad N
  2018-06-13  5:26   ` [EXTERNAL] " Karthik Ramanan
  2018-06-12  4:45 ` [rocko V2 2/2] gst-ducati: Update SRCREV with latest commit Ramprasad N
  2018-06-12 21:36 ` [rocko V2 0/2] gstreamer 1.12 patches Denys Dmytriyenko
  2 siblings, 1 reply; 8+ messages in thread
From: Ramprasad N @ 2018-06-12  4:45 UTC (permalink / raw)
  To: meta-arago

This update brings in following fixes
* Set "Progressive" in output caps to avoid memcpy
* Set vpe in process mode for progressive streams
  to avoid OOM issues

Remove the redeundant patch from the recipe

Signed-off-by: Ramprasad N <x0038811@ti.com>
---
 ...late-the-output-structure-with-progressiv.patch | 33 ----------------------
 .../gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb |  5 ++--
 2 files changed, 2 insertions(+), 36 deletions(-)
 delete mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch

diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
deleted file mode 100644
index 3f35302..0000000
--- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 4a8ae45e17e1e2d6299353cc871e9427617fa12d Mon Sep 17 00:00:00 2001
-From: Ramprasad N <x0038811@ti.com>
-Date: Tue, 20 Mar 2018 19:05:18 +0530
-Subject: [PATCH] gstvpe: Populate the output structure with progressive
-
-playbin shows performance drop with waylandsink due
-to frame-copy of frame buffers. The caps between vpe and
-videoconverter don't match hence this results in frame-copy.
-By setting the interlace-mode capabilities match and
-all components will be configured to pass through mode.
-
-Signed-off-by: Ramprasad N <x0038811@ti.com>
----
- src/gstvpe.c | 3 +++
- 1 file changed, 3 insertions(+)
-
-diff --git a/src/gstvpe.c b/src/gstvpe.c
-index d795d4c..219e5e3 100644
---- a/src/gstvpe.c
-+++ b/src/gstvpe.c
-@@ -237,6 +237,9 @@ gst_vpe_set_output_caps (GstVpe * self)
-       "width", G_TYPE_INT, self->output_width,
-       "height", G_TYPE_INT, self->output_height, NULL);
- 
-+  gst_structure_set (out_s, "interlace-mode", G_TYPE_STRING,
-+                   "progressive", NULL);
-+
-   if (gst_structure_get_fraction (s, "pixel-aspect-ratio",
-           &par_width, &par_height))
-     gst_structure_set (out_s, "pixel-aspect-ratio", GST_TYPE_FRACTION,
--- 
-1.9.1
-
diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
index 4e1543b..fe452f0 100644
--- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
+++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
@@ -5,12 +5,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
 
 require gstreamer1.0-plugins-ti.inc
 
-PR = "${INC_PR}.17"
-SRCREV = "4fe4beaa1498e27878bf04020aef0099c17f2262"
+PR = "${INC_PR}.18"
+SRCREV = "a1fe1f3e3ae0582a4f84ae8fa7ca052fff2e9f76"
 
 SRC_URI = "git://git.ti.com/glsdk/gst-plugin-vpe.git;protocol=git \
            file://ti-video.conf \
-           file://0001-gstvpe-Populate-the-output-structure-with-progressiv.patch \
 "
 
 do_install_append() {
-- 
1.9.1



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

* [rocko V2 2/2] gst-ducati: Update SRCREV with latest commit
  2018-06-12  4:45 [rocko V2 0/2] gstreamer 1.12 patches Ramprasad N
  2018-06-12  4:45 ` [rocko V2 1/2] gstvpe: Bump SRCREV with latest fixes Ramprasad N
@ 2018-06-12  4:45 ` Ramprasad N
  2018-06-13  5:26   ` [EXTERNAL] " Karthik Ramanan
  2018-06-12 21:36 ` [rocko V2 0/2] gstreamer 1.12 patches Denys Dmytriyenko
  2 siblings, 1 reply; 8+ messages in thread
From: Ramprasad N @ 2018-06-12  4:45 UTC (permalink / raw)
  To: meta-arago

This update brings in setting display-delay property
for ducati h264decoder.

Signed-off-by: Ramprasad N <x0038811@ti.com>
---
 .../gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb                 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb
index 6c6a474..556dc31 100644
--- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb
+++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb
@@ -4,8 +4,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
 
 require gstreamer1.0-plugins-ti.inc
 
-PR = "${INC_PR}.28"
-SRCREV = "7f3326b81b838fb6c916acd1d6a3090fda12c772"
+PR = "${INC_PR}.29"
+SRCREV = "19e911bb45757d8341ffd7819ca783ca04f5e3b1"
 
 BRANCH ?= "master"
 
-- 
1.9.1



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

* Re: [rocko V2 0/2] gstreamer 1.12 patches
  2018-06-12  4:45 [rocko V2 0/2] gstreamer 1.12 patches Ramprasad N
  2018-06-12  4:45 ` [rocko V2 1/2] gstvpe: Bump SRCREV with latest fixes Ramprasad N
  2018-06-12  4:45 ` [rocko V2 2/2] gst-ducati: Update SRCREV with latest commit Ramprasad N
@ 2018-06-12 21:36 ` Denys Dmytriyenko
  2018-06-13  3:30   ` Prasad, Ram
  2 siblings, 1 reply; 8+ messages in thread
From: Denys Dmytriyenko @ 2018-06-12 21:36 UTC (permalink / raw)
  To: Ramprasad N; +Cc: meta-arago

Sorry for the delay.
What are the differences from v1?


On Tue, Jun 12, 2018 at 10:15:08AM +0530, Ramprasad N wrote:
> Update SRCREV of gst-vpe and gst-ducati with latest commits
> 
> Ramprasad N (2):
>   gstvpe: Bump SRCREV with latest fixes
>   gst-ducati: Update SRCREV with latest commit
> 
>  .../gstreamer1.0-plugins-ducati_git.bb             |  4 +--
>  ...late-the-output-structure-with-progressiv.patch | 33 ----------------------
>  .../gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb |  5 ++--
>  3 files changed, 4 insertions(+), 38 deletions(-)
>  delete mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
> 
> -- 
> 1.9.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [rocko V2 0/2] gstreamer 1.12 patches
  2018-06-12 21:36 ` [rocko V2 0/2] gstreamer 1.12 patches Denys Dmytriyenko
@ 2018-06-13  3:30   ` Prasad, Ram
  2018-06-13 15:01     ` Denys Dmytriyenko
  0 siblings, 1 reply; 8+ messages in thread
From: Prasad, Ram @ 2018-06-13  3:30 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago@arago-project.org

Hi Denys,
I updated meta-arago commit-messages in V2 with proper wordings so that it clearly tells what has changed. This is the only change wrt V1

Thanks
Ramprasad

-----Original Message-----
From: Dmytriyenko, Denys 
Sent: Wednesday, June 13, 2018 3:07 AM
To: Prasad, Ram
Cc: meta-arago@arago-project.org
Subject: Re: [meta-arago] [rocko V2 0/2] gstreamer 1.12 patches

Sorry for the delay.
What are the differences from v1?


On Tue, Jun 12, 2018 at 10:15:08AM +0530, Ramprasad N wrote:
> Update SRCREV of gst-vpe and gst-ducati with latest commits
> 
> Ramprasad N (2):
>   gstvpe: Bump SRCREV with latest fixes
>   gst-ducati: Update SRCREV with latest commit
> 
>  .../gstreamer1.0-plugins-ducati_git.bb             |  4 +--
>  ...late-the-output-structure-with-progressiv.patch | 33 ----------------------
>  .../gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb |  5 ++--
>  3 files changed, 4 insertions(+), 38 deletions(-)
>  delete mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
> 
> -- 
> 1.9.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

* Re: [EXTERNAL] [rocko V2 1/2] gstvpe: Bump SRCREV with latest fixes
  2018-06-12  4:45 ` [rocko V2 1/2] gstvpe: Bump SRCREV with latest fixes Ramprasad N
@ 2018-06-13  5:26   ` Karthik Ramanan
  0 siblings, 0 replies; 8+ messages in thread
From: Karthik Ramanan @ 2018-06-13  5:26 UTC (permalink / raw)
  To: Ramprasad N, meta-arago

Acked-by: Karthik Ramanan <a0393906@ti.com>


On 12-Jun-18 10:15 AM, Ramprasad N wrote:
> This update brings in following fixes
> * Set "Progressive" in output caps to avoid memcpy
> * Set vpe in process mode for progressive streams
>    to avoid OOM issues
>
> Remove the redeundant patch from the recipe
>
> Signed-off-by: Ramprasad N <x0038811@ti.com>
> ---
>   ...late-the-output-structure-with-progressiv.patch | 33 ----------------------
>   .../gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb |  5 ++--
>   2 files changed, 2 insertions(+), 36 deletions(-)
>   delete mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
>
> diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
> deleted file mode 100644
> index 3f35302..0000000
> --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
> +++ /dev/null
> @@ -1,33 +0,0 @@
> -From 4a8ae45e17e1e2d6299353cc871e9427617fa12d Mon Sep 17 00:00:00 2001
> -From: Ramprasad N <x0038811@ti.com>
> -Date: Tue, 20 Mar 2018 19:05:18 +0530
> -Subject: [PATCH] gstvpe: Populate the output structure with progressive
> -
> -playbin shows performance drop with waylandsink due
> -to frame-copy of frame buffers. The caps between vpe and
> -videoconverter don't match hence this results in frame-copy.
> -By setting the interlace-mode capabilities match and
> -all components will be configured to pass through mode.
> -
> -Signed-off-by: Ramprasad N <x0038811@ti.com>
> ----
> - src/gstvpe.c | 3 +++
> - 1 file changed, 3 insertions(+)
> -
> -diff --git a/src/gstvpe.c b/src/gstvpe.c
> -index d795d4c..219e5e3 100644
> ---- a/src/gstvpe.c
> -+++ b/src/gstvpe.c
> -@@ -237,6 +237,9 @@ gst_vpe_set_output_caps (GstVpe * self)
> -       "width", G_TYPE_INT, self->output_width,
> -       "height", G_TYPE_INT, self->output_height, NULL);
> -
> -+  gst_structure_set (out_s, "interlace-mode", G_TYPE_STRING,
> -+                   "progressive", NULL);
> -+
> -   if (gst_structure_get_fraction (s, "pixel-aspect-ratio",
> -           &par_width, &par_height))
> -     gst_structure_set (out_s, "pixel-aspect-ratio", GST_TYPE_FRACTION,
> ---
> -1.9.1
> -
> diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
> index 4e1543b..fe452f0 100644
> --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
> +++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb
> @@ -5,12 +5,11 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
>   
>   require gstreamer1.0-plugins-ti.inc
>   
> -PR = "${INC_PR}.17"
> -SRCREV = "4fe4beaa1498e27878bf04020aef0099c17f2262"
> +PR = "${INC_PR}.18"
> +SRCREV = "a1fe1f3e3ae0582a4f84ae8fa7ca052fff2e9f76"
>   
>   SRC_URI = "git://git.ti.com/glsdk/gst-plugin-vpe.git;protocol=git \
>              file://ti-video.conf \
> -           file://0001-gstvpe-Populate-the-output-structure-with-progressiv.patch \
>   "
>   
>   do_install_append() {



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

* Re: [EXTERNAL] [rocko V2 2/2] gst-ducati: Update SRCREV with latest commit
  2018-06-12  4:45 ` [rocko V2 2/2] gst-ducati: Update SRCREV with latest commit Ramprasad N
@ 2018-06-13  5:26   ` Karthik Ramanan
  0 siblings, 0 replies; 8+ messages in thread
From: Karthik Ramanan @ 2018-06-13  5:26 UTC (permalink / raw)
  To: Ramprasad N, meta-arago

Acked-by: Karthik Ramanan <a0393906@ti.com>


On 12-Jun-18 10:15 AM, Ramprasad N wrote:
> This update brings in setting display-delay property
> for ducati h264decoder.
>
> Signed-off-by: Ramprasad N <x0038811@ti.com>
> ---
>   .../gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb                 | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb
> index 6c6a474..556dc31 100644
> --- a/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb
> +++ b/meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-ducati_git.bb
> @@ -4,8 +4,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
>   
>   require gstreamer1.0-plugins-ti.inc
>   
> -PR = "${INC_PR}.28"
> -SRCREV = "7f3326b81b838fb6c916acd1d6a3090fda12c772"
> +PR = "${INC_PR}.29"
> +SRCREV = "19e911bb45757d8341ffd7819ca783ca04f5e3b1"
>   
>   BRANCH ?= "master"
>   



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

* Re: [rocko V2 0/2] gstreamer 1.12 patches
  2018-06-13  3:30   ` Prasad, Ram
@ 2018-06-13 15:01     ` Denys Dmytriyenko
  0 siblings, 0 replies; 8+ messages in thread
From: Denys Dmytriyenko @ 2018-06-13 15:01 UTC (permalink / raw)
  To: Prasad, Ram; +Cc: meta-arago@arago-project.org

Thanks, merged.

On Tue, Jun 12, 2018 at 11:30:14PM -0400, Prasad, Ram wrote:
> Hi Denys,
> I updated meta-arago commit-messages in V2 with proper wordings so that it 
> clearly tells what has changed. This is the only change wrt V1
> 
> Thanks
> Ramprasad
> 
> -----Original Message-----
> From: Dmytriyenko, Denys 
> Sent: Wednesday, June 13, 2018 3:07 AM
> To: Prasad, Ram
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [rocko V2 0/2] gstreamer 1.12 patches
> 
> Sorry for the delay.
> What are the differences from v1?
> 
> 
> On Tue, Jun 12, 2018 at 10:15:08AM +0530, Ramprasad N wrote:
> > Update SRCREV of gst-vpe and gst-ducati with latest commits
> > 
> > Ramprasad N (2):
> >   gstvpe: Bump SRCREV with latest fixes
> >   gst-ducati: Update SRCREV with latest commit
> > 
> >  .../gstreamer1.0-plugins-ducati_git.bb             |  4 +--
> >  ...late-the-output-structure-with-progressiv.patch | 33 ----------------------
> >  .../gst-plugins-ti/gstreamer1.0-plugins-vpe_git.bb |  5 ++--
> >  3 files changed, 4 insertions(+), 38 deletions(-)
> >  delete mode 100644 meta-arago-extras/recipes-multimedia/gst-plugins-ti/gstreamer1.0-plugins-vpe/0001-gstvpe-Populate-the-output-structure-with-progressiv.patch
> > 
> > -- 
> > 1.9.1
> > 
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


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

end of thread, other threads:[~2018-06-13 15:03 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-12  4:45 [rocko V2 0/2] gstreamer 1.12 patches Ramprasad N
2018-06-12  4:45 ` [rocko V2 1/2] gstvpe: Bump SRCREV with latest fixes Ramprasad N
2018-06-13  5:26   ` [EXTERNAL] " Karthik Ramanan
2018-06-12  4:45 ` [rocko V2 2/2] gst-ducati: Update SRCREV with latest commit Ramprasad N
2018-06-13  5:26   ` [EXTERNAL] " Karthik Ramanan
2018-06-12 21:36 ` [rocko V2 0/2] gstreamer 1.12 patches Denys Dmytriyenko
2018-06-13  3:30   ` Prasad, Ram
2018-06-13 15:01     ` Denys Dmytriyenko

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.