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
dca8d565
Commit
dca8d565
authored
Mar 05, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed vout_thread_t object link in fullscreen controler.
parent
91082b5b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/gui/qt4/components/controller.cpp
modules/gui/qt4/components/controller.cpp
+3
-1
No files found.
modules/gui/qt4/components/controller.cpp
View file @
dca8d565
...
@@ -999,6 +999,8 @@ void FullscreenControllerWidget::setVoutList( vout_thread_t **pp_vout, int i_vou
...
@@ -999,6 +999,8 @@ void FullscreenControllerWidget::setVoutList( vout_thread_t **pp_vout, int i_vou
fullscreenChanged
(
p_vout
,
false
,
0
);
fullscreenChanged
(
p_vout
,
false
,
0
);
vout
.
removeAll
(
p_vout
);
vout
.
removeAll
(
p_vout
);
vlc_mutex_unlock
(
&
lock
);
vlc_mutex_unlock
(
&
lock
);
vlc_object_release
(
VLC_OBJECT
(
p_vout
)
);
}
}
/* Vout to track */
/* Vout to track */
...
@@ -1012,7 +1014,7 @@ void FullscreenControllerWidget::setVoutList( vout_thread_t **pp_vout, int i_vou
...
@@ -1012,7 +1014,7 @@ void FullscreenControllerWidget::setVoutList( vout_thread_t **pp_vout, int i_vou
foreach
(
vout_thread_t
*
p_vout
,
add
)
foreach
(
vout_thread_t
*
p_vout
,
add
)
{
{
vlc_object_hold
(
(
vlc_object_t
*
)
p_vout
);
vlc_object_hold
(
VLC_OBJECT
(
p_vout
)
);
vlc_mutex_lock
(
&
lock
);
vlc_mutex_lock
(
&
lock
);
vout
.
append
(
p_vout
);
vout
.
append
(
p_vout
);
...
...
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