diff rtpproto.c @ 885:da1d5db0ce5c libavformat

COSMETICS: Remove all trailing whitespace.
author diego
date Sat, 17 Dec 2005 18:14:38 +0000
parents 056991ab9f10
children d70e50f1495f
line wrap: on
line diff
--- a/rtpproto.c	Sat Dec 17 17:57:03 2005 +0000
+++ b/rtpproto.c	Sat Dec 17 18:14:38 2005 +0000
@@ -56,8 +56,8 @@
 
     char buf[1024];
     char path[1024];
-    
-    url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, 
+
+    url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
               path, sizeof(path), uri);
 
     snprintf(buf, sizeof(buf), "udp://%s:%d%s", hostname, port, path);
@@ -101,7 +101,7 @@
 
 /*
  * url syntax: rtp://host:port[?option=val...]
- * option: 'multicast=1' : enable multicast 
+ * option: 'multicast=1' : enable multicast
  *         'ttl=n'       : set the ttl value (for multicast only)
  *         'localport=n' : set the local port to n
  *
@@ -114,15 +114,15 @@
     char buf[1024];
     char path[1024];
     const char *p;
-    
+
     is_output = (flags & URL_WRONLY);
 
     s = av_mallocz(sizeof(RTPContext));
     if (!s)
         return -ENOMEM;
     h->priv_data = s;
-    
-    url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, 
+
+    url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port,
               path, sizeof(path), uri);
     /* extract parameters */
     is_multicast = 0;
@@ -147,18 +147,18 @@
     /* XXX: need to open another connexion if the port is not even */
 
     /* well, should suppress localport in path */
-    
+
     build_udp_url(buf, sizeof(buf),
                   hostname, port + 1, local_port + 1, is_multicast, ttl);
     if (url_open(&s->rtcp_hd, buf, flags) < 0)
         goto fail;
-    
+
     /* just to ease handle access. XXX: need to suppress direct handle
        access */
     s->rtp_fd = udp_get_file_handle(s->rtp_hd);
     s->rtcp_fd = udp_get_file_handle(s->rtcp_hd);
 
-    h->max_packet_size = url_get_max_packet_size(s->rtp_hd); 
+    h->max_packet_size = url_get_max_packet_size(s->rtp_hd);
     h->is_streamed = 1;
     return 0;
 
@@ -235,7 +235,7 @@
     RTPContext *s = h->priv_data;
     int ret;
     URLContext *hd;
-    
+
     if (buf[1] >= 200 && buf[1] <= 204) {
         /* RTCP payload type */
         hd = s->rtcp_hd;