mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 23:36:38 +00:00
va: Implement the vavp9enc plugin
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3293>
This commit is contained in:
parent
802a0eb9df
commit
3b57825ca6
4 changed files with 3235 additions and 1 deletions
3191
subprojects/gst-plugins-bad/sys/va/gstvavp9enc.c
Normal file
3191
subprojects/gst-plugins-bad/sys/va/gstvavp9enc.c
Normal file
File diff suppressed because it is too large
Load diff
34
subprojects/gst-plugins-bad/sys/va/gstvavp9enc.h
Normal file
34
subprojects/gst-plugins-bad/sys/va/gstvavp9enc.h
Normal file
|
@ -0,0 +1,34 @@
|
|||
/* GStreamer
|
||||
* Copyright (C) 2022 Intel Corporation
|
||||
* Author: He Junyan <junyan.he@intel.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 "gstvadevice.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
gboolean gst_va_vp9_enc_register (GstPlugin * plugin,
|
||||
GstVaDevice * device,
|
||||
GstCaps * sink_caps,
|
||||
GstCaps * src_caps,
|
||||
guint rank,
|
||||
VAEntrypoint entrypoint);
|
||||
|
||||
G_END_DECLS
|
|
@ -23,6 +23,7 @@ va_sources = [
|
|||
'gstvaprofile.c',
|
||||
'gstvavp8dec.c',
|
||||
'gstvavp9dec.c',
|
||||
'gstvavp9enc.c',
|
||||
'gstvavpp.c',
|
||||
]
|
||||
|
||||
|
@ -80,7 +81,7 @@ gstva = library('gstva',
|
|||
c_args : gst_plugins_bad_args + extra_args,
|
||||
cpp_args : gst_plugins_bad_args + extra_args,
|
||||
include_directories : [configinc],
|
||||
dependencies : [gstcodecs_dep, gstva_dep, libgudev_dep] + extra_dep,
|
||||
dependencies : [gstcodecs_dep, gstva_dep, libgudev_dep, libm] + extra_dep,
|
||||
override_options : c_std_arg,
|
||||
install : true,
|
||||
install_dir : plugins_install_dir,
|
||||
|
|
|
@ -43,6 +43,7 @@
|
|||
#include "gstvaprofile.h"
|
||||
#include "gstvavp8dec.h"
|
||||
#include "gstvavp9dec.h"
|
||||
#include "gstvavp9enc.h"
|
||||
#include "gstvavpp.h"
|
||||
|
||||
#define GST_CAT_DEFAULT gstva_debug
|
||||
|
@ -208,6 +209,13 @@ plugin_register_encoders (GstPlugin * plugin, GstVaDevice * device,
|
|||
device->render_device_path);
|
||||
}
|
||||
break;
|
||||
case VP9:
|
||||
if (!gst_va_vp9_enc_register (plugin, device, sinkcaps, srccaps,
|
||||
GST_RANK_NONE, entrypoint)) {
|
||||
GST_WARNING ("Failed to register VP9 encoder: %s",
|
||||
device->render_device_path);
|
||||
}
|
||||
break;
|
||||
#if VA_CHECK_VERSION(1, 15, 0)
|
||||
case AV1:
|
||||
if (!gst_va_av1_enc_register (plugin, device, sinkcaps, srccaps,
|
||||
|
|
Loading…
Reference in a new issue