2010-04-29 17:55:58 +00:00
|
|
|
/*
|
|
|
|
* gstvaapidecode.c - VA-API video decoder
|
|
|
|
*
|
2012-01-16 09:41:10 +00:00
|
|
|
* Copyright (C) 2010-2011 Splitted-Desktop Systems
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@splitted-desktop.com>
|
2014-01-22 17:54:14 +00:00
|
|
|
* Copyright (C) 2011-2014 Intel Corporation
|
2013-11-22 04:57:18 +00:00
|
|
|
* Author: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
|
2010-04-29 17:55:58 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
2010-04-29 17:55:58 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2010-04-29 17:55:58 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-10-18 07:06:52 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2010-04-29 17:55:58 +00:00
|
|
|
*
|
2011-10-18 07:06:52 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2010-04-29 17:55:58 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gstvaapidecode
|
|
|
|
* @short_description: A VA-API based video decoder
|
|
|
|
*
|
|
|
|
* vaapidecode decodes from raw bitstreams to surfaces suitable for
|
|
|
|
* the vaapisink element.
|
|
|
|
*/
|
|
|
|
|
2015-04-03 14:08:30 +00:00
|
|
|
#include "gstcompat.h"
|
2011-11-04 20:50:15 +00:00
|
|
|
#include <gst/vaapi/gstvaapidisplay.h>
|
|
|
|
|
|
|
|
#include "gstvaapidecode.h"
|
|
|
|
#include "gstvaapipluginutil.h"
|
2013-03-21 16:17:53 +00:00
|
|
|
#include "gstvaapivideobuffer.h"
|
2015-04-03 14:09:08 +00:00
|
|
|
#if (USE_GLX || USE_EGL)
|
2013-07-15 11:41:00 +00:00
|
|
|
#include "gstvaapivideometa_texture.h"
|
|
|
|
#endif
|
2012-11-08 14:41:22 +00:00
|
|
|
#include "gstvaapivideobufferpool.h"
|
|
|
|
#include "gstvaapivideomemory.h"
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2012-07-19 15:16:28 +00:00
|
|
|
#include <gst/vaapi/gstvaapidecoder_h264.h>
|
|
|
|
#include <gst/vaapi/gstvaapidecoder_jpeg.h>
|
|
|
|
#include <gst/vaapi/gstvaapidecoder_mpeg2.h>
|
|
|
|
#include <gst/vaapi/gstvaapidecoder_mpeg4.h>
|
|
|
|
#include <gst/vaapi/gstvaapidecoder_vc1.h>
|
2013-12-26 23:18:24 +00:00
|
|
|
#include <gst/vaapi/gstvaapidecoder_vp8.h>
|
2015-04-13 12:43:30 +00:00
|
|
|
#include <gst/vaapi/gstvaapidecoder_h265.h>
|
2011-08-12 08:21:19 +00:00
|
|
|
|
2010-04-29 17:55:58 +00:00
|
|
|
#define GST_PLUGIN_NAME "vaapidecode"
|
|
|
|
#define GST_PLUGIN_DESC "A VA-API based video decoder"
|
|
|
|
|
2014-06-18 11:47:36 +00:00
|
|
|
#define GST_VAAPI_DECODE_FLOW_PARSE_DATA GST_FLOW_CUSTOM_SUCCESS_2
|
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
GST_DEBUG_CATEGORY_STATIC (gst_debug_vaapidecode);
|
2010-04-29 17:55:58 +00:00
|
|
|
#define GST_CAT_DEFAULT gst_debug_vaapidecode
|
|
|
|
|
|
|
|
/* Default templates */
|
2011-09-14 11:07:18 +00:00
|
|
|
#define GST_CAPS_CODEC(CODEC) CODEC "; "
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* *INDENT-OFF* */
|
2010-04-29 17:55:58 +00:00
|
|
|
static const char gst_vaapidecode_sink_caps_str[] =
|
2011-09-14 09:34:05 +00:00
|
|
|
GST_CAPS_CODEC("video/mpeg, mpegversion=2, systemstream=(boolean)false")
|
2010-04-29 17:55:58 +00:00
|
|
|
GST_CAPS_CODEC("video/mpeg, mpegversion=4")
|
2010-05-03 17:36:01 +00:00
|
|
|
GST_CAPS_CODEC("video/x-divx")
|
|
|
|
GST_CAPS_CODEC("video/x-xvid")
|
2010-04-29 17:55:58 +00:00
|
|
|
GST_CAPS_CODEC("video/x-h263")
|
|
|
|
GST_CAPS_CODEC("video/x-h264")
|
2015-05-04 12:24:43 +00:00
|
|
|
#if USE_HEVC_DECODER
|
2015-04-13 12:43:30 +00:00
|
|
|
GST_CAPS_CODEC("video/x-h265")
|
2015-05-04 12:24:43 +00:00
|
|
|
#endif
|
2010-05-03 11:44:23 +00:00
|
|
|
GST_CAPS_CODEC("video/x-wmv")
|
2015-05-04 12:24:43 +00:00
|
|
|
#if USE_VP8_DECODER
|
2013-12-26 23:18:24 +00:00
|
|
|
GST_CAPS_CODEC("video/x-vp8")
|
2015-05-04 12:24:43 +00:00
|
|
|
#endif
|
|
|
|
#if USE_JPEG_DECODER
|
2012-02-09 16:21:04 +00:00
|
|
|
GST_CAPS_CODEC("image/jpeg")
|
2015-05-04 12:24:43 +00:00
|
|
|
#endif
|
2010-04-29 17:55:58 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
static const char gst_vaapidecode_src_caps_str[] =
|
2015-08-05 12:11:12 +00:00
|
|
|
GST_VAAPI_MAKE_SURFACE_CAPS ";"
|
|
|
|
GST_VAAPI_MAKE_GLTEXUPLOAD_CAPS ";"
|
2014-07-23 08:23:06 +00:00
|
|
|
GST_VIDEO_CAPS_MAKE("{ I420, YV12, NV12 }");
|
2010-04-29 17:55:58 +00:00
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_vaapidecode_sink_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE(
|
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS(gst_vaapidecode_sink_caps_str));
|
|
|
|
|
|
|
|
static GstStaticPadTemplate gst_vaapidecode_src_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE(
|
|
|
|
"src",
|
|
|
|
GST_PAD_SRC,
|
|
|
|
GST_PAD_ALWAYS,
|
|
|
|
GST_STATIC_CAPS(gst_vaapidecode_src_caps_str));
|
|
|
|
|
2012-06-30 17:58:36 +00:00
|
|
|
G_DEFINE_TYPE_WITH_CODE(
|
2010-04-29 17:55:58 +00:00
|
|
|
GstVaapiDecode,
|
|
|
|
gst_vaapidecode,
|
2012-12-04 13:45:29 +00:00
|
|
|
GST_TYPE_VIDEO_DECODER,
|
2013-12-13 15:03:08 +00:00
|
|
|
GST_VAAPI_PLUGIN_BASE_INIT_INTERFACES)
|
2015-03-02 12:59:16 +00:00
|
|
|
/* *INDENT-ON* */
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-08-28 21:18:57 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapidecode_update_sink_caps (GstVaapiDecode * decode, GstCaps * caps);
|
2015-03-02 12:59:16 +00:00
|
|
|
static gboolean gst_vaapidecode_update_src_caps (GstVaapiDecode * decode);
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_decode_input_state_replace (GstVaapiDecode * decode,
|
|
|
|
const GstVideoCodecState * new_state);
|
2011-07-22 13:39:51 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapidecode_sink_query (GstVideoDecoder * vdec, GstQuery * query);
|
|
|
|
static gboolean
|
|
|
|
gst_vaapidecode_src_query (GstVideoDecoder * vdec, GstQuery * query);
|
|
|
|
|
2011-07-22 13:39:51 +00:00
|
|
|
static void
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_decoder_state_changed (GstVaapiDecoder * decoder,
|
|
|
|
const GstVideoCodecState * codec_state, gpointer user_data)
|
2011-07-22 13:39:51 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (user_data);
|
|
|
|
|
|
|
|
g_assert (decode->decoder == decoder);
|
|
|
|
|
|
|
|
if (!gst_vaapi_decode_input_state_replace (decode, codec_state))
|
|
|
|
return;
|
2015-08-28 21:18:57 +00:00
|
|
|
if (!gst_vaapidecode_update_sink_caps (decode, decode->input_state->caps))
|
2015-08-28 14:06:08 +00:00
|
|
|
return;
|
2015-08-28 21:18:57 +00:00
|
|
|
|
|
|
|
decode->do_renego = TRUE;
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 20:43:47 +00:00
|
|
|
static GstVideoCodecState *
|
|
|
|
copy_video_codec_state (const GstVideoCodecState * in_state)
|
|
|
|
{
|
|
|
|
GstVideoCodecState *state;
|
|
|
|
|
|
|
|
g_return_val_if_fail (in_state != NULL, NULL);
|
|
|
|
|
|
|
|
state = g_slice_new0 (GstVideoCodecState);
|
|
|
|
state->ref_count = 1;
|
2015-09-23 10:13:41 +00:00
|
|
|
state->info = in_state->info;
|
2015-08-28 20:43:47 +00:00
|
|
|
state->caps = gst_caps_copy (in_state->caps);
|
2015-10-12 11:13:03 +00:00
|
|
|
if (in_state->codec_data)
|
|
|
|
state->codec_data = gst_buffer_copy_deep (in_state->codec_data);
|
2015-08-28 20:43:47 +00:00
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_decode_input_state_replace (GstVaapiDecode * decode,
|
|
|
|
const GstVideoCodecState * new_state)
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
if (decode->input_state) {
|
|
|
|
if (new_state) {
|
|
|
|
const GstCaps *curcaps = decode->input_state->caps;
|
2015-08-28 21:27:05 +00:00
|
|
|
/* If existing caps are equal of the new state, keep the
|
|
|
|
* existing state without renegotiating. */
|
|
|
|
if (gst_caps_is_strictly_equal (curcaps, new_state->caps)) {
|
|
|
|
GST_DEBUG ("Ignoring new caps %" GST_PTR_FORMAT
|
|
|
|
" since are equal to current ones", new_state->caps);
|
2015-03-02 12:59:16 +00:00
|
|
|
return FALSE;
|
2015-08-28 21:27:05 +00:00
|
|
|
}
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_video_codec_state_unref (decode->input_state);
|
|
|
|
}
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (new_state)
|
2015-08-28 20:43:47 +00:00
|
|
|
decode->input_state = copy_video_codec_state (new_state);
|
2015-03-02 12:59:16 +00:00
|
|
|
else
|
|
|
|
decode->input_state = NULL;
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
return TRUE;
|
2011-07-22 13:39:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_update_sink_caps (GstVaapiDecode * decode, GstCaps * caps)
|
2011-07-22 13:39:51 +00:00
|
|
|
{
|
2015-02-12 11:31:57 +00:00
|
|
|
GST_INFO_OBJECT (decode, "new sink caps = %" GST_PTR_FORMAT, caps);
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_caps_replace (&decode->sinkpad_caps, caps);
|
|
|
|
return TRUE;
|
2011-07-22 13:39:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_update_src_caps (GstVaapiDecode * decode)
|
2011-07-22 13:39:51 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVideoDecoder *const vdec = GST_VIDEO_DECODER (decode);
|
|
|
|
GstVideoCodecState *state, *ref_state;
|
|
|
|
GstVideoInfo *vi;
|
|
|
|
GstVideoFormat format = GST_VIDEO_FORMAT_I420;
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!decode->input_state)
|
|
|
|
return FALSE;
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
ref_state = decode->input_state;
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
GstCapsFeatures *features = NULL;
|
|
|
|
GstVaapiCapsFeature feature;
|
2013-12-11 18:08:26 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
feature =
|
|
|
|
gst_vaapi_find_preferred_caps_feature (GST_VIDEO_DECODER_SRC_PAD (vdec),
|
|
|
|
GST_VIDEO_INFO_FORMAT (&ref_state->info), &format);
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (feature == GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED)
|
|
|
|
return FALSE;
|
2012-12-04 13:45:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
switch (feature) {
|
2015-02-26 10:28:02 +00:00
|
|
|
#if (USE_GLX || USE_EGL)
|
|
|
|
case GST_VAAPI_CAPS_FEATURE_GL_TEXTURE_UPLOAD_META:
|
2015-03-02 12:59:16 +00:00
|
|
|
features =
|
|
|
|
gst_caps_features_new
|
|
|
|
(GST_CAPS_FEATURE_META_GST_VIDEO_GL_TEXTURE_UPLOAD_META, NULL);
|
|
|
|
break;
|
2015-02-26 10:28:02 +00:00
|
|
|
#endif
|
|
|
|
#if GST_CHECK_VERSION(1,5,0)
|
|
|
|
case GST_VAAPI_CAPS_FEATURE_VAAPI_SURFACE:
|
2015-03-02 12:59:16 +00:00
|
|
|
features =
|
|
|
|
gst_caps_features_new (GST_CAPS_FEATURE_MEMORY_VAAPI_SURFACE, NULL);
|
|
|
|
break;
|
2015-02-26 10:28:02 +00:00
|
|
|
#endif
|
|
|
|
default:
|
2015-03-02 12:59:16 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-07-22 16:54:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
state = gst_video_decoder_set_output_state (vdec, format,
|
2015-06-01 16:39:18 +00:00
|
|
|
ref_state->info.width, ref_state->info.height, ref_state);
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!state || state->info.width == 0 || state->info.height == 0)
|
|
|
|
return FALSE;
|
2012-12-04 13:45:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
vi = &state->info;
|
2012-12-04 13:45:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
state->caps = gst_video_info_to_caps (vi);
|
|
|
|
if (features)
|
|
|
|
gst_caps_set_features (state->caps, 0, features);
|
2015-02-12 11:31:57 +00:00
|
|
|
GST_INFO_OBJECT (decode, "new src caps = %" GST_PTR_FORMAT, state->caps);
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_caps_replace (&decode->srcpad_caps, state->caps);
|
|
|
|
gst_video_codec_state_unref (state);
|
2015-05-21 17:38:33 +00:00
|
|
|
|
|
|
|
gint fps_n = GST_VIDEO_INFO_FPS_N (vi);
|
|
|
|
gint fps_d = GST_VIDEO_INFO_FPS_D (vi);
|
|
|
|
if (fps_n <= 0 || fps_d <= 0) {
|
|
|
|
GST_DEBUG_OBJECT (decode, "forcing 25/1 framerate for latency calculation");
|
2015-09-15 08:01:29 +00:00
|
|
|
fps_n = 25;
|
|
|
|
fps_d = 1;
|
2015-05-21 17:38:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* For parsing/preparation purposes we'd need at least 1 frame
|
|
|
|
* latency in general, with perfectly known unit boundaries (NALU,
|
|
|
|
* AU), and up to 2 frames when we need to wait for the second frame
|
|
|
|
* start to determine the first frame is complete */
|
|
|
|
GstClockTime latency = gst_util_uint64_scale (2 * GST_SECOND, fps_d, fps_n);
|
|
|
|
gst_video_decoder_set_latency (vdec, latency, latency);
|
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
return TRUE;
|
2011-07-22 13:39:51 +00:00
|
|
|
}
|
|
|
|
|
2010-05-16 21:04:32 +00:00
|
|
|
static void
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_release (GstVaapiDecode * decode)
|
2010-05-16 21:04:32 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
g_mutex_lock (&decode->surface_ready_mutex);
|
|
|
|
g_cond_signal (&decode->surface_ready);
|
|
|
|
g_mutex_unlock (&decode->surface_ready_mutex);
|
2015-03-06 13:20:01 +00:00
|
|
|
gst_object_unref (decode);
|
2013-01-17 17:19:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_push_decoded_frame (GstVideoDecoder * vdec,
|
|
|
|
GstVideoCodecFrame * out_frame)
|
2013-01-17 17:19:14 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstVaapiSurfaceProxy *proxy;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
const GstVaapiRectangle *crop_rect;
|
|
|
|
GstVaapiVideoMeta *meta;
|
2015-06-24 11:48:46 +00:00
|
|
|
guint flags, out_flags = 0;
|
2012-12-04 13:45:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!GST_VIDEO_CODEC_FRAME_IS_DECODE_ONLY (out_frame)) {
|
|
|
|
proxy = gst_video_codec_frame_get_user_data (out_frame);
|
2010-04-30 15:50:19 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_surface_proxy_set_destroy_notify (proxy,
|
2015-03-06 13:20:01 +00:00
|
|
|
(GDestroyNotify) gst_vaapidecode_release, gst_object_ref (decode));
|
2010-05-16 21:04:32 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
ret = gst_video_decoder_allocate_output_frame (vdec, out_frame);
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
goto error_create_buffer;
|
|
|
|
|
|
|
|
meta = gst_buffer_get_vaapi_video_meta (out_frame->output_buffer);
|
|
|
|
if (!meta)
|
|
|
|
goto error_get_meta;
|
|
|
|
gst_vaapi_video_meta_set_surface_proxy (meta, proxy);
|
|
|
|
|
|
|
|
flags = gst_vaapi_surface_proxy_get_flags (proxy);
|
2015-06-24 11:48:46 +00:00
|
|
|
if (flags & GST_VAAPI_SURFACE_PROXY_FLAG_CORRUPTED)
|
|
|
|
out_flags |= GST_BUFFER_FLAG_CORRUPTED;
|
2015-03-02 12:59:16 +00:00
|
|
|
if (flags & GST_VAAPI_SURFACE_PROXY_FLAG_INTERLACED) {
|
2015-06-24 11:48:46 +00:00
|
|
|
out_flags |= GST_VIDEO_BUFFER_FLAG_INTERLACED;
|
2015-03-02 12:59:16 +00:00
|
|
|
if (flags & GST_VAAPI_SURFACE_PROXY_FLAG_TFF)
|
|
|
|
out_flags |= GST_VIDEO_BUFFER_FLAG_TFF;
|
|
|
|
if (flags & GST_VAAPI_SURFACE_PROXY_FLAG_RFF)
|
|
|
|
out_flags |= GST_VIDEO_BUFFER_FLAG_RFF;
|
|
|
|
if (flags & GST_VAAPI_SURFACE_PROXY_FLAG_ONEFIELD)
|
|
|
|
out_flags |= GST_VIDEO_BUFFER_FLAG_ONEFIELD;
|
|
|
|
}
|
2015-06-24 11:48:46 +00:00
|
|
|
GST_BUFFER_FLAG_SET (out_frame->output_buffer, out_flags);
|
2013-07-15 11:41:00 +00:00
|
|
|
|
2015-06-12 15:39:31 +00:00
|
|
|
#if GST_CHECK_VERSION(1,5,0)
|
|
|
|
/* First-in-bundle flag only appeared in 1.5 dev */
|
|
|
|
if (flags & GST_VAAPI_SURFACE_PROXY_FLAG_FFB) {
|
|
|
|
GST_BUFFER_FLAG_SET (out_frame->output_buffer,
|
|
|
|
GST_VIDEO_BUFFER_FLAG_FIRST_IN_BUNDLE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
crop_rect = gst_vaapi_surface_proxy_get_crop_rect (proxy);
|
|
|
|
if (crop_rect) {
|
|
|
|
GstVideoCropMeta *const crop_meta =
|
|
|
|
gst_buffer_add_video_crop_meta (out_frame->output_buffer);
|
|
|
|
if (crop_meta) {
|
|
|
|
crop_meta->x = crop_rect->x;
|
|
|
|
crop_meta->y = crop_rect->y;
|
|
|
|
crop_meta->width = crop_rect->width;
|
|
|
|
crop_meta->height = crop_rect->height;
|
|
|
|
}
|
|
|
|
}
|
2015-04-03 14:09:08 +00:00
|
|
|
#if (USE_GLX || USE_EGL)
|
2015-03-02 12:59:16 +00:00
|
|
|
if (decode->has_texture_upload_meta)
|
|
|
|
gst_buffer_ensure_texture_upload_meta (out_frame->output_buffer);
|
2012-11-08 14:41:22 +00:00
|
|
|
#endif
|
2015-03-02 12:59:16 +00:00
|
|
|
}
|
2010-04-30 15:50:19 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
ret = gst_video_decoder_finish_frame (vdec, out_frame);
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
goto error_commit_buffer;
|
2013-01-03 12:10:33 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_video_codec_frame_unref (out_frame);
|
|
|
|
return GST_FLOW_OK;
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* ERRORS */
|
2010-04-29 17:55:58 +00:00
|
|
|
error_create_buffer:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
const GstVaapiID surface_id =
|
|
|
|
gst_vaapi_surface_get_id (GST_VAAPI_SURFACE_PROXY_SURFACE (proxy));
|
|
|
|
|
|
|
|
GST_ELEMENT_ERROR (vdec, STREAM, FAILED,
|
|
|
|
("Failed to create sink buffer"),
|
|
|
|
("video sink failed to create video buffer for proxy'ed "
|
|
|
|
"surface %" GST_VAAPI_ID_FORMAT, GST_VAAPI_ID_ARGS (surface_id)));
|
|
|
|
gst_video_decoder_drop_frame (vdec, out_frame);
|
|
|
|
gst_video_codec_frame_unref (out_frame);
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
2012-11-08 14:41:22 +00:00
|
|
|
error_get_meta:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
GST_ELEMENT_ERROR (vdec, STREAM, FAILED,
|
|
|
|
("Failed to get vaapi video meta attached to video buffer"),
|
|
|
|
("Failed to get vaapi video meta attached to video buffer"));
|
|
|
|
gst_video_decoder_drop_frame (vdec, out_frame);
|
|
|
|
gst_video_codec_frame_unref (out_frame);
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
2010-04-29 17:55:58 +00:00
|
|
|
error_commit_buffer:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
2015-04-19 09:19:03 +00:00
|
|
|
GST_INFO_OBJECT (decode, "downstream element rejected the frame (%s [%d])",
|
|
|
|
gst_flow_get_name (ret), ret);
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_video_codec_frame_unref (out_frame);
|
|
|
|
return ret;
|
|
|
|
}
|
2010-04-29 17:55:58 +00:00
|
|
|
}
|
|
|
|
|
2015-08-28 21:18:57 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapidecode_negotiate (GstVaapiDecode * decode)
|
|
|
|
{
|
|
|
|
GstVideoDecoder *const vdec = GST_VIDEO_DECODER (decode);
|
|
|
|
GstVaapiPluginBase *const plugin = GST_VAAPI_PLUGIN_BASE (vdec);
|
|
|
|
|
|
|
|
if (!decode->do_renego)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (decode, "Input codec state changed, doing renegotiation");
|
|
|
|
|
|
|
|
if (!gst_vaapi_plugin_base_set_caps (plugin, decode->sinkpad_caps, NULL))
|
|
|
|
return FALSE;
|
|
|
|
if (!gst_vaapidecode_update_src_caps (decode))
|
|
|
|
return FALSE;
|
|
|
|
if (!gst_video_decoder_negotiate (vdec))
|
|
|
|
return FALSE;
|
|
|
|
if (!gst_vaapi_plugin_base_set_caps (plugin, NULL, decode->srcpad_caps))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
decode->do_renego = FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2015-03-02 12:46:38 +00:00
|
|
|
static GstFlowReturn
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_push_all_decoded_frames (GstVaapiDecode * decode)
|
2015-03-02 12:46:38 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVideoDecoder *const vdec = GST_VIDEO_DECODER (decode);
|
|
|
|
GstVaapiDecoderStatus status;
|
|
|
|
GstVideoCodecFrame *out_frame;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
status = gst_vaapi_decoder_get_frame (decode->decoder, &out_frame);
|
|
|
|
|
|
|
|
switch (status) {
|
|
|
|
case GST_VAAPI_DECODER_STATUS_SUCCESS:
|
|
|
|
ret = gst_vaapidecode_push_decoded_frame (vdec, out_frame);
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
return ret;
|
|
|
|
break;
|
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA:
|
2015-08-28 21:18:57 +00:00
|
|
|
if (!gst_vaapidecode_negotiate (decode))
|
|
|
|
return GST_FLOW_ERROR;
|
2015-03-02 12:59:16 +00:00
|
|
|
return GST_FLOW_OK;
|
|
|
|
default:
|
2015-04-17 00:18:13 +00:00
|
|
|
GST_VIDEO_DECODER_ERROR (vdec, 1, STREAM, DECODE, ("Decoding failed"),
|
|
|
|
("Unknown decoding error"), ret);
|
|
|
|
return ret;
|
2015-03-02 12:46:38 +00:00
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
}
|
|
|
|
g_assert_not_reached ();
|
2015-03-02 12:46:38 +00:00
|
|
|
}
|
|
|
|
|
2013-01-17 17:19:14 +00:00
|
|
|
static GstFlowReturn
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_handle_frame (GstVideoDecoder * vdec,
|
|
|
|
GstVideoCodecFrame * frame)
|
2013-01-17 17:19:14 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstVaapiDecoderStatus status;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
|
|
|
|
if (!decode->input_state)
|
|
|
|
goto not_negotiated;
|
|
|
|
|
|
|
|
if (G_UNLIKELY (!decode->active) ||
|
|
|
|
gst_pad_needs_reconfigure (GST_VIDEO_DECODER_SRC_PAD (vdec))) {
|
|
|
|
GST_DEBUG_OBJECT (decode, "activating the decoder");
|
|
|
|
if (!gst_vaapidecode_update_src_caps (decode))
|
|
|
|
goto not_negotiated;
|
|
|
|
|
|
|
|
if (!gst_video_decoder_negotiate (vdec))
|
|
|
|
goto not_negotiated;
|
|
|
|
|
|
|
|
GstVaapiPluginBase *const plugin = GST_VAAPI_PLUGIN_BASE (vdec);
|
|
|
|
if (!gst_vaapi_plugin_base_set_caps (plugin, NULL, decode->srcpad_caps))
|
|
|
|
goto not_negotiated;
|
|
|
|
|
|
|
|
decode->active = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Decode current frame */
|
|
|
|
for (;;) {
|
|
|
|
status = gst_vaapi_decoder_decode (decode->decoder, frame);
|
|
|
|
if (status == GST_VAAPI_DECODER_STATUS_ERROR_NO_SURFACE) {
|
|
|
|
/* Make sure that there are no decoded frames waiting in the
|
|
|
|
output queue. */
|
|
|
|
ret = gst_vaapidecode_push_all_decoded_frames (decode);
|
|
|
|
if (ret != GST_FLOW_OK)
|
|
|
|
goto error_push_all_decoded_frames;
|
|
|
|
|
|
|
|
g_mutex_lock (&decode->surface_ready_mutex);
|
|
|
|
if (gst_vaapi_decoder_check_status (decode->decoder) ==
|
|
|
|
GST_VAAPI_DECODER_STATUS_ERROR_NO_SURFACE)
|
|
|
|
g_cond_wait (&decode->surface_ready, &decode->surface_ready_mutex);
|
|
|
|
g_mutex_unlock (&decode->surface_ready_mutex);
|
|
|
|
continue;
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
|
|
|
|
goto error_decode;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Note that gst_vaapi_decoder_decode cannot return success without
|
|
|
|
completing the decode and pushing all decoded frames into the output
|
|
|
|
queue */
|
2015-04-19 09:19:03 +00:00
|
|
|
return gst_vaapidecode_push_all_decoded_frames (decode);
|
2015-03-02 12:59:16 +00:00
|
|
|
|
|
|
|
/* ERRORS */
|
2015-03-02 12:46:38 +00:00
|
|
|
error_push_all_decoded_frames:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
GST_ERROR ("push loop error while decoding %d", ret);
|
|
|
|
gst_video_decoder_drop_frame (vdec, frame);
|
|
|
|
return ret;
|
|
|
|
}
|
2015-03-02 12:46:38 +00:00
|
|
|
error_decode:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
GST_ERROR ("decode error %d", status);
|
|
|
|
switch (status) {
|
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_CODEC:
|
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_PROFILE:
|
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_CHROMA_FORMAT:
|
|
|
|
ret = GST_FLOW_NOT_SUPPORTED;
|
|
|
|
break;
|
|
|
|
default:
|
2015-04-17 00:18:13 +00:00
|
|
|
GST_VIDEO_DECODER_ERROR (vdec, 1, STREAM, DECODE, ("Decoding error"),
|
|
|
|
("Decode error %d", status), ret);
|
2015-03-02 12:59:16 +00:00
|
|
|
break;
|
2015-03-02 12:46:38 +00:00
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_video_decoder_drop_frame (vdec, frame);
|
|
|
|
return ret;
|
|
|
|
}
|
2015-03-02 12:46:38 +00:00
|
|
|
not_negotiated:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
GST_ERROR_OBJECT (decode, "not negotiated");
|
|
|
|
ret = GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
gst_video_decoder_drop_frame (vdec, frame);
|
|
|
|
return ret;
|
|
|
|
}
|
2013-01-17 17:19:14 +00:00
|
|
|
}
|
|
|
|
|
2015-03-16 21:38:18 +00:00
|
|
|
#if GST_CHECK_VERSION(1,5,0)
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_vaapidecode_drain (GstVideoDecoder * vdec)
|
|
|
|
{
|
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
|
|
|
|
if (!decode->decoder)
|
|
|
|
return GST_FLOW_NOT_NEGOTIATED;
|
|
|
|
|
|
|
|
return gst_vaapidecode_push_all_decoded_frames (decode);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-11-21 10:01:41 +00:00
|
|
|
static gboolean
|
2015-03-16 21:36:33 +00:00
|
|
|
gst_vaapidecode_internal_flush (GstVideoDecoder * vdec)
|
2013-01-17 17:22:49 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstVaapiDecoderStatus status;
|
2013-01-17 17:22:49 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!decode->decoder)
|
|
|
|
return TRUE;
|
2014-08-11 14:14:53 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* If there is something in GstVideoDecoder's output adapter, then
|
|
|
|
submit the frame for decoding */
|
|
|
|
if (decode->current_frame_size) {
|
|
|
|
gst_video_decoder_have_frame (vdec);
|
|
|
|
decode->current_frame_size = 0;
|
|
|
|
}
|
2013-07-30 06:05:39 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
status = gst_vaapi_decoder_flush (decode->decoder);
|
2015-04-21 08:00:36 +00:00
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS) {
|
|
|
|
GST_WARNING_OBJECT (decode, "failed to flush decoder (status %d)", status);
|
2015-03-02 12:59:16 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2015-04-21 08:00:36 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2013-11-21 10:01:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstFlowReturn
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_finish (GstVideoDecoder * vdec)
|
2013-11-21 10:01:41 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
2015-04-21 08:00:36 +00:00
|
|
|
gboolean flushed;
|
|
|
|
GstFlowReturn ret;
|
2013-11-21 10:01:41 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!decode->decoder)
|
|
|
|
return GST_FLOW_OK;
|
2014-08-11 14:14:53 +00:00
|
|
|
|
2015-04-21 08:00:36 +00:00
|
|
|
flushed = gst_vaapidecode_internal_flush (vdec);
|
|
|
|
ret = gst_vaapidecode_push_all_decoded_frames (decode);
|
|
|
|
if (!flushed)
|
2015-03-02 12:59:16 +00:00
|
|
|
return GST_FLOW_ERROR;
|
2015-04-21 08:00:36 +00:00
|
|
|
return ret;
|
2013-01-17 17:22:49 +00:00
|
|
|
}
|
|
|
|
|
2012-11-08 14:41:22 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_decide_allocation (GstVideoDecoder * vdec, GstQuery * query)
|
2012-11-08 14:41:22 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstCaps *caps = NULL;
|
|
|
|
GstVideoCodecState *state;
|
|
|
|
|
|
|
|
gst_query_parse_allocation (query, &caps, NULL);
|
|
|
|
decode->has_texture_upload_meta = FALSE;
|
2015-04-03 14:09:08 +00:00
|
|
|
#if (USE_GLX || USE_EGL)
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->has_texture_upload_meta =
|
|
|
|
gst_query_find_allocation_meta (query,
|
2015-10-14 18:30:30 +00:00
|
|
|
GST_VIDEO_GL_TEXTURE_UPLOAD_META_API_TYPE, NULL) &&
|
|
|
|
gst_vaapi_caps_feature_contains (caps,
|
|
|
|
GST_VAAPI_CAPS_FEATURE_GL_TEXTURE_UPLOAD_META);
|
2014-07-28 16:00:19 +00:00
|
|
|
#endif
|
2014-06-13 20:45:04 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* Update src caps if feature is not handled downstream */
|
|
|
|
state = gst_video_decoder_get_output_state (vdec);
|
|
|
|
if (!gst_caps_is_always_compatible (caps, state->caps))
|
|
|
|
gst_vaapidecode_update_src_caps (decode);
|
|
|
|
gst_video_codec_state_unref (state);
|
2013-12-11 18:08:26 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
return gst_vaapi_plugin_base_decide_allocation (GST_VAAPI_PLUGIN_BASE (vdec),
|
2015-10-14 18:30:30 +00:00
|
|
|
query, 0);
|
2012-11-08 14:41:22 +00:00
|
|
|
}
|
|
|
|
|
2012-07-25 08:02:29 +00:00
|
|
|
static inline gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_ensure_display (GstVaapiDecode * decode)
|
2012-07-25 08:02:29 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
return gst_vaapi_plugin_base_ensure_display (GST_VAAPI_PLUGIN_BASE (decode));
|
2012-07-25 08:02:29 +00:00
|
|
|
}
|
|
|
|
|
2012-09-11 14:41:32 +00:00
|
|
|
static inline guint
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_codec_from_caps (GstCaps * caps)
|
2012-09-11 14:41:32 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
return gst_vaapi_profile_get_codec (gst_vaapi_profile_from_caps (caps));
|
2012-09-11 14:41:32 +00:00
|
|
|
}
|
|
|
|
|
2010-05-05 15:36:25 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_create (GstVaapiDecode * decode, GstCaps * caps)
|
2010-05-05 15:36:25 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDisplay *dpy;
|
2011-08-12 08:21:19 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!gst_vaapidecode_ensure_display (decode))
|
|
|
|
return FALSE;
|
|
|
|
dpy = GST_VAAPI_PLUGIN_BASE_DISPLAY (decode);
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
switch (gst_vaapi_codec_from_caps (caps)) {
|
2012-09-11 14:41:32 +00:00
|
|
|
case GST_VAAPI_CODEC_MPEG2:
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = gst_vaapi_decoder_mpeg2_new (dpy, caps);
|
|
|
|
break;
|
2012-09-11 14:41:32 +00:00
|
|
|
case GST_VAAPI_CODEC_MPEG4:
|
|
|
|
case GST_VAAPI_CODEC_H263:
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = gst_vaapi_decoder_mpeg4_new (dpy, caps);
|
|
|
|
break;
|
2012-09-11 14:41:32 +00:00
|
|
|
case GST_VAAPI_CODEC_H264:
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = gst_vaapi_decoder_h264_new (dpy, caps);
|
|
|
|
|
|
|
|
/* Set the stream buffer alignment for better optimizations */
|
|
|
|
if (decode->decoder && caps) {
|
|
|
|
GstStructure *const structure = gst_caps_get_structure (caps, 0);
|
|
|
|
const gchar *str = NULL;
|
|
|
|
|
|
|
|
if ((str = gst_structure_get_string (structure, "alignment"))) {
|
|
|
|
GstVaapiStreamAlignH264 alignment;
|
|
|
|
if (g_strcmp0 (str, "au") == 0)
|
|
|
|
alignment = GST_VAAPI_STREAM_ALIGN_H264_AU;
|
|
|
|
else if (g_strcmp0 (str, "nal") == 0)
|
|
|
|
alignment = GST_VAAPI_STREAM_ALIGN_H264_NALU;
|
|
|
|
else
|
|
|
|
alignment = GST_VAAPI_STREAM_ALIGN_H264_NONE;
|
2015-03-06 12:31:21 +00:00
|
|
|
gst_vaapi_decoder_h264_set_alignment (GST_VAAPI_DECODER_H264
|
|
|
|
(decode->decoder), alignment);
|
2014-02-06 06:30:10 +00:00
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-05-04 12:24:43 +00:00
|
|
|
#if USE_HEVC_DECODER
|
2015-04-13 12:43:30 +00:00
|
|
|
case GST_VAAPI_CODEC_H265:
|
|
|
|
decode->decoder = gst_vaapi_decoder_h265_new (dpy, caps);
|
|
|
|
|
|
|
|
/* Set the stream buffer alignment for better optimizations */
|
|
|
|
if (decode->decoder && caps) {
|
|
|
|
GstStructure *const structure = gst_caps_get_structure (caps, 0);
|
|
|
|
const gchar *str = NULL;
|
|
|
|
|
|
|
|
if ((str = gst_structure_get_string (structure, "alignment"))) {
|
|
|
|
GstVaapiStreamAlignH265 alignment;
|
|
|
|
if (g_strcmp0 (str, "au") == 0)
|
|
|
|
alignment = GST_VAAPI_STREAM_ALIGN_H265_AU;
|
|
|
|
else if (g_strcmp0 (str, "nal") == 0)
|
|
|
|
alignment = GST_VAAPI_STREAM_ALIGN_H265_NALU;
|
|
|
|
else
|
|
|
|
alignment = GST_VAAPI_STREAM_ALIGN_H265_NONE;
|
|
|
|
gst_vaapi_decoder_h265_set_alignment (GST_VAAPI_DECODER_H265
|
|
|
|
(decode->decoder), alignment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-05-04 12:24:43 +00:00
|
|
|
#endif
|
2012-09-11 14:41:32 +00:00
|
|
|
case GST_VAAPI_CODEC_WMV3:
|
|
|
|
case GST_VAAPI_CODEC_VC1:
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = gst_vaapi_decoder_vc1_new (dpy, caps);
|
|
|
|
break;
|
2012-02-09 16:21:04 +00:00
|
|
|
#if USE_JPEG_DECODER
|
2012-09-11 14:41:32 +00:00
|
|
|
case GST_VAAPI_CODEC_JPEG:
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = gst_vaapi_decoder_jpeg_new (dpy, caps);
|
|
|
|
break;
|
2011-08-12 08:21:19 +00:00
|
|
|
#endif
|
2014-04-29 10:22:47 +00:00
|
|
|
#if USE_VP8_DECODER
|
2013-12-26 23:18:24 +00:00
|
|
|
case GST_VAAPI_CODEC_VP8:
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = gst_vaapi_decoder_vp8_new (dpy, caps);
|
|
|
|
break;
|
2014-04-29 10:22:47 +00:00
|
|
|
#endif
|
2012-09-11 14:41:32 +00:00
|
|
|
default:
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!decode->decoder)
|
|
|
|
return FALSE;
|
2010-05-12 08:32:34 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_decoder_set_codec_state_changed_func (decode->decoder,
|
|
|
|
gst_vaapi_decoder_state_changed, decode);
|
2011-07-22 13:39:51 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder_caps = gst_caps_ref (caps);
|
|
|
|
return TRUE;
|
2010-04-29 17:55:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-04-20 11:27:27 +00:00
|
|
|
gst_vaapidecode_purge (GstVaapiDecode * decode)
|
2010-04-29 17:55:58 +00:00
|
|
|
{
|
2015-04-20 11:27:27 +00:00
|
|
|
GstVaapiDecoderStatus status;
|
2015-04-16 16:53:18 +00:00
|
|
|
|
2015-04-20 11:27:27 +00:00
|
|
|
if (!decode->decoder)
|
|
|
|
return;
|
2015-04-16 16:53:18 +00:00
|
|
|
|
2015-04-20 11:27:27 +00:00
|
|
|
status = gst_vaapi_decoder_flush (decode->decoder);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
|
2015-04-21 08:00:36 +00:00
|
|
|
GST_INFO_OBJECT (decode, "failed to flush decoder (status %d)", status);
|
2015-04-20 11:27:27 +00:00
|
|
|
|
|
|
|
/* Purge all decoded frames as we don't need them (e.g. flush and close)
|
|
|
|
* Releasing the frames is important, otherwise the frames are not
|
|
|
|
* freed. */
|
|
|
|
do {
|
|
|
|
GstVideoCodecFrame *frame = NULL;
|
|
|
|
|
|
|
|
status =
|
2015-06-01 16:39:18 +00:00
|
|
|
gst_vaapi_decoder_get_frame_with_timeout (decode->decoder, &frame, 0);
|
2015-04-20 11:27:27 +00:00
|
|
|
if (frame) {
|
|
|
|
gst_video_decoder_release_frame (GST_VIDEO_DECODER (decode), frame);
|
|
|
|
gst_video_codec_frame_unref (frame);
|
2015-04-16 16:53:18 +00:00
|
|
|
}
|
2015-04-20 11:27:27 +00:00
|
|
|
} while (status == GST_VAAPI_DECODER_STATUS_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapidecode_destroy (GstVaapiDecode * decode)
|
|
|
|
{
|
|
|
|
gst_vaapidecode_purge (decode);
|
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_decoder_replace (&decode->decoder, NULL);
|
|
|
|
gst_caps_replace (&decode->decoder_caps, NULL);
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->active = FALSE;
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-06 13:20:01 +00:00
|
|
|
gst_vaapidecode_release (gst_object_ref (decode));
|
2010-04-29 17:55:58 +00:00
|
|
|
}
|
|
|
|
|
2010-05-12 08:32:34 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_reset_full (GstVaapiDecode * decode, GstCaps * caps,
|
|
|
|
gboolean hard)
|
2010-05-12 08:32:34 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiCodec codec;
|
2012-09-11 15:03:33 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* Reset tracked frame size */
|
|
|
|
decode->current_frame_size = 0;
|
2013-11-21 10:01:41 +00:00
|
|
|
|
2015-04-16 16:53:18 +00:00
|
|
|
if (!hard && decode->decoder && decode->decoder_caps) {
|
2015-03-02 12:59:16 +00:00
|
|
|
if (gst_caps_is_always_compatible (caps, decode->decoder_caps))
|
|
|
|
return TRUE;
|
|
|
|
codec = gst_vaapi_codec_from_caps (caps);
|
|
|
|
if (codec == gst_vaapi_decoder_get_codec (decode->decoder))
|
|
|
|
return TRUE;
|
|
|
|
}
|
2010-05-12 08:32:34 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_destroy (decode);
|
|
|
|
return gst_vaapidecode_create (decode, caps);
|
2010-05-12 08:32:34 +00:00
|
|
|
}
|
|
|
|
|
2010-04-29 17:55:58 +00:00
|
|
|
static void
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_finalize (GObject * object)
|
2010-04-29 17:55:58 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (object);
|
2010-05-12 08:32:34 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_caps_replace (&decode->sinkpad_caps, NULL);
|
|
|
|
gst_caps_replace (&decode->srcpad_caps, NULL);
|
|
|
|
gst_caps_replace (&decode->allowed_caps, NULL);
|
2011-07-22 13:39:51 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
g_cond_clear (&decode->surface_ready);
|
|
|
|
g_mutex_clear (&decode->surface_ready_mutex);
|
2012-10-04 16:39:53 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_plugin_base_finalize (GST_VAAPI_PLUGIN_BASE (object));
|
|
|
|
G_OBJECT_CLASS (gst_vaapidecode_parent_class)->finalize (object);
|
2010-04-29 17:55:58 +00:00
|
|
|
}
|
|
|
|
|
2012-12-04 13:45:29 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_open (GstVideoDecoder * vdec)
|
2010-04-29 17:55:58 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstVaapiDisplay *const old_display = GST_VAAPI_PLUGIN_BASE_DISPLAY (decode);
|
|
|
|
gboolean success;
|
|
|
|
|
|
|
|
if (!gst_vaapi_plugin_base_open (GST_VAAPI_PLUGIN_BASE (decode)))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Let GstVideoContext ask for a proper display to its neighbours */
|
|
|
|
/* Note: steal old display that may be allocated from get_caps()
|
|
|
|
so that to retain a reference to it, thus avoiding extra
|
|
|
|
initialization steps if we turn out to simply re-use the
|
|
|
|
existing (cached) VA display */
|
|
|
|
GST_VAAPI_PLUGIN_BASE_DISPLAY (decode) = NULL;
|
|
|
|
success = gst_vaapidecode_ensure_display (decode);
|
|
|
|
if (old_display)
|
|
|
|
gst_vaapi_display_unref (old_display);
|
|
|
|
return success;
|
2012-12-04 13:45:29 +00:00
|
|
|
}
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2012-12-04 13:45:29 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_close (GstVideoDecoder * vdec)
|
2012-12-04 13:45:29 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
2012-12-04 13:45:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_decode_input_state_replace (decode, NULL);
|
|
|
|
gst_vaapidecode_destroy (decode);
|
|
|
|
gst_vaapi_plugin_base_close (GST_VAAPI_PLUGIN_BASE (decode));
|
|
|
|
return TRUE;
|
2012-12-04 13:45:29 +00:00
|
|
|
}
|
|
|
|
|
2015-03-16 21:36:33 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapidecode_flush (GstVideoDecoder * vdec)
|
|
|
|
{
|
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
|
|
|
|
if (decode->decoder && !gst_vaapidecode_internal_flush (vdec))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* There could be issues if we avoid the reset_full() while doing
|
|
|
|
* seeking: we have to reset the internal state */
|
|
|
|
return gst_vaapidecode_reset_full (decode, decode->sinkpad_caps, TRUE);
|
|
|
|
}
|
2013-01-23 22:49:17 +00:00
|
|
|
|
2012-12-04 13:45:29 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_set_format (GstVideoDecoder * vdec, GstVideoCodecState * state)
|
2012-12-04 13:45:29 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiPluginBase *const plugin = GST_VAAPI_PLUGIN_BASE (vdec);
|
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
vaapidecode: delayed src caps negotiation
Currently the src caps are set immediately after the sink caps are set, but in
that moment the pipeline might not fully constructed and the video sink has
not negotiated its supported caps and features. As a consequence, in many cases
of playback, the least optimized caps feature is forced. This is partially the
responsible of bug #744039.
Also, vaapidecode doesn't attend the reconfigure events from downstream,
which is a problem too, since the video sink can be changed with different
caps features.
This patch delays the src caps, setting them until the first frame arrives to
the decoder, assuming until that very moment the whole pipeline is already
negotiated. Particularly, it checks if the src pad needs to be reconfigured,
as a consequence of a reconfiguration event from downstream.
A key part of this patch is the new GstVaapiCapsFeature
GST_VAAPI_CAPS_FEATURE_NOT_NEGOTIATED, which is returned when the src pad
doesn't have a peer yet. Also, for a better report of the caps allowed
through the src pad and its peer, this patch uses gst_pad_get_allowed_caps()
instead of gst_pad_peer_query_caps() when looking for the preferred feature.
v3: move the input_state unref to close(), since videodecoder resets at
some events such as navigation.
v4: a) the state_changed() callback replaces the input_state if the media
changed, so this case is also handled.
b) since the parameter ref_state in gst_vaapidecode_update_src_caps() is
always the input_state, the parameter were removed.
c) there were a lot of repeated code handling the input_state, so I
refactored it with the function gst_vaapi_decode_input_state_replace().
https://bugzilla.gnome.org/show_bug.cgi?id=744618
Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
Signed-off-by: Sreerenj Balachandran <sreerenj.balachandran@intel.com>
2015-02-26 10:24:55 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!gst_vaapi_decode_input_state_replace (decode, state))
|
2012-12-04 13:45:29 +00:00
|
|
|
return TRUE;
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!gst_vaapidecode_update_sink_caps (decode, state->caps))
|
|
|
|
return FALSE;
|
|
|
|
if (!gst_vaapi_plugin_base_set_caps (plugin, decode->sinkpad_caps, NULL))
|
|
|
|
return FALSE;
|
|
|
|
if (!gst_vaapidecode_reset_full (decode, decode->sinkpad_caps, FALSE))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
2012-12-04 13:45:29 +00:00
|
|
|
}
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2012-12-04 13:45:29 +00:00
|
|
|
static GstFlowReturn
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_parse_frame (GstVideoDecoder * vdec,
|
|
|
|
GstVideoCodecFrame * frame, GstAdapter * adapter, gboolean at_eos)
|
2012-12-04 13:45:29 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstVaapiDecoderStatus status;
|
|
|
|
GstFlowReturn ret;
|
|
|
|
guint got_unit_size;
|
|
|
|
gboolean got_frame;
|
2012-12-04 13:45:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
status = gst_vaapi_decoder_parse (decode->decoder, frame,
|
|
|
|
adapter, at_eos, &got_unit_size, &got_frame);
|
2012-12-04 13:45:29 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
switch (status) {
|
2012-12-04 13:45:29 +00:00
|
|
|
case GST_VAAPI_DECODER_STATUS_SUCCESS:
|
2015-03-02 12:59:16 +00:00
|
|
|
if (got_unit_size > 0) {
|
|
|
|
gst_video_decoder_add_to_frame (vdec, got_unit_size);
|
|
|
|
decode->current_frame_size += got_unit_size;
|
|
|
|
}
|
|
|
|
if (got_frame) {
|
|
|
|
ret = gst_video_decoder_have_frame (vdec);
|
|
|
|
decode->current_frame_size = 0;
|
|
|
|
} else
|
|
|
|
ret = GST_VAAPI_DECODE_FLOW_PARSE_DATA;
|
|
|
|
break;
|
2012-12-04 13:45:29 +00:00
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA:
|
2015-03-02 12:59:16 +00:00
|
|
|
ret = GST_VIDEO_DECODER_FLOW_NEED_DATA;
|
|
|
|
break;
|
2012-12-04 13:45:29 +00:00
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_CODEC:
|
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_PROFILE:
|
|
|
|
case GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_CHROMA_FORMAT:
|
2015-03-02 12:59:16 +00:00
|
|
|
GST_WARNING ("parse error %d", status);
|
|
|
|
ret = GST_FLOW_NOT_SUPPORTED;
|
|
|
|
decode->current_frame_size = 0;
|
|
|
|
break;
|
2010-04-29 17:55:58 +00:00
|
|
|
default:
|
2015-03-02 12:59:16 +00:00
|
|
|
GST_ERROR ("parse error %d", status);
|
|
|
|
ret = GST_FLOW_EOS;
|
|
|
|
decode->current_frame_size = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
2010-04-29 17:55:58 +00:00
|
|
|
}
|
|
|
|
|
2014-06-18 11:47:36 +00:00
|
|
|
static GstFlowReturn
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_parse (GstVideoDecoder * vdec,
|
|
|
|
GstVideoCodecFrame * frame, GstAdapter * adapter, gboolean at_eos)
|
2014-06-18 11:47:36 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstFlowReturn ret;
|
2014-06-18 11:47:36 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
do {
|
|
|
|
ret = gst_vaapidecode_parse_frame (vdec, frame, adapter, at_eos);
|
|
|
|
} while (ret == GST_VAAPI_DECODE_FLOW_PARSE_DATA);
|
|
|
|
return ret;
|
2014-06-18 11:47:36 +00:00
|
|
|
}
|
|
|
|
|
2010-04-29 17:55:58 +00:00
|
|
|
static void
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_class_init (GstVaapiDecodeClass * klass)
|
2010-04-29 17:55:58 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GObjectClass *const object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GstElementClass *const element_class = GST_ELEMENT_CLASS (klass);
|
|
|
|
GstVideoDecoderClass *const vdec_class = GST_VIDEO_DECODER_CLASS (klass);
|
|
|
|
GstPadTemplate *pad_template;
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
GST_DEBUG_CATEGORY_INIT (gst_debug_vaapidecode,
|
|
|
|
GST_PLUGIN_NAME, 0, GST_PLUGIN_DESC);
|
2011-09-14 19:12:41 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_plugin_base_class_init (GST_VAAPI_PLUGIN_BASE_CLASS (klass));
|
2013-12-13 09:24:26 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
object_class->finalize = gst_vaapidecode_finalize;
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
vdec_class->open = GST_DEBUG_FUNCPTR (gst_vaapidecode_open);
|
|
|
|
vdec_class->close = GST_DEBUG_FUNCPTR (gst_vaapidecode_close);
|
|
|
|
vdec_class->set_format = GST_DEBUG_FUNCPTR (gst_vaapidecode_set_format);
|
2015-03-16 21:36:33 +00:00
|
|
|
vdec_class->flush = GST_DEBUG_FUNCPTR (gst_vaapidecode_flush);
|
2015-03-02 12:59:16 +00:00
|
|
|
vdec_class->parse = GST_DEBUG_FUNCPTR (gst_vaapidecode_parse);
|
|
|
|
vdec_class->handle_frame = GST_DEBUG_FUNCPTR (gst_vaapidecode_handle_frame);
|
|
|
|
vdec_class->finish = GST_DEBUG_FUNCPTR (gst_vaapidecode_finish);
|
2015-03-16 21:38:18 +00:00
|
|
|
#if GST_CHECK_VERSION(1,5,0)
|
|
|
|
vdec_class->drain = GST_DEBUG_FUNCPTR (gst_vaapidecode_drain);
|
|
|
|
#endif
|
2015-03-02 12:59:16 +00:00
|
|
|
vdec_class->decide_allocation =
|
|
|
|
GST_DEBUG_FUNCPTR (gst_vaapidecode_decide_allocation);
|
2015-03-06 12:09:22 +00:00
|
|
|
#if GST_CHECK_VERSION(1,4,0)
|
|
|
|
vdec_class->src_query = GST_DEBUG_FUNCPTR (gst_vaapidecode_src_query);
|
|
|
|
vdec_class->sink_query = GST_DEBUG_FUNCPTR (gst_vaapidecode_sink_query);
|
|
|
|
#endif
|
2012-11-08 14:41:22 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_element_class_set_static_metadata (element_class,
|
|
|
|
"VA-API decoder",
|
|
|
|
"Codec/Decoder/Video",
|
2015-04-13 13:04:59 +00:00
|
|
|
GST_PLUGIN_DESC,
|
|
|
|
"Gwenole Beauchesne <gwenole.beauchesne@intel.com>, "
|
|
|
|
"Halley Zhao <halley.zhao@intel.com>, "
|
|
|
|
"Sreerenj Balachandran <sreerenj.balachandran@intel.com>, "
|
|
|
|
"Wind Yuan <feng.yuan@intel.com>");
|
2012-06-30 17:58:36 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* sink pad */
|
|
|
|
pad_template = gst_static_pad_template_get (&gst_vaapidecode_sink_factory);
|
|
|
|
gst_element_class_add_pad_template (element_class, pad_template);
|
2012-06-30 17:58:36 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* src pad */
|
|
|
|
pad_template = gst_static_pad_template_get (&gst_vaapidecode_src_factory);
|
|
|
|
gst_element_class_add_pad_template (element_class, pad_template);
|
2010-04-29 17:55:58 +00:00
|
|
|
}
|
|
|
|
|
2010-05-12 09:22:49 +00:00
|
|
|
static gboolean
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_ensure_allowed_caps (GstVaapiDecode * decode)
|
2010-05-12 09:22:49 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstCaps *caps, *allowed_caps;
|
|
|
|
GArray *profiles;
|
|
|
|
guint i;
|
2010-05-12 09:22:49 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (decode->allowed_caps)
|
2010-05-12 09:22:49 +00:00
|
|
|
return TRUE;
|
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!gst_vaapidecode_ensure_display (decode))
|
|
|
|
goto error_no_display;
|
|
|
|
|
|
|
|
profiles =
|
|
|
|
gst_vaapi_display_get_decode_profiles (GST_VAAPI_PLUGIN_BASE_DISPLAY
|
|
|
|
(decode));
|
|
|
|
if (!profiles)
|
|
|
|
goto error_no_profiles;
|
|
|
|
|
|
|
|
allowed_caps = gst_caps_new_empty ();
|
|
|
|
if (!allowed_caps)
|
|
|
|
goto error_no_memory;
|
|
|
|
|
|
|
|
for (i = 0; i < profiles->len; i++) {
|
|
|
|
const GstVaapiProfile profile =
|
|
|
|
g_array_index (profiles, GstVaapiProfile, i);
|
|
|
|
const gchar *media_type_name;
|
|
|
|
const gchar *profile_name;
|
|
|
|
GstStructure *structure;
|
|
|
|
|
|
|
|
media_type_name = gst_vaapi_profile_get_media_type_name (profile);
|
|
|
|
if (!media_type_name)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
caps = gst_caps_from_string (media_type_name);
|
|
|
|
if (!caps)
|
|
|
|
continue;
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
|
|
|
|
profile_name = gst_vaapi_profile_get_name (profile);
|
|
|
|
if (profile_name)
|
|
|
|
gst_structure_set (structure, "profile", G_TYPE_STRING,
|
|
|
|
profile_name, NULL);
|
|
|
|
|
|
|
|
allowed_caps = gst_caps_merge (allowed_caps, caps);
|
|
|
|
}
|
|
|
|
decode->allowed_caps = gst_caps_simplify (allowed_caps);
|
|
|
|
|
|
|
|
g_array_unref (profiles);
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* ERRORS */
|
2010-05-12 09:22:49 +00:00
|
|
|
error_no_display:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
GST_ERROR ("failed to retrieve VA display");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2013-12-20 14:31:14 +00:00
|
|
|
error_no_profiles:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
GST_ERROR ("failed to retrieve VA decode profiles");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-05-12 09:22:49 +00:00
|
|
|
error_no_memory:
|
2015-03-02 12:59:16 +00:00
|
|
|
{
|
|
|
|
GST_ERROR ("failed to allocate allowed-caps set");
|
|
|
|
g_array_unref (profiles);
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-05-12 09:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_get_caps (GstPad * pad)
|
2010-05-12 09:22:49 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (GST_OBJECT_PARENT (pad));
|
2010-05-12 09:22:49 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
if (!gst_vaapidecode_ensure_allowed_caps (decode))
|
|
|
|
return gst_caps_new_empty ();
|
2010-05-12 09:22:49 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
return gst_caps_ref (decode->allowed_caps);
|
2010-05-12 09:22:49 +00:00
|
|
|
}
|
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
#if !GST_CHECK_VERSION(1,4,0)
|
2011-11-04 20:50:15 +00:00
|
|
|
static gboolean
|
2015-04-03 14:08:30 +00:00
|
|
|
gst_vaapidecode_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
2013-03-20 13:40:57 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVaapiDecode *const decode =
|
|
|
|
GST_VAAPIDECODE (gst_pad_get_parent_element (pad));
|
2015-03-06 12:09:22 +00:00
|
|
|
GstVideoDecoder *const vdec = GST_VIDEO_DECODER (decode);
|
2015-03-02 12:59:16 +00:00
|
|
|
gboolean res;
|
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
GST_INFO_OBJECT (decode, "query type %s on %s pad",
|
|
|
|
GST_QUERY_TYPE_NAME (query), GST_PAD_IS_SINK (pad) ? "sink" : "src");
|
2015-03-02 12:59:16 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
if (GST_PAD_IS_SINK (pad))
|
|
|
|
res = gst_vaapidecode_sink_query (vdec, query);
|
|
|
|
else
|
|
|
|
res = gst_vaapidecode_src_query (vdec, query);
|
2011-11-04 20:50:15 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
gst_object_unref (vdec);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
#endif
|
2011-11-04 20:50:15 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapidecode_sink_query (GstVideoDecoder * vdec, GstQuery * query)
|
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstVaapiPluginBase *const plugin = GST_VAAPI_PLUGIN_BASE (decode);
|
|
|
|
|
|
|
|
if (gst_vaapi_reply_to_query (query, plugin->display)) {
|
|
|
|
GST_DEBUG_OBJECT (decode, "sharing display %p", plugin->display);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
|
|
|
case GST_QUERY_CAPS:{
|
|
|
|
GstCaps *caps, *filter = NULL;
|
|
|
|
GstPad *pad = GST_VIDEO_DECODER_SINK_PAD (vdec);
|
2015-03-02 12:59:16 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
gst_query_parse_caps (query, &filter);
|
|
|
|
caps = gst_vaapidecode_get_caps (pad);
|
|
|
|
|
|
|
|
if (filter) {
|
|
|
|
GstCaps *tmp = caps;
|
|
|
|
caps = gst_caps_intersect_full (filter, tmp, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (tmp);
|
2015-03-02 12:59:16 +00:00
|
|
|
}
|
2015-03-06 12:09:22 +00:00
|
|
|
|
|
|
|
gst_query_set_caps_result (query, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:{
|
|
|
|
#if GST_CHECK_VERSION(1,4,0)
|
|
|
|
ret = GST_VIDEO_DECODER_CLASS (gst_vaapidecode_parent_class)->sink_query
|
|
|
|
(vdec, query);
|
|
|
|
#else
|
|
|
|
GstPad *pad = GST_VIDEO_DECODER_SINK_PAD (vdec);
|
|
|
|
GstObject *parent = gst_pad_get_parent (pad);
|
2015-04-03 14:08:30 +00:00
|
|
|
ret = plugin->sinkpad_query (pad, parent, query);
|
2015-03-06 12:09:22 +00:00
|
|
|
if (parent)
|
|
|
|
gst_object_unref (parent);
|
|
|
|
#endif
|
|
|
|
break;
|
2013-04-02 14:12:16 +00:00
|
|
|
}
|
2015-03-06 12:09:22 +00:00
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
return ret;
|
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
static gboolean
|
|
|
|
gst_vaapidecode_src_query (GstVideoDecoder * vdec, GstQuery * query)
|
|
|
|
{
|
|
|
|
gboolean ret = TRUE;
|
|
|
|
GstVaapiDecode *const decode = GST_VAAPIDECODE (vdec);
|
|
|
|
GstVaapiPluginBase *const plugin = GST_VAAPI_PLUGIN_BASE (decode);
|
2015-03-02 12:59:16 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
if (gst_vaapi_reply_to_query (query, plugin->display)) {
|
|
|
|
GST_DEBUG_OBJECT (decode, "sharing display %p", plugin->display);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
switch (GST_QUERY_TYPE (query)) {
|
|
|
|
case GST_QUERY_CAPS:{
|
|
|
|
GstCaps *caps, *filter = NULL;
|
|
|
|
GstPad *pad = GST_VIDEO_DECODER_SRC_PAD (vdec);
|
|
|
|
|
|
|
|
gst_query_parse_caps (query, &filter);
|
|
|
|
caps = gst_pad_get_pad_template_caps (pad);
|
|
|
|
|
|
|
|
if (filter) {
|
|
|
|
GstCaps *tmp = caps;
|
|
|
|
caps = gst_caps_intersect_full (filter, tmp, GST_CAPS_INTERSECT_FIRST);
|
|
|
|
gst_caps_unref (tmp);
|
2015-03-02 12:59:16 +00:00
|
|
|
}
|
2015-03-06 12:09:22 +00:00
|
|
|
|
|
|
|
gst_query_set_caps_result (query, caps);
|
|
|
|
gst_caps_unref (caps);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:{
|
|
|
|
#if GST_CHECK_VERSION(1,4,0)
|
|
|
|
ret = GST_VIDEO_DECODER_CLASS (gst_vaapidecode_parent_class)->src_query
|
|
|
|
(vdec, query);
|
|
|
|
#else
|
|
|
|
GstPad *pad = GST_VIDEO_DECODER_SRC_PAD (vdec);
|
|
|
|
GstObject *parent = gst_pad_get_parent (pad);
|
2015-04-03 14:08:30 +00:00
|
|
|
ret = plugin->srcpad_query (pad, parent, query);
|
2015-03-06 12:09:22 +00:00
|
|
|
if (parent)
|
|
|
|
gst_object_unref (parent);
|
|
|
|
#endif
|
|
|
|
break;
|
2015-02-18 11:36:16 +00:00
|
|
|
}
|
2015-03-02 12:59:16 +00:00
|
|
|
}
|
2011-11-04 20:50:15 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
return ret;
|
2011-11-04 20:50:15 +00:00
|
|
|
}
|
|
|
|
|
2010-04-29 17:55:58 +00:00
|
|
|
static void
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapidecode_init (GstVaapiDecode * decode)
|
2010-04-29 17:55:58 +00:00
|
|
|
{
|
2015-03-02 12:59:16 +00:00
|
|
|
GstVideoDecoder *const vdec = GST_VIDEO_DECODER (decode);
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_vaapi_plugin_base_init (GST_VAAPI_PLUGIN_BASE (decode), GST_CAT_DEFAULT);
|
2013-12-13 09:24:26 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
decode->decoder = NULL;
|
|
|
|
decode->decoder_caps = NULL;
|
|
|
|
decode->allowed_caps = NULL;
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
g_mutex_init (&decode->surface_ready_mutex);
|
|
|
|
g_cond_init (&decode->surface_ready);
|
2012-10-04 16:39:53 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_video_decoder_set_packetized (vdec, FALSE);
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-06 12:09:22 +00:00
|
|
|
#if !GST_CHECK_VERSION(1,4,0)
|
2015-03-02 12:59:16 +00:00
|
|
|
/* Pad through which data comes in to the element */
|
2015-03-06 12:09:22 +00:00
|
|
|
GstPad *pad = GST_VAAPI_PLUGIN_BASE_SINK_PAD (decode);
|
2015-03-02 12:59:16 +00:00
|
|
|
gst_pad_set_query_function (pad, GST_DEBUG_FUNCPTR (gst_vaapidecode_query));
|
2010-04-29 17:55:58 +00:00
|
|
|
|
2015-03-02 12:59:16 +00:00
|
|
|
/* Pad through which data goes out of the element */
|
|
|
|
pad = GST_VAAPI_PLUGIN_BASE_SRC_PAD (decode);
|
|
|
|
gst_pad_set_query_function (pad, GST_DEBUG_FUNCPTR (gst_vaapidecode_query));
|
2015-03-06 12:09:22 +00:00
|
|
|
#endif
|
2010-04-29 17:55:58 +00:00
|
|
|
}
|