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
42ef22bf
Commit
42ef22bf
authored
Feb 10, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed invalid var_Create type in mmsh.
parent
f5db1a38
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/access/mms/mmsh.c
modules/access/mms/mmsh.c
+4
-4
No files found.
modules/access/mms/mmsh.c
View file @
42ef22bf
...
...
@@ -464,8 +464,8 @@ static int Reset( access_t *p_access )
asf_StreamSelect
(
&
p_sys
->
asfh
,
var_CreateGetInteger
(
p_access
,
"mms-maxbitrate"
),
var_CreateGetBool
(
p_access
,
"mms-all"
),
var_CreateGet
Integer
(
p_access
,
"audio"
),
var_CreateGet
Integer
(
p_access
,
"video"
)
);
var_CreateGet
Bool
(
p_access
,
"audio"
),
var_CreateGet
Bool
(
p_access
,
"video"
)
);
/* Check we have comptible asfh */
for
(
i
=
1
;
i
<
128
;
i
++
)
...
...
@@ -701,8 +701,8 @@ static int Describe( access_t *p_access, char **ppsz_location )
asf_StreamSelect
(
&
p_sys
->
asfh
,
var_CreateGetInteger
(
p_access
,
"mms-maxbitrate"
),
var_CreateGetBool
(
p_access
,
"mms-all"
),
var_CreateGet
Integer
(
p_access
,
"audio"
),
var_CreateGet
Integer
(
p_access
,
"video"
)
);
var_CreateGet
Bool
(
p_access
,
"audio"
),
var_CreateGet
Bool
(
p_access
,
"video"
)
);
return
VLC_SUCCESS
;
error:
...
...
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