Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
15848c62
Commit
15848c62
authored
Jan 24, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avdevice/dshow_crossbar: Avoid mixing declarations and statements
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
77140279
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
dshow_crossbar.c
libavdevice/dshow_crossbar.c
+2
-1
No files found.
libavdevice/dshow_crossbar.c
View file @
15848c62
...
...
@@ -75,6 +75,7 @@ setup_crossbar_options(IAMCrossbar *cross_bar, enum dshowDeviceType devtype, AVF
for
(
i
=
0
;
i
<
count_output_pins
;
i
++
)
{
int
j
;
long
related_pin
,
pin_type
,
route_to_pin
;
hr
=
IAMCrossbar_get_CrossbarPinInfo
(
cross_bar
,
FALSE
,
i
,
&
related_pin
,
&
pin_type
);
if
(
pin_type
==
PhysConn_Video_VideoDecoder
)
{
...
...
@@ -109,7 +110,7 @@ setup_crossbar_options(IAMCrossbar *cross_bar, enum dshowDeviceType devtype, AVF
av_log
(
avctx
,
log_level
,
"current input pin: %ld "
,
route_to_pin
);
av_log
(
avctx
,
log_level
,
"compatible input pins: "
);
for
(
int
j
=
0
;
j
<
count_input_pins
;
j
++
)
for
(
j
=
0
;
j
<
count_input_pins
;
j
++
)
{
hr
=
IAMCrossbar_CanRoute
(
cross_bar
,
i
,
j
);
if
(
hr
==
S_OK
)
...
...
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