summaryrefslogtreecommitdiffstats
path: root/common/recipes-multimedia/gstreamer/gstreamer-vaapi/0001-decoder-h265-Fix-offset-calculation-in-codec_data-pa.patch
diff options
context:
space:
mode:
Diffstat (limited to 'common/recipes-multimedia/gstreamer/gstreamer-vaapi/0001-decoder-h265-Fix-offset-calculation-in-codec_data-pa.patch')
-rw-r--r--common/recipes-multimedia/gstreamer/gstreamer-vaapi/0001-decoder-h265-Fix-offset-calculation-in-codec_data-pa.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/common/recipes-multimedia/gstreamer/gstreamer-vaapi/0001-decoder-h265-Fix-offset-calculation-in-codec_data-pa.patch b/common/recipes-multimedia/gstreamer/gstreamer-vaapi/0001-decoder-h265-Fix-offset-calculation-in-codec_data-pa.patch
deleted file mode 100644
index 92a6f083..00000000
--- a/common/recipes-multimedia/gstreamer/gstreamer-vaapi/0001-decoder-h265-Fix-offset-calculation-in-codec_data-pa.patch
+++ /dev/null
@@ -1,31 +0,0 @@
1From dd227da41e953e79c8e05cd6f838a0e267d2d9b5 Mon Sep 17 00:00:00 2001
2From: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
3Date: Fri, 11 Mar 2016 17:44:07 +0200
4Subject: [PATCH] decoder: h265: Fix offset calculation in codec_data parsing
5
6Upstream-status: Backport
7
8https://bugzilla.gnome.org/show_bug.cgi?id=762922
9
10Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
11Signed-off-by: Azril Ahmad <mohd.azril.ahmad@intel.com>
12Signed-off-by: Chang Rebecca Swee Fun <rebecca.swee.fun.chang@intel.com>
13---
14 gst-libs/gst/vaapi/gstvaapidecoder_h265.c | 1 +
15 1 file changed, 1 insertion(+)
16
17diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_h265.c b/gst-libs/gst/vaapi/gstvaapidecoder_h265.c
18index 3c5a9d9..fd8250a 100644
19--- a/gst-libs/gst/vaapi/gstvaapidecoder_h265.c
20+++ b/gst-libs/gst/vaapi/gstvaapidecoder_h265.c
21@@ -2688,6 +2688,7 @@ gst_vaapi_decoder_h265_decode_codec_data (GstVaapiDecoder *
22 goto cleanup;
23 break;
24 }
25+ ofs = pi->nalu.offset + pi->nalu.size;
26 gst_vaapi_parser_info_h265_replace (&pi, NULL);
27 }
28 }
29--
301.9.1
31