Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
49245e40
Commit
49245e40
authored
Sep 27, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/access/mms/mms.c: set the priority to -1 and added an http shortcut.
parent
3c520c89
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/access/mms/mms.c
modules/access/mms/mms.c
+4
-2
No files found.
modules/access/mms/mms.c
View file @
49245e40
...
@@ -56,7 +56,7 @@ static void Close( vlc_object_t * );
...
@@ -56,7 +56,7 @@ static void Close( vlc_object_t * );
vlc_module_begin
();
vlc_module_begin
();
set_description
(
_
(
"Microsoft Media Server (MMS) input"
)
);
set_description
(
_
(
"Microsoft Media Server (MMS) input"
)
);
set_capability
(
"access2"
,
0
);
set_capability
(
"access2"
,
-
1
);
add_integer
(
"mms-caching"
,
4
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
add_integer
(
"mms-caching"
,
4
*
DEFAULT_PTS_DELAY
/
1000
,
NULL
,
CACHING_TEXT
,
CACHING_LONGTEXT
,
VLC_TRUE
);
CACHING_TEXT
,
CACHING_LONGTEXT
,
VLC_TRUE
);
...
@@ -69,6 +69,7 @@ vlc_module_begin();
...
@@ -69,6 +69,7 @@ vlc_module_begin();
add_shortcut
(
"mmsu"
);
add_shortcut
(
"mmsu"
);
add_shortcut
(
"mmst"
);
add_shortcut
(
"mmst"
);
add_shortcut
(
"mmsh"
);
add_shortcut
(
"mmsh"
);
add_shortcut
(
"http"
);
set_callbacks
(
Open
,
Close
);
set_callbacks
(
Open
,
Close
);
vlc_module_end
();
vlc_module_end
();
...
@@ -106,7 +107,8 @@ static int Open( vlc_object_t *p_this )
...
@@ -106,7 +107,8 @@ static int Open( vlc_object_t *p_this )
{
{
return
E_
(
MMSTUOpen
)(
p_access
);
return
E_
(
MMSTUOpen
)(
p_access
);
}
}
else
if
(
!
strncmp
(
p_access
->
psz_access
,
"mmsh"
,
4
)
)
else
if
(
!
strncmp
(
p_access
->
psz_access
,
"mmsh"
,
4
)
||
!
strncmp
(
p_access
->
psz_access
,
"http"
,
4
)
)
{
{
return
E_
(
MMSHOpen
)(
p_access
);
return
E_
(
MMSHOpen
)(
p_access
);
}
}
...
...
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