comparison utils.c @ 5776:d34f985d6e8f libavformat

Reindent
author mstorsjo
date Mon, 08 Mar 2010 09:05:03 +0000
parents 7a123cc24a81
children 2e42bb81d80b
comparison
equal deleted inserted replaced
5775:7a123cc24a81 5776:d34f985d6e8f
3364 { 3364 {
3365 pkt_dump_internal(avcl, NULL, level, pkt, dump_payload); 3365 pkt_dump_internal(avcl, NULL, level, pkt, dump_payload);
3366 } 3366 }
3367 3367
3368 void ff_url_split(char *proto, int proto_size, 3368 void ff_url_split(char *proto, int proto_size,
3369 char *authorization, int authorization_size, 3369 char *authorization, int authorization_size,
3370 char *hostname, int hostname_size, 3370 char *hostname, int hostname_size,
3371 int *port_ptr, 3371 int *port_ptr,
3372 char *path, int path_size, 3372 char *path, int path_size,
3373 const char *url) 3373 const char *url)
3374 { 3374 {
3375 const char *p, *ls, *at, *col, *brk; 3375 const char *p, *ls, *at, *col, *brk;
3376 3376
3377 if (port_ptr) *port_ptr = -1; 3377 if (port_ptr) *port_ptr = -1;
3378 if (proto_size > 0) proto[0] = 0; 3378 if (proto_size > 0) proto[0] = 0;