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
67f455a8
Commit
67f455a8
authored
Sep 08, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not call vlc_thread_ready with non-waiting vlc_thread_create
parent
1bf1f77f
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
9 deletions
+0
-9
modules/access_output/bonjour.c
modules/access_output/bonjour.c
+0
-1
modules/audio_output/directx.c
modules/audio_output/directx.c
+0
-3
modules/video_filter/atmo/AtmoThread.cpp
modules/video_filter/atmo/AtmoThread.cpp
+0
-3
modules/video_filter/atmo/atmo.cpp
modules/video_filter/atmo/atmo.cpp
+0
-2
No files found.
modules/access_output/bonjour.c
View file @
67f455a8
...
...
@@ -175,7 +175,6 @@ static void client_callback( AvahiClient *c,
static
void
*
poll_iterate_thread
(
vlc_object_t
*
p_this
)
{
poll_thread_t
*
p_pt
=
(
poll_thread_t
*
)
p_this
;
vlc_thread_ready
(
p_pt
);
int
canc
=
vlc_savecancel
();
while
(
vlc_object_alive
(
p_pt
)
)
...
...
modules/audio_output/directx.c
View file @
67f455a8
...
...
@@ -1059,9 +1059,6 @@ static void* DirectSoundThread( vlc_object_t *p_this )
/* We don't want any resampling when using S/PDIF output */
b_sleek
=
p_aout
->
output
.
output
.
i_format
==
VLC_FOURCC
(
's'
,
'p'
,
'd'
,
'i'
);
/* Tell the main thread that we are ready */
vlc_thread_ready
(
p_notif
);
msg_Dbg
(
p_notif
,
"DirectSoundThread ready"
);
/* Wait here until Play() is called */
...
...
modules/video_filter/atmo/AtmoThread.cpp
View file @
67f455a8
...
...
@@ -74,9 +74,6 @@ void *CThread::ThreadProc(vlc_object_t *obj)
if
(
pThread
)
{
int
canc
;
// give feedback I'am running?
vlc_thread_ready
(
pThread
->
m_pAtmoThread
);
canc
=
vlc_savecancel
();
pThread
->
Execute
();
vlc_restorecancel
(
canc
);
...
...
modules/video_filter/atmo/atmo.cpp
View file @
67f455a8
...
...
@@ -1737,8 +1737,6 @@ static void *FadeToColorThread(vlc_object_t *obj)
int
i_src_green
;
int
i_src_blue
;
vlc_thread_ready
(
p_fadethread
);
uint8_t
*
p_source
=
NULL
;
int
canc
=
vlc_savecancel
();
...
...
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