mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
79d11c2022
New plugin with an element for H.264 decoding with VA-API. This novel approach, different from gstreamer-vaapi, uses gstcodecs library for state handling. The code is expected to looks cleaner because it uses VA-API without further layers or wrappers. * It uses the first supported DRM device as default VA display (other displays will be supported through user's GstContext) * Requires libva >= 1.6 * No multiview/stereo profiles neither interlaced streams because gstcodecs doesn't handle them yet * It is incompatible with gstreamer-vaapi * Even if memory:VAMemory is exposed, it is not handled yet by any other element * Caps templates are generated dynamically querying VAAPI, but YV12 and I420 are added for system memory caps because they seem to be supported for all the drivers when downloading frames onto main memory, as they are used by xvimagesink and others, avoiding color conversion. * Surfaces aren't bounded to context, so they can grow beyond the DBP size, allowing smooth reverse playback. * There isn't yet error handling and recovery. * 10-bit H.264 streams aren't supported by libva. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/1379>
46 lines
1.6 KiB
C
46 lines
1.6 KiB
C
/* GStreamer
|
|
* Copyright (C) 2020 Igalia, S.L.
|
|
* Author: Víctor Jáquez <vjaquez@igalia.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <gst/gst.h>
|
|
#include <va/va.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
typedef enum
|
|
{
|
|
AV1 = GST_MAKE_FOURCC ('A', 'V', '0', '1'),
|
|
H263 = GST_MAKE_FOURCC ('H', '2', '6', '3'),
|
|
H264 = GST_MAKE_FOURCC ('H', '2', '6', '4'),
|
|
HEVC = GST_MAKE_FOURCC ('H', '2', '6', '5'),
|
|
JPEG = GST_MAKE_FOURCC ('J', 'P', 'E', 'G'),
|
|
MPEG2 = GST_MAKE_FOURCC ('M', 'P', 'E', 'G'),
|
|
MPEG4 = GST_MAKE_FOURCC ('M', 'P', 'G', '4'),
|
|
VC1 = GST_MAKE_FOURCC ('W', 'M', 'V', '3'),
|
|
VP8 = GST_MAKE_FOURCC ('V', 'P', '8', '0'),
|
|
VP9 = GST_MAKE_FOURCC ('V', 'P', '9', '0'),
|
|
} GstVaCodecs;
|
|
|
|
guint32 gst_va_profile_codec (VAProfile profile);
|
|
GstCaps * gst_va_profile_caps (VAProfile profile);
|
|
const gchar * gst_va_profile_name (VAProfile profile);
|
|
|
|
G_END_DECLS
|