[FFmpeg-soc] [soc]: r5927 - mms/mmsh.c
spyfeng
subversion at mplayerhq.hu
Thu Aug 19 17:44:27 CEST 2010
Author: spyfeng
Date: Thu Aug 19 17:44:27 2010
New Revision: 5927
Log:
use av_url_split() instead of ff_url_split().
Modified:
mms/mmsh.c
Modified: mms/mmsh.c
==============================================================================
--- mms/mmsh.c Thu Aug 19 17:33:08 2010 (r5926)
+++ mms/mmsh.c Thu Aug 19 17:44:27 2010 (r5927)
@@ -27,7 +27,7 @@
#include <string.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/avstring.h"
-#include "libavutil/internal.h"
+#include "libavformat/internal.h"
#include "mms.h"
#include "asf.h"
#include "http.h"
@@ -225,7 +225,7 @@ static int mmsh_open(URLContext *h, cons
mms = &mmsh->mms;
av_strlcpy(location, uri, sizeof(location));
- ff_url_split(NULL, 0, NULL, 0,
+ av_url_split(NULL, 0, NULL, 0,
host, sizeof(host), &port, path, sizeof(path), location);
if (port<0)
port = 80; // default mmsh protocol port
More information about the FFmpeg-soc
mailing list