All of lore.kernel.org
 help / color / mirror / Atom feed
From: Carlos Rafael Giani <dv@pseudoterminal.org>
To: Yuqing Zhu <b54851@freescale.com>, meta-freescale@yoctoproject.org
Subject: Re: [meta-fsl-arm][PATCH v4 1/4] gstreamer1.0-plugins-base: Add gstplaybin related patch
Date: Wed, 05 Aug 2015 22:32:46 +0200	[thread overview]
Message-ID: <55C272EE.6040908@pseudoterminal.org> (raw)
In-Reply-To: <1438282514-12741-2-git-send-email-b54851@freescale.com>

This patch looks generally OK to me.

The pango packageconfig could probably even be added to the 
gstreamer1.0-plugins-base.inc file in OE-core, since pango is present in 
OE-core. In fact, I don't know why it isn't already included in the 
default packageconfig of gstreamer1.0-plugins-base. But why do you view 
pango as mx6/mx7 specific?

Am 2015-07-30 um 20:55 schrieb Yuqing Zhu:
> -Remove default deinterlace flag in playbin for i.MX s/5/6/7 SoCs.
>
> -Remove native video flag in playbin for i.MX s/5/6/7 SoCs because it will cause subtitle error.
>
> -Enable pango plugin to generate texture of the video movie.
>   It is the specific feature for i.MX 6/7 SoCs.
>
> Signed-off-by: Yuqing Zhu <b54851@freescale.com>
> ---
>   ...deo.patch => gstplaybin-remove-flag-deinterlace.patch} | 10 +++++-----
>   .../gstreamer/gstreamer1.0-plugins-base_%.bbappend        | 15 +++++++++++----
>   2 files changed, 16 insertions(+), 9 deletions(-)
>   rename recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/{gstplaybin-enable-native-video.patch => gstplaybin-remove-flag-deinterlace.patch} (79%)
>
> diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/gstplaybin-enable-native-video.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/gstplaybin-remove-flag-deinterlace.patch
> similarity index 79%
> rename from recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/gstplaybin-enable-native-video.patch
> rename to recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/gstplaybin-remove-flag-deinterlace.patch
> index 15322bd..f237776 100644
> --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/gstplaybin-enable-native-video.patch
> +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base/gstplaybin-remove-flag-deinterlace.patch
> @@ -1,11 +1,11 @@
>   From 9cfb86cd100904f0ef2626f348695bd2d3416c6a Mon Sep 17 00:00:00 2001
>   From: Jian Li <jian.li@freescale.com>
>   Date: Mon, 23 Jun 2014 14:14:07 +0800
> -Subject: [PATCH] gstplaybin enable native video
> +Subject: [PATCH] gstplaybin remove default deinterlace flag
>   
> -- use native video patch in playbin for i.MX SoCs
> +- remove default deinterlace flag in playbin for i.MX SoCs
>   
> -Upstream Status: Inappropriate [platform specific]
> +Upstream-Status: Inappropriate [platform specific]
>   
>   Signed-off-by: Jian Li <jian.li@freescale.com>
>   ---
> @@ -22,10 +22,10 @@ index fc02ca3..c342438 100644
>    #define DEFAULT_FLAGS             GST_PLAY_FLAG_AUDIO | GST_PLAY_FLAG_VIDEO | GST_PLAY_FLAG_TEXT | \
>   -                                  GST_PLAY_FLAG_SOFT_VOLUME | GST_PLAY_FLAG_DEINTERLACE | \
>   -                                  GST_PLAY_FLAG_SOFT_COLORBALANCE
> -+                                  GST_PLAY_FLAG_SOFT_VOLUME | GST_PLAY_FLAG_NATIVE_VIDEO
> ++                                  GST_PLAY_FLAG_SOFT_VOLUME
>    #define DEFAULT_N_VIDEO           0
>    #define DEFAULT_CURRENT_VIDEO     -1
>    #define DEFAULT_N_AUDIO           0
> ---
> +--
>   1.7.9.5
>   
> diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_%.bbappend b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_%.bbappend
> index 5b939d4..e7e148e 100644
> --- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_%.bbappend
> +++ b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-base_%.bbappend
> @@ -1,9 +1,16 @@
> -
>   FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
>   
> -SRC_URI_append_mxs = " file://gstplaybin-enable-native-video.patch"
> -SRC_URI_append_mx5 = " file://gstplaybin-enable-native-video.patch"
> -SRC_URI_append_mx6 = " file://gstplaybin-enable-native-video.patch"
> +SRC_URI_append_mxs = " file://gstplaybin-remove-flag-deinterlace.patch"
> +SRC_URI_append_mx5 = " file://gstplaybin-remove-flag-deinterlace.patch"
> +IMX_PATCHES = " file://gstplaybin-remove-flag-deinterlace.patch"
> +
> +
> +SRC_URI_append_mx6 = "${IMX_PATCHES}"
> +SRC_URI_append_mx7 = "${IMX_PATCHES}"
> +
> +# Enable pango lib for i.MX 6/7 SoCs
> +PACKAGECONFIG_append_mx6 = " pango "
> +PACKAGECONFIG_append_mx7 = " pango "
>   
>   PACKAGE_ARCH_mxs = "${MACHINE_SOCARCH}"
>   PACKAGE_ARCH_mx5 = "${MACHINE_SOCARCH}"



  reply	other threads:[~2015-08-05 20:32 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-30 18:55 [meta-fsl-arm][PATCH v4 0/4] 3.14.38-6QP_Beta release Yuqing Zhu
2015-07-30 18:55 ` [meta-fsl-arm][PATCH v4 1/4] gstreamer1.0-plugins-base: Add gstplaybin related patch Yuqing Zhu
2015-08-05 20:32   ` Carlos Rafael Giani [this message]
2015-08-05 20:35     ` Otavio Salvador
2015-08-05 20:44       ` Carlos Rafael Giani
2015-08-05 21:00         ` Carlos Rafael Giani
2015-08-05 21:06           ` Otavio Salvador
2015-07-30 18:55 ` [meta-fsl-arm][PATCH v4 2/4] gstreamer1.0-plugins-base: Add ssaparse " Yuqing Zhu
2015-08-05 20:36   ` Carlos Rafael Giani
2015-07-30 18:55 ` [meta-fsl-arm][PATCH v4 3/4] gstreamer1.0-plugins-base: Add subparse " Yuqing Zhu
2015-08-05 20:40   ` Carlos Rafael Giani
2015-07-30 18:55 ` [meta-fsl-arm][PATCH v5 4/4] gstreamer1.0-plugins-base: Add encodebin " Yuqing Zhu
2015-08-05 20:42   ` Carlos Rafael Giani

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=55C272EE.6040908@pseudoterminal.org \
    --to=dv@pseudoterminal.org \
    --cc=b54851@freescale.com \
    --cc=meta-freescale@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.