summaryrefslogtreecommitdiff
path: root/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0019-Add-implement-of-interface-get_phys_addr-to-support-.patch
diff options
context:
space:
mode:
authorMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-06-20 16:52:30 +0200
committerMarcel Ziswiler <marcel.ziswiler@toradex.com>2018-06-20 16:52:30 +0200
commit97af9b54157142f500c0322b49e669d893768850 (patch)
treee19216da2dc490aa5504c6dd45b2983c4633bc9f /recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0019-Add-implement-of-interface-get_phys_addr-to-support-.patch
parent1ea27c0e94885dfe703dafd49fe42a40a180554a (diff)
Revert "imx-gst1.0-plugin: Add v4.3.1 and NXP specific gstreamer1.0 patches"
This resp. a later version got recently pulled into the rocko branch of meta-freescale. This reverts commit 5faa79028eead21680d490a1b589a3875f966e0e.
Diffstat (limited to 'recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0019-Add-implement-of-interface-get_phys_addr-to-support-.patch')
-rw-r--r--recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0019-Add-implement-of-interface-get_phys_addr-to-support-.patch48
1 files changed, 0 insertions, 48 deletions
diff --git a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0019-Add-implement-of-interface-get_phys_addr-to-support-.patch b/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0019-Add-implement-of-interface-get_phys_addr-to-support-.patch
deleted file mode 100644
index 2aead8d..0000000
--- a/recipes-multimedia/gstreamer/gstreamer1.0-plugins-bad/0019-Add-implement-of-interface-get_phys_addr-to-support-.patch
+++ /dev/null
@@ -1,48 +0,0 @@
-From ccbb5a40d9260e63fbf87c737adb05102c82fbb3 Mon Sep 17 00:00:00 2001
-From: Haihua Hu <jared.hu@nxp.com>
-Date: Mon, 22 May 2017 13:38:05 +0800
-Subject: [PATCH 19/26] Add implement of interface "get_phys_addr" to support
- directviv upload
-
-Upstream-Status: Inappropriate [i.MX specific]
----
- gst-libs/gst/allocators/gstallocatorphymem.c | 16 +++++++++++++++-
- 1 file changed, 15 insertions(+), 1 deletion(-)
-
-diff --git a/gst-libs/gst/allocators/gstallocatorphymem.c b/gst-libs/gst/allocators/gstallocatorphymem.c
-index cf5995e..d128b83 100755
---- a/gst-libs/gst/allocators/gstallocatorphymem.c
-+++ b/gst-libs/gst/allocators/gstallocatorphymem.c
-@@ -20,6 +20,7 @@
- #include <stdio.h>
- #include <string.h>
- #include "gstallocatorphymem.h"
-+#include "gstphysmemory.h"
-
- typedef struct {
- GstMemory mem;
-@@ -212,7 +213,20 @@ default_free (GstAllocatorPhyMem *allocator, PhyMemBlock *phy_mem)
- return -1;
- }
-
--G_DEFINE_TYPE (GstAllocatorPhyMem, gst_allocator_phymem, GST_TYPE_ALLOCATOR);
-+static guintptr
-+gst_allocator_phymem_get_phys_addr (GstPhysMemoryAllocator *allocator, GstMemory *mem)
-+{
-+ return gst_phymem_get_phy (mem);
-+}
-+
-+static void gst_allocator_phymem_iface_init(gpointer g_iface)
-+{
-+ GstPhysMemoryAllocatorInterface *iface = g_iface;
-+ iface->get_phys_addr = gst_allocator_phymem_get_phys_addr;
-+}
-+
-+G_DEFINE_TYPE_WITH_CODE (GstAllocatorPhyMem, gst_allocator_phymem, GST_TYPE_ALLOCATOR,
-+ G_IMPLEMENT_INTERFACE(GST_TYPE_PHYS_MEMORY_ALLOCATOR, gst_allocator_phymem_iface_init));
-
- static void
- gst_allocator_phymem_class_init (GstAllocatorPhyMemClass * klass)
---
-1.9.1
-