diff options
author | Seungha Yang <seungha.yang@navercorp.com> | 2018-07-20 12:10:21 +0900 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2018-07-30 16:44:51 -0400 |
commit | aafdfdb5e49d9a7bbac0302830c7fd4e02e2cebe (patch) | |
tree | 721749cefd6d58df105a9dc5095a08abd584f0bb /ext/srt/gstsrtserversrc.c | |
parent | 5c52f866ad36784fd66a6bd74915bfb911915ae7 (diff) | |
download | gstreamer-plugins-bad-aafdfdb5e49d9a7bbac0302830c7fd4e02e2cebe.tar.gz |
srt: Remove white space
https://bugzilla.gnome.org/show_bug.cgi?id=796842
Diffstat (limited to 'ext/srt/gstsrtserversrc.c')
-rw-r--r-- | ext/srt/gstsrtserversrc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/srt/gstsrtserversrc.c b/ext/srt/gstsrtserversrc.c index a44c2af32..a9e5d8526 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 <justin.kim@collabora.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 @@ -30,9 +30,9 @@ * <title>Examples</title> * |[ * 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. * </refsect2> - * + * */ #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] = |