diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-06 19:44:58 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2005-12-06 19:44:58 +0000 |
commit | 3ecf433432289b9c1990165f65bdd51aaad2eaa7 (patch) | |
tree | dc7bd5c5b4eb37d49b1a37ca1f33c9d9ed2a8374 /gst/rtsp/gstrtspsrc.c | |
parent | f2085bd7ef2a4e685b8a58ae0848c43aab0d8747 (diff) |
expand tabs
Original commit message from CVS:
expand tabs
Diffstat (limited to 'gst/rtsp/gstrtspsrc.c')
-rw-r--r-- | gst/rtsp/gstrtspsrc.c | 54 |
1 files changed, 27 insertions, 27 deletions
diff --git a/gst/rtsp/gstrtspsrc.c b/gst/rtsp/gstrtspsrc.c index da6e79bf..70110501 100644 --- a/gst/rtsp/gstrtspsrc.c +++ b/gst/rtsp/gstrtspsrc.c @@ -52,9 +52,9 @@ enum LAST_SIGNAL }; -#define DEFAULT_LOCATION NULL -#define DEFAULT_PROTOCOLS GST_RTSP_PROTO_UDP_UNICAST | GST_RTSP_PROTO_UDP_MULTICAST | GST_RTSP_PROTO_TCP -#define DEFAULT_DEBUG FALSE +#define DEFAULT_LOCATION NULL +#define DEFAULT_PROTOCOLS GST_RTSP_PROTO_UDP_UNICAST | GST_RTSP_PROTO_UDP_MULTICAST | GST_RTSP_PROTO_TCP +#define DEFAULT_DEBUG FALSE enum { @@ -300,34 +300,34 @@ done: return ret; } -#define PARSE_INT(p, del, res) \ -G_STMT_START { \ - gchar *t = p; \ - p = strstr (p, del); \ - if (p == NULL) \ - res = -1; \ - else { \ - *p = '\0'; \ - p++; \ - res = atoi (t); \ - } \ +#define PARSE_INT(p, del, res) \ +G_STMT_START { \ + gchar *t = p; \ + p = strstr (p, del); \ + if (p == NULL) \ + res = -1; \ + else { \ + *p = '\0'; \ + p++; \ + res = atoi (t); \ + } \ } G_STMT_END -#define PARSE_STRING(p, del, res) \ -G_STMT_START { \ - gchar *t = p; \ - p = strstr (p, del); \ - if (p == NULL) \ - res = NULL; \ - else { \ - *p = '\0'; \ - p++; \ - res = t; \ - } \ +#define PARSE_STRING(p, del, res) \ +G_STMT_START { \ + gchar *t = p; \ + p = strstr (p, del); \ + if (p == NULL) \ + res = NULL; \ + else { \ + *p = '\0'; \ + p++; \ + res = t; \ + } \ } G_STMT_END -#define SKIP_SPACES(p) \ - while (*p && g_ascii_isspace (*p)) \ +#define SKIP_SPACES(p) \ + while (*p && g_ascii_isspace (*p)) \ p++; static gboolean |