diff options
author | Martin Storsjö <martin@martin.st> | 2010-03-08 09:05:03 +0000 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2010-03-08 09:05:03 +0000 |
commit | f984dcf6dd3549b50e0ec40872b9485ac3d11f0e (patch) | |
tree | d40dbc095c9967000db3dbf7930a60a213cdb687 /libavformat/rtsp.c | |
parent | c5c6e67c28e0e30b681cff55e8d85bb963d8640e (diff) | |
download | ffmpeg-f984dcf6dd3549b50e0ec40872b9485ac3d11f0e.tar.gz |
Reindent
Originally committed as revision 22322 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r-- | libavformat/rtsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index f8387f1ee9..8550bf2912 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -447,7 +447,7 @@ static void sdp_parse_line(AVFormatContext *s, SDPParseState *s1, /* XXX: may need to add full url resolution */ ff_url_split(proto, sizeof(proto), NULL, 0, NULL, 0, - NULL, NULL, 0, p); + NULL, NULL, 0, p); if (proto[0] == '\0') { /* relative control URL */ if (rtsp_st->control_url[strlen(rtsp_st->control_url)-1]!='/') @@ -1391,7 +1391,7 @@ int ff_rtsp_connect(AVFormatContext *s) redirect: /* extract hostname and port */ ff_url_split(NULL, 0, auth, sizeof(auth), - host, sizeof(host), &port, path, sizeof(path), s->filename); + host, sizeof(host), &port, path, sizeof(path), s->filename); if (*auth) { int auth_len = strlen(auth), b64_len = ((auth_len + 2) / 3) * 4 + 1; |