/* GStreamer * Copyright (C) 2017, Collabora Ltd. * Author: Olivier Crete * * 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_SRT_H__ #define __GST_SRT_H__ #include #include #include #include #define SRT_URI_SCHEME "srt" #define SRT_DEFAULT_PORT 7001 #define SRT_DEFAULT_HOST "localhost" #define SRT_DEFAULT_URI SRT_URI_SCHEME"://"SRT_DEFAULT_HOST":"G_STRINGIFY(SRT_DEFAULT_PORT) #define SRT_DEFAULT_LATENCY 125 #define SRT_DEFAULT_KEY_LENGTH 16 G_BEGIN_DECLS SRTSOCKET gst_srt_client_connect (GstElement * elem, int sender, const gchar * host, guint16 port, int rendez_vous, const gchar * bind_address, guint16 bind_port, int latency, GSocketAddress ** socket_address, gint * poll_id, const gchar * passphrase, int key_length); SRTSOCKET gst_srt_server_listen (GstElement * elem, int sender, const gchar * host, guint16 port, gint latency, gint * poll_id, const gchar * passphrase, int key_length); G_END_DECLS #endif /* __GST_SRT_H__ */