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
4d2de10d
Commit
4d2de10d
authored
Nov 01, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cosmetics (vout).
parent
7a2431ff
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
src/video_output/video_output.c
src/video_output/video_output.c
+1
-3
No files found.
src/video_output/video_output.c
View file @
4d2de10d
...
@@ -1023,15 +1023,13 @@ static void ThreadChangeFilters(vout_thread_t *vout, const char *filters)
...
@@ -1023,15 +1023,13 @@ static void ThreadChangeFilters(vout_thread_t *vout, const char *filters)
vlc_mutex_lock
(
&
vout
->
p
->
filter
.
lock
);
vlc_mutex_lock
(
&
vout
->
p
->
filter
.
lock
);
filter_chain_Reset
(
vout
->
p
->
filter
.
chain_static
,
&
fmt
,
&
fmt
);
filter_chain_Reset
(
vout
->
p
->
filter
.
chain_interactive
,
&
fmt
,
&
fmt
);
for
(
int
a
=
0
;
a
<
2
;
a
++
)
{
for
(
int
a
=
0
;
a
<
2
;
a
++
)
{
vlc_array_t
*
array
=
a
==
0
?
&
array_static
:
vlc_array_t
*
array
=
a
==
0
?
&
array_static
:
&
array_interactive
;
&
array_interactive
;
filter_chain_t
*
chain
=
a
==
0
?
vout
->
p
->
filter
.
chain_static
:
filter_chain_t
*
chain
=
a
==
0
?
vout
->
p
->
filter
.
chain_static
:
vout
->
p
->
filter
.
chain_interactive
;
vout
->
p
->
filter
.
chain_interactive
;
filter_chain_Reset
(
chain
,
&
fmt
,
&
fmt
);
for
(
int
i
=
0
;
i
<
vlc_array_count
(
array
);
i
++
)
{
for
(
int
i
=
0
;
i
<
vlc_array_count
(
array
);
i
++
)
{
vout_filter_t
*
e
=
vlc_array_item_at_index
(
array
,
i
);
vout_filter_t
*
e
=
vlc_array_item_at_index
(
array
,
i
);
msg_Dbg
(
vout
,
"Adding '%s' as %s"
,
e
->
name
,
a
==
0
?
"static"
:
"interactive"
);
msg_Dbg
(
vout
,
"Adding '%s' as %s"
,
e
->
name
,
a
==
0
?
"static"
:
"interactive"
);
...
...
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