mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-22 17:51:16 +00:00
49 lines
1.5 KiB
C
49 lines
1.5 KiB
C
/* Support for JPEG-XS
|
|
*
|
|
* Copyright (C) <2024> Centricular ltd
|
|
* @author Edward Hervey <edward@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.
|
|
*
|
|
* SPDX-License-Identifier: LGPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef __BASETSMUX_JPEGXS_H__
|
|
#define __BASETSMUX_JPEGXS_H__
|
|
|
|
#include "glib.h"
|
|
#include "gstbasetsmux.h"
|
|
|
|
typedef struct jpegxs_private_data
|
|
{
|
|
guint32 brat;
|
|
guint32 frat;
|
|
guint16 schar;
|
|
guint16 Ppih;
|
|
guint16 Plev;
|
|
guint8 color_primaries;
|
|
guint8 transfer_characteristics;
|
|
guint8 matrix_coefficients;
|
|
gboolean video_full_range_flag;
|
|
guint32 tcod;
|
|
} jpegxs_private_data;
|
|
|
|
GstBuffer *gst_base_ts_mux_prepare_jpegxs (GstBuffer * buf, GstBaseTsMuxPad * pad,
|
|
GstBaseTsMux * mux);
|
|
|
|
void gst_base_ts_mux_free_jpegxs (gpointer prepare_data);
|
|
|
|
#endif /* __BASETSMUX_JPEGXS_H__ */
|