mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
a6f18726c1
Based on: https://github.com/OpenVisualCloud/SVT-JPEG-XS/ Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7430>
21 lines
463 B
C
21 lines
463 B
C
/* GStreamer SVT JPEG XS encoder
|
|
* Copyright (C) 2024 Tim-Philipp Müller <tim centricular com>
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.1-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <SvtJpegxsEnc.h>
|
|
|
|
#include <gst/video/video.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define GST_TYPE_SVT_JPEG_XS_ENC (gst_svt_jpeg_xs_enc_get_type())
|
|
|
|
G_DECLARE_FINAL_TYPE (GstSvtJpegXsEnc, gst_svt_jpeg_xs_enc, GST, SVT_JPEG_XS_ENC, GstVideoEncoder);
|
|
|
|
GST_ELEMENT_REGISTER_DECLARE (svtjpegxsenc);
|
|
|
|
G_END_DECLS
|