Commit 21c7ad61 authored by Laurent Aimar's avatar Laurent Aimar

* mms: fix for builtin compilation.

parent 83a27288
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mms.c: MMS over tcp, udp and http access plug-in * mms.c: MMS over tcp, udp and http access plug-in
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: mms.c,v 1.32 2003/04/20 19:29:43 fenrir Exp $ * $Id: mms.c,v 1.33 2003/05/06 02:01:35 fenrir Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -96,24 +96,24 @@ static int Open( vlc_object_t *p_this ) ...@@ -96,24 +96,24 @@ static int Open( vlc_object_t *p_this )
{ {
if( !strncmp( p_input->psz_access, "mmsu", 4 ) ) if( !strncmp( p_input->psz_access, "mmsu", 4 ) )
{ {
return MMSTUOpen( p_input ); return E_( MMSTUOpen )( p_input );
} }
else if( !strncmp( p_input->psz_access, "mmst", 4 ) ) else if( !strncmp( p_input->psz_access, "mmst", 4 ) )
{ {
return MMSTUOpen( p_input ); return E_( MMSTUOpen )( p_input );
} }
else if( !strncmp( p_input->psz_access, "mmsh", 4 ) ) else if( !strncmp( p_input->psz_access, "mmsh", 4 ) )
{ {
return MMSHOpen( p_input ); return E_( MMSHOpen )( p_input );
} }
} }
i_err = MMSTUOpen( p_input ); i_err = E_( MMSTUOpen )( p_input );
if( i_err ) if( i_err )
{ {
i_err = MMSHOpen( p_input ); i_err = E_( MMSHOpen )( p_input );
} }
return i_err; return i_err;
...@@ -129,11 +129,11 @@ static void Close( vlc_object_t *p_this ) ...@@ -129,11 +129,11 @@ static void Close( vlc_object_t *p_this )
if( p_sys->i_proto == MMS_PROTO_TCP || p_sys->i_proto == MMS_PROTO_UDP ) if( p_sys->i_proto == MMS_PROTO_TCP || p_sys->i_proto == MMS_PROTO_UDP )
{ {
MMSTUClose( p_input ); E_( MMSTUClose )( p_input );
} }
else if( p_sys->i_proto == MMS_PROTO_HTTP ) else if( p_sys->i_proto == MMS_PROTO_HTTP )
{ {
MMSHClose( p_input ); E_( MMSHClose )( p_input );
} }
} }
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mmsh.h: * mmsh.h:
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: mmsh.h,v 1.1 2003/04/20 19:29:43 fenrir Exp $ * $Id: mmsh.h,v 1.2 2003/05/06 02:01:35 fenrir Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -21,23 +21,6 @@ ...@@ -21,23 +21,6 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
*****************************************************************************/ *****************************************************************************/
#if 0
/* url: [/]host[:port][/path][@username[:password]] */
typedef struct url_s
{
char *psz_host;
int i_port;
char *psz_path;
char *psz_username;
char *psz_password;
} url_t;
static url_t *url_new ( char * );
static void url_free ( url_t * );
#endif
typedef struct typedef struct
{ {
uint16_t i_type; uint16_t i_type;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment