From: Gary Bisson <bisson.gary@gmail.com>
To: meta-freescale@yoctoproject.org
Cc: Gary Bisson <bisson.gary@gmail.com>
Subject: [meta-fsl-arm][PATCH] gst-fsl-plugin: fix build for kernel headers >= 3.10
Date: Sun, 27 Jul 2014 16:05:03 -0700 [thread overview]
Message-ID: <1406502303-18653-1-git-send-email-bisson.gary@gmail.com> (raw)
This package couldn't build using a toolchain with kernel headers >=
3.10 because of the use of VIDIOC_DBG_G_CHIP_IDENT. As stated in
videodev2.h, this ioctl should never be used.
---
Hi all,
It has been reported that this package couldn't be built using a recent
toolchain such as CodeSourcery 2013.11 as its kernel headers are > 3.10.
After looking at the source code it appears it comes from the use of
VIDIOC_DBG_G_CHIP_IDENT ioctl. Also, nothing justifies the use of that
obsolete ioctl. Its only purpose is to get the video device name so this
patch actually removes those unnecessary calls.
It'd be great to have those call removed on next package release.
Thanks,
Gary
---
recipes-multimedia/gstreamer/gst-fsl-plugin.inc | 3 +-
...e-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch | 69 ++++++++++++++++++++++
2 files changed, 71 insertions(+), 1 deletion(-)
create mode 100644 recipes-multimedia/gstreamer/gst-fsl-plugin/Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
diff --git a/recipes-multimedia/gstreamer/gst-fsl-plugin.inc b/recipes-multimedia/gstreamer/gst-fsl-plugin.inc
index dca9209..f8685bc 100644
--- a/recipes-multimedia/gstreamer/gst-fsl-plugin.inc
+++ b/recipes-multimedia/gstreamer/gst-fsl-plugin.inc
@@ -19,7 +19,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552 \
S = "${WORKDIR}/gst-fsl-plugins-${PV}"
SRC_URI = "${FSL_MIRROR}/gst-fsl-plugins-${PV}.tar.gz \
- file://build-Fix-out-of-tree-build.patch"
+ file://build-Fix-out-of-tree-build.patch \
+ file://Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch"
inherit autotools pkgconfig
diff --git a/recipes-multimedia/gstreamer/gst-fsl-plugin/Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch b/recipes-multimedia/gstreamer/gst-fsl-plugin/Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
new file mode 100644
index 0000000..5635275
--- /dev/null
+++ b/recipes-multimedia/gstreamer/gst-fsl-plugin/Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
@@ -0,0 +1,69 @@
+From ce90794a3458af0aed43b8570cf44cd87900185d Mon Sep 17 00:00:00 2001
+From: Gary Bisson <bisson.gary@gmail.com>
+Date: Fri, 25 Jul 2014 16:44:53 -0700
+Subject: [PATCH] Remove use of obsolete VIDIOC_DBG_G_CHIP_IDENT
+
+This ioctl should never be used in application as
+stated in videodev2.h header.
+Moreover, its use in this plugin was very limited.
+
+Signed-off-by: Gary Bisson <bisson.gary@gmail.com>
+---
+ src/misc/tvsrc/src/mfw_gst_tvsrc.c | 8 --------
+ src/misc/v4l_source/src/mfw_gst_v4lsrc.c | 7 -------
+ 2 files changed, 15 deletions(-)
+
+diff --git a/src/misc/tvsrc/src/mfw_gst_tvsrc.c b/src/misc/tvsrc/src/mfw_gst_tvsrc.c
+index 67e0cd2..f495b6f 100755
+--- a/src/misc/tvsrc/src/mfw_gst_tvsrc.c
++++ b/src/misc/tvsrc/src/mfw_gst_tvsrc.c
+@@ -450,7 +450,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src)
+ struct v4l2_format fmt;
+ struct v4l2_control ctrl;
+ struct v4l2_streamparm parm;
+- struct v4l2_dbg_chip_ident chip;
+ gint fd_v4l = 0;
+ struct v4l2_mxc_offset off;
+ gint in_width = 0, in_height = 0;
+@@ -461,13 +460,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src)
+ return 0;
+ }
+
+- if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) {
+- g_print ("VIDIOC_DBG_G_CHIP_IDENT failed.\n");
+- } else
+- g_print ("sensor chip is %s\n", chip.match.name);
+-
+-
+-
+ if (ioctl (fd_v4l, VIDIOC_G_STD, &id) < 0) {
+ g_print ("VIDIOC_G_STD failed\n");
+ close (fd_v4l);
+diff --git a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
+index 2c2e838..85e7ff0 100755
+--- a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
++++ b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c
+@@ -464,7 +464,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src)
+ struct v4l2_format fmt = {0};
+ struct v4l2_control ctrl = {0};
+ struct v4l2_streamparm parm = {0};
+- struct v4l2_dbg_chip_ident chip = {0};
+ struct v4l2_frmsizeenum fszenum = {0};
+ gint input;
+ gint fd_v4l = 0;
+@@ -476,12 +475,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src)
+ return 0;
+ }
+
+- if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) {
+- GST_ERROR ("VIDIOC_DBG_G_CHIP_IDENT failed.");
+- } else
+- GST_INFO ("sensor chip is %s", chip.match.name);
+-
+-
+ if (v4l_src->crop_pixel) {
+ in_width = v4l_src->capture_width - (2 * v4l_src->crop_pixel);
+ in_height = v4l_src->capture_height - (2 * v4l_src->crop_pixel);
+--
+2.0.1
+
--
2.0.1
next reply other threads:[~2014-07-27 23:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-27 23:05 Gary Bisson [this message]
2014-07-28 21:51 ` [meta-fsl-arm][PATCH] gst-fsl-plugin: fix build for kernel headers >= 3.10 Otavio Salvador
2014-07-29 14:38 ` Lauren Post
2014-07-29 15:00 ` Otavio Salvador
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=1406502303-18653-1-git-send-email-bisson.gary@gmail.com \
--to=bisson.gary@gmail.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.