mirror of
https://git.yoctoproject.org/poky
synced 2026-03-19 21:59:42 +01:00
gstreamer1.0-vaapi: backport jpeg encode/decode fixes
Backport patches from 1.15 to fix JPEG encode/decode issues when using VAAPI with Intel media-driver. See for details: https://bugzilla.gnome.org/show_bug.cgi?id=796705 https://bugzilla.gnome.org/show_bug.cgi?id=796505 (From OE-Core rev: 507135276293287deed972d49feed511c21391a0) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
a5528d9010
commit
6bf811e9bd
@@ -0,0 +1,45 @@
|
||||
From bb8894aaf934b3af4d44cf54e860510fe4d615b3 Mon Sep 17 00:00:00 2001
|
||||
From: Tianhao Liu <tianhao.liu@intel.com>
|
||||
Date: Thu, 7 Jun 2018 09:34:11 +0800
|
||||
Subject: [PATCH] libs: decoder: release VA buffers after vaEndPicture
|
||||
|
||||
This change is due a problem decoding JPEGs with Intel's media-driver:
|
||||
no image was generated.
|
||||
|
||||
This patch relases the VA buffers after vaEndPicture() is called,
|
||||
and not before (after vaRenderPicture()).
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=796505
|
||||
|
||||
Upstream-Status: Backport [https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/commit/bb8894aaf934b3af4d44cf54e860510fe4d615b3]
|
||||
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
||||
---
|
||||
gst-libs/gst/vaapi/gstvaapidecoder_objects.c | 7 ++++++-
|
||||
1 file changed, 6 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_objects.c b/gst-libs/gst/vaapi/gstvaapidecoder_objects.c
|
||||
index 20d4f55..2dd4c27 100644
|
||||
--- a/gst-libs/gst/vaapi/gstvaapidecoder_objects.c
|
||||
+++ b/gst-libs/gst/vaapi/gstvaapidecoder_objects.c
|
||||
@@ -304,12 +304,17 @@ gst_vaapi_picture_decode (GstVaapiPicture * picture)
|
||||
status = vaRenderPicture (va_display, va_context, va_buffers, 2);
|
||||
if (!vaapi_check_status (status, "vaRenderPicture()"))
|
||||
return FALSE;
|
||||
+ }
|
||||
+
|
||||
+ status = vaEndPicture (va_display, va_context);
|
||||
+
|
||||
+ for (i = 0; i < picture->slices->len; i++) {
|
||||
+ GstVaapiSlice *const slice = g_ptr_array_index (picture->slices, i);
|
||||
|
||||
vaapi_destroy_buffer (va_display, &slice->param_id);
|
||||
vaapi_destroy_buffer (va_display, &slice->data_id);
|
||||
}
|
||||
|
||||
- status = vaEndPicture (va_display, va_context);
|
||||
if (!vaapi_check_status (status, "vaEndPicture()"))
|
||||
return FALSE;
|
||||
return TRUE;
|
||||
--
|
||||
2.7.4
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
From f5eb4faa5914f3745820e557ac2401a7d738be66 Mon Sep 17 00:00:00 2001
|
||||
From: Tianhao Liu <tianhao.liu@intel.com>
|
||||
Date: Wed, 4 Jul 2018 12:51:10 +0800
|
||||
Subject: [PATCH] libs: encoder: jpeg: set component id and Tqi
|
||||
|
||||
This change is due a problem encoding JPEGs with Intel's
|
||||
media-driver: green/black image when playback jpeg
|
||||
|
||||
This patch sets component identifier and quantization table
|
||||
destination selector in frame header to support packing headers
|
||||
by Intel's media-driver that does not accept packed header
|
||||
in AP level.
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=796705
|
||||
|
||||
Upstream-Status: Backport [https://gitlab.freedesktop.org/gstreamer/gstreamer-vaapi/commit/f5eb4faa5914f3745820e557ac2401a7d738be66]
|
||||
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
|
||||
---
|
||||
gst-libs/gst/vaapi/gstvaapiencoder_jpeg.c | 14 +++++++++-----
|
||||
1 file changed, 9 insertions(+), 5 deletions(-)
|
||||
|
||||
diff --git a/gst-libs/gst/vaapi/gstvaapiencoder_jpeg.c b/gst-libs/gst/vaapi/gstvaapiencoder_jpeg.c
|
||||
index b3f409d..8491fbc 100644
|
||||
--- a/gst-libs/gst/vaapi/gstvaapiencoder_jpeg.c
|
||||
+++ b/gst-libs/gst/vaapi/gstvaapiencoder_jpeg.c
|
||||
@@ -205,6 +205,7 @@ fill_picture (GstVaapiEncoderJpeg * encoder,
|
||||
GstVaapiEncPicture * picture,
|
||||
GstVaapiCodedBuffer * codedbuf, GstVaapiSurfaceProxy * surface)
|
||||
{
|
||||
+ guint i;
|
||||
VAEncPictureParameterBufferJPEG *const pic_param = picture->param;
|
||||
|
||||
memset (pic_param, 0, sizeof (VAEncPictureParameterBufferJPEG));
|
||||
@@ -224,6 +225,11 @@ fill_picture (GstVaapiEncoderJpeg * encoder,
|
||||
pic_param->num_scan = 1;
|
||||
pic_param->num_components = encoder->n_components;
|
||||
pic_param->quality = encoder->quality;
|
||||
+ for (i = 0; i < pic_param->num_components; i++) {
|
||||
+ pic_param->component_id[i] = i + 1;
|
||||
+ if (i != 0)
|
||||
+ pic_param->quantiser_table_selector[i] = 1;
|
||||
+ }
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@@ -437,13 +443,11 @@ generate_frame_hdr (GstJpegFrameHdr * frame_hdr, GstVaapiEncoderJpeg * encoder,
|
||||
frame_hdr->num_components = pic_param->num_components;
|
||||
|
||||
for (i = 0; i < frame_hdr->num_components; i++) {
|
||||
- frame_hdr->components[i].identifier = i + 1;
|
||||
+ frame_hdr->components[i].identifier = pic_param->component_id[i];
|
||||
frame_hdr->components[i].horizontal_factor = encoder->h_samp[i];
|
||||
frame_hdr->components[i].vertical_factor = encoder->v_samp[i];
|
||||
- if (i == 0)
|
||||
- frame_hdr->components[i].quant_table_selector = 0;
|
||||
- else
|
||||
- frame_hdr->components[i].quant_table_selector = 1;
|
||||
+ frame_hdr->components[i].quant_table_selector =
|
||||
+ pic_param->quantiser_table_selector[i];
|
||||
}
|
||||
}
|
||||
|
||||
--
|
||||
2.7.4
|
||||
|
||||
@@ -11,6 +11,8 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c"
|
||||
SRC_URI = "https://gstreamer.freedesktop.org/src/${REALPN}/${REALPN}-${PV}.tar.xz \
|
||||
file://0001-gst-vaapi-Makefile.am-Add-EGL_CFLAGS-to-libgstvaapi-.patch \
|
||||
file://0001-vaapsink-downgrade-to-marginal.patch \
|
||||
file://0001-libs-encoder-jpeg-set-component-id-and-Tqi.patch \
|
||||
file://0001-libs-decoder-release-VA-buffers-after-vaEndPicture.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "2fae3442f5f23e7354a0c592bc7b9065"
|
||||
|
||||
Reference in New Issue
Block a user