gstreamer/subprojects/gst-plugins-bad/sys/nvcodec/gstnvvp9dec.h
Seungha Yang 42560c24df nvdecoder: Add support for D3D11 output
Since DXVA does not support some profiles such as HEVC RExt,
vendor specific decoding API is still required.
When decoder is negotiated with d3d11 caps, decoder will convert
semi-planar frame to planar since semi-planar format (e.g.,
DXGI_FORMAT_NV12) is not supported by CUDA/D3D11 interop.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5409>
2023-09-29 12:36:01 +00:00

38 lines
1.3 KiB
C

/* GStreamer
* Copyright (C) 2020 Seungha Yang <seungha@centricular.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.
*/
#ifndef __GST_NV_VP9_DEC_H__
#define __GST_NV_VP9_DEC_H__
#include <gst/gst.h>
#include <gst/codecs/gstvp9decoder.h>
G_BEGIN_DECLS
void gst_nv_vp9_dec_register (GstPlugin * plugin,
guint device_id,
gint64 adapter_luid,
guint rank,
GstCaps * sink_caps,
GstCaps * src_caps);
G_END_DECLS
#endif /* __GST_NV_VP9_DEC_H__ */