Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
0f1bed44
Commit
0f1bed44
authored
Jun 09, 2006
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Dshow input fix (suggest by "sneeze" on
http://forum.videolan.org/viewtopic.php?t=21578
, Thanks).
parent
1f1c0508
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+4
-4
No files found.
modules/access/dshow/dshow.cpp
View file @
0f1bed44
...
@@ -477,16 +477,16 @@ static int CommonOpen( vlc_object_t *p_this, access_sys_t *p_sys,
...
@@ -477,16 +477,16 @@ static int CommonOpen( vlc_object_t *p_this, access_sys_t *p_sys,
for
(
i
=
p_sys
->
i_crossbar_route_depth
-
1
;
i
>=
0
;
--
i
)
for
(
i
=
p_sys
->
i_crossbar_route_depth
-
1
;
i
>=
0
;
--
i
)
{
{
var_Get
(
p_this
,
"dshow-video-input"
,
&
val
);
var_Get
(
p_this
,
"dshow-video-input"
,
&
val
);
if
(
val
.
i_int
>
0
)
if
(
val
.
i_int
>
=
0
)
p_sys
->
crossbar_routes
[
i
].
VideoInputIndex
=
val
.
i_int
;
p_sys
->
crossbar_routes
[
i
].
VideoInputIndex
=
val
.
i_int
;
var_Get
(
p_this
,
"dshow-video-output"
,
&
val
);
var_Get
(
p_this
,
"dshow-video-output"
,
&
val
);
if
(
val
.
i_int
>
0
)
if
(
val
.
i_int
>
=
0
)
p_sys
->
crossbar_routes
[
i
].
VideoOutputIndex
=
val
.
i_int
;
p_sys
->
crossbar_routes
[
i
].
VideoOutputIndex
=
val
.
i_int
;
var_Get
(
p_this
,
"dshow-audio-input"
,
&
val
);
var_Get
(
p_this
,
"dshow-audio-input"
,
&
val
);
if
(
val
.
i_int
>
0
)
if
(
val
.
i_int
>
=
0
)
p_sys
->
crossbar_routes
[
i
].
AudioInputIndex
=
val
.
i_int
;
p_sys
->
crossbar_routes
[
i
].
AudioInputIndex
=
val
.
i_int
;
var_Get
(
p_this
,
"dshow-audio-output"
,
&
val
);
var_Get
(
p_this
,
"dshow-audio-output"
,
&
val
);
if
(
val
.
i_int
>
0
)
if
(
val
.
i_int
>
=
0
)
p_sys
->
crossbar_routes
[
i
].
AudioOutputIndex
=
val
.
i_int
;
p_sys
->
crossbar_routes
[
i
].
AudioOutputIndex
=
val
.
i_int
;
IAMCrossbar
*
pXbar
=
p_sys
->
crossbar_routes
[
i
].
pXbar
;
IAMCrossbar
*
pXbar
=
p_sys
->
crossbar_routes
[
i
].
pXbar
;
...
...
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