From aafdfdb5e49d9a7bbac0302830c7fd4e02e2cebe Mon Sep 17 00:00:00 2001 From: Seungha Yang Date: Fri, 20 Jul 2018 12:10:21 +0900 Subject: [PATCH] srt: Remove white space https://bugzilla.gnome.org/show_bug.cgi?id=796842 --- ext/srt/gstsrtbasesink.h | 2 +- ext/srt/gstsrtbasesrc.c | 4 ++-- ext/srt/gstsrtbasesrc.h | 3 ++- ext/srt/gstsrtclientsink.c | 2 +- ext/srt/gstsrtclientsink.h | 2 +- ext/srt/gstsrtclientsrc.c | 6 +++--- ext/srt/gstsrtclientsrc.h | 2 +- ext/srt/gstsrtserversink.c | 6 +++--- ext/srt/gstsrtserversink.h | 2 +- ext/srt/gstsrtserversrc.c | 10 +++++----- ext/srt/gstsrtserversrc.h | 2 +- 11 files changed, 21 insertions(+), 20 deletions(-) diff --git a/ext/srt/gstsrtbasesink.h b/ext/srt/gstsrtbasesink.h index 9d617d5fd3..55b40a1aea 100644 --- a/ext/srt/gstsrtbasesink.h +++ b/ext/srt/gstsrtbasesink.h @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 diff --git a/ext/srt/gstsrtbasesrc.c b/ext/srt/gstsrtbasesrc.c index 29ab55caf5..027c171813 100644 --- a/ext/srt/gstsrtbasesrc.c +++ b/ext/srt/gstsrtbasesrc.c @@ -1,7 +1,7 @@ /* GStreamer SRT plugin based on libsrt * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 @@ -179,7 +179,7 @@ gst_srt_base_src_class_init (GstSRTBaseSrcClass * klass) /** * GstSRTBaseSrc:uri: - * + * * The URI used by SRT Connection. */ properties[PROP_URI] = g_param_spec_string ("uri", "URI", diff --git a/ext/srt/gstsrtbasesrc.h b/ext/srt/gstsrtbasesrc.h index b55a05eead..270a1c4601 100644 --- a/ext/srt/gstsrtbasesrc.h +++ b/ext/srt/gstsrtbasesrc.h @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 @@ -47,6 +47,7 @@ struct _GstSRTBaseSrc { gchar *passphrase; gint key_length; + /*< private >*/ gpointer _gst_reserved[GST_PADDING]; }; diff --git a/ext/srt/gstsrtclientsink.c b/ext/srt/gstsrtclientsink.c index 09de74eb69..92e10878aa 100644 --- a/ext/srt/gstsrtclientsink.c +++ b/ext/srt/gstsrtclientsink.c @@ -1,7 +1,7 @@ /* GStreamer SRT plugin based on libsrt * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 diff --git a/ext/srt/gstsrtclientsink.h b/ext/srt/gstsrtclientsink.h index e910050252..ecc439ec62 100644 --- a/ext/srt/gstsrtclientsink.h +++ b/ext/srt/gstsrtclientsink.h @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 diff --git a/ext/srt/gstsrtclientsrc.c b/ext/srt/gstsrtclientsrc.c index a0d2e7d517..e54dda67a5 100644 --- a/ext/srt/gstsrtclientsrc.c +++ b/ext/srt/gstsrtclientsrc.c @@ -1,7 +1,7 @@ /* GStreamer SRT plugin based on libsrt * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 @@ -284,8 +284,8 @@ gst_srt_client_src_class_init (GstSRTClientSrcClass * klass) /** * GstSRTClientSrc:poll-timeout: - * - * The timeout(ms) value when polling SRT socket. + * + * The timeout(ms) value when polling SRT socket. */ properties[PROP_POLL_TIMEOUT] = g_param_spec_int ("poll-timeout", "Poll timeout", diff --git a/ext/srt/gstsrtclientsrc.h b/ext/srt/gstsrtclientsrc.h index b2003b6ace..99c5a0e8ff 100644 --- a/ext/srt/gstsrtclientsrc.h +++ b/ext/srt/gstsrtclientsrc.h @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 diff --git a/ext/srt/gstsrtserversink.c b/ext/srt/gstsrtserversink.c index d704000e5d..6ef8af45ba 100644 --- a/ext/srt/gstsrtserversink.c +++ b/ext/srt/gstsrtserversink.c @@ -1,7 +1,7 @@ /* GStreamer SRT plugin based on libsrt * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 @@ -32,7 +32,7 @@ * gst-launch-1.0 -v audiotestsrc ! srtserversink * ]| This pipeline shows how to serve SRT packets through the default port. * - * + * */ #ifdef HAVE_CONFIG_H @@ -537,7 +537,7 @@ gst_srt_server_sink_class_init (GstSRTServerSinkClass * klass) * @sock: the client socket descriptor that was added to srtserversink * @addr: the pointer of "struct sockaddr" that describes the @sock * @addr_len: the length of @addr - * + * * The given socket descriptor was added to srtserversink. */ signals[SIG_CLIENT_ADDED] = diff --git a/ext/srt/gstsrtserversink.h b/ext/srt/gstsrtserversink.h index 8a11f88334..b5f5586696 100644 --- a/ext/srt/gstsrtserversink.h +++ b/ext/srt/gstsrtserversink.h @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 diff --git a/ext/srt/gstsrtserversrc.c b/ext/srt/gstsrtserversrc.c index a44c2af325..a9e5d85264 100644 --- a/ext/srt/gstsrtserversrc.c +++ b/ext/srt/gstsrtserversrc.c @@ -1,7 +1,7 @@ /* GStreamer SRT plugin based on libsrt * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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 @@ -30,9 +30,9 @@ * Examples * |[ * gst-launch-1.0 -v srtserversrc uri="srt://:7001" ! fakesink - * ]| This pipeline shows how to bind SRT server by setting #GstSRTServerSrc:uri property. + * ]| This pipeline shows how to bind SRT server by setting #GstSRTServerSrc:uri property. * - * + * */ #ifdef HAVE_CONFIG_H @@ -441,7 +441,7 @@ gst_srt_server_src_class_init (GstSRTServerSrcClass * klass) /** * GstSRTServerSrc:poll-timeout: - * + * * The timeout(ms) value when polling SRT socket. For #GstSRTServerSrc, * this value shouldn't be set as -1 (infinite) because "srt_epoll_wait" * isn't cancellable unless closing the socket. @@ -459,7 +459,7 @@ gst_srt_server_src_class_init (GstSRTServerSrcClass * klass) * @sock: the client socket descriptor that was added to srtserversrc * @addr: the pointer of "struct sockaddr" that describes the @sock * @addr_len: the length of @addr - * + * * The given socket descriptor was added to srtserversrc. */ signals[SIG_CLIENT_ADDED] = diff --git a/ext/srt/gstsrtserversrc.h b/ext/srt/gstsrtserversrc.h index db4f01acd9..772be9cb70 100644 --- a/ext/srt/gstsrtserversrc.h +++ b/ext/srt/gstsrtserversrc.h @@ -1,7 +1,7 @@ /* GStreamer * Copyright (C) 2017, Collabora Ltd. * Author:Justin Kim - * + * * 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