2023-02-08 18:12:00 +01:00
|
|
|
/* GStreamer */
|
|
|
|
|
/* SPDX-FileCopyrightText: Copyright © 2018 Wim Taymans */
|
|
|
|
|
/* SPDX-License-Identifier: MIT */
|
2016-08-05 16:39:26 +02:00
|
|
|
|
2017-05-23 19:15:33 +02:00
|
|
|
#ifndef _GST_PIPEWIRE_FORMAT_H_
|
|
|
|
|
#define _GST_PIPEWIRE_FORMAT_H_
|
2016-08-05 16:39:26 +02:00
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
|
2017-11-10 13:36:14 +01:00
|
|
|
#include <spa/pod/pod.h>
|
2016-08-05 16:39:26 +02:00
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
2024-02-02 02:20:29 +01:00
|
|
|
GPtrArray * gst_caps_to_format_all (GstCaps *caps);
|
2016-08-05 16:39:26 +02:00
|
|
|
|
2018-08-23 17:47:57 +02:00
|
|
|
GstCaps * gst_caps_from_format (const struct spa_pod *format);
|
2016-08-05 16:39:26 +02:00
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
|
|
#endif
|