Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
21c7ad61
Commit
21c7ad61
authored
May 06, 2003
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* mms: fix for builtin compilation.
parent
83a27288
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
26 deletions
+9
-26
modules/access/mms/mms.c
modules/access/mms/mms.c
+8
-8
modules/access/mms/mmsh.h
modules/access/mms/mmsh.h
+1
-18
No files found.
modules/access/mms/mms.c
View file @
21c7ad61
...
...
@@ -2,7 +2,7 @@
* mms.c: MMS over tcp, udp and http access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mms.c,v 1.3
2 2003/04/20 19:29:43
fenrir Exp $
* $Id: mms.c,v 1.3
3 2003/05/06 02:01:35
fenrir Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
*
...
...
@@ -96,24 +96,24 @@ static int Open( vlc_object_t *p_this )
{
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
)
)
{
return
MMSTUOpen
(
p_input
);
return
E_
(
MMSTUOpen
)
(
p_input
);
}
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
)
{
i_err
=
MMSHOpen
(
p_input
);
i_err
=
E_
(
MMSHOpen
)
(
p_input
);
}
return
i_err
;
...
...
@@ -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
)
{
MMSTUClose
(
p_input
);
E_
(
MMSTUClose
)
(
p_input
);
}
else
if
(
p_sys
->
i_proto
==
MMS_PROTO_HTTP
)
{
MMSHClose
(
p_input
);
E_
(
MMSHClose
)
(
p_input
);
}
}
...
...
modules/access/mms/mmsh.h
View file @
21c7ad61
...
...
@@ -2,7 +2,7 @@
* mmsh.h:
*****************************************************************************
* 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>
*
...
...
@@ -21,23 +21,6 @@
* 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
{
uint16_t
i_type
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment