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
5b638392
Commit
5b638392
authored
Sep 06, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vlc_cond_init: really remove useless parameter
parent
75fb09e9
Changes
19
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
22 additions
and
28 deletions
+22
-28
include/vlc_threads.h
include/vlc_threads.h
+1
-7
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+1
-1
modules/access/dvb/http.c
modules/access/dvb/http.c
+1
-1
modules/access/rtmp/access.c
modules/access/rtmp/access.c
+1
-1
modules/access_output/rtmp.c
modules/access_output/rtmp.c
+1
-1
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+1
-1
modules/audio_output/auhal.c
modules/audio_output/auhal.c
+1
-1
modules/audio_output/portaudio.c
modules/audio_output/portaudio.c
+2
-2
modules/codec/avcodec/encoder.c
modules/codec/avcodec/encoder.c
+1
-1
modules/misc/audioscrobbler.c
modules/misc/audioscrobbler.c
+1
-1
modules/stream_out/transcode.c
modules/stream_out/transcode.c
+1
-1
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
+2
-2
modules/video_filter/atmo/AtmoLiveView.cpp
modules/video_filter/atmo/AtmoLiveView.cpp
+1
-1
modules/video_filter/atmo/AtmoThread.cpp
modules/video_filter/atmo/AtmoThread.cpp
+1
-1
modules/visualization/goom.c
modules/visualization/goom.c
+1
-1
src/libvlccore.sym
src/libvlccore.sym
+1
-1
src/misc/block.c
src/misc/block.c
+1
-1
src/misc/objects.c
src/misc/objects.c
+1
-1
src/misc/threads.c
src/misc/threads.c
+2
-2
No files found.
include/vlc_threads.h
View file @
5b638392
...
...
@@ -133,7 +133,7 @@ typedef DWORD vlc_threadvar_t;
VLC_EXPORT
(
int
,
vlc_mutex_init
,
(
vlc_mutex_t
*
)
);
VLC_EXPORT
(
int
,
vlc_mutex_init_recursive
,
(
vlc_mutex_t
*
)
);
VLC_EXPORT
(
void
,
__vlc_mutex_destroy
,
(
const
char
*
,
int
,
vlc_mutex_t
*
)
);
VLC_EXPORT
(
int
,
__
vlc_cond_init
,
(
vlc_cond_t
*
)
);
VLC_EXPORT
(
int
,
vlc_cond_init
,
(
vlc_cond_t
*
)
);
VLC_EXPORT
(
void
,
__vlc_cond_destroy
,
(
const
char
*
,
int
,
vlc_cond_t
*
)
);
VLC_EXPORT
(
int
,
vlc_threadvar_create
,
(
vlc_threadvar_t
*
,
void
(
*
)
(
void
*
)
)
);
VLC_EXPORT
(
void
,
vlc_threadvar_delete
,
(
vlc_threadvar_t
*
)
);
...
...
@@ -338,12 +338,6 @@ static inline void vlc_cleanup_lock (void *lock)
}
#define mutex_cleanup_push( lock ) vlc_cleanup_push (vlc_cleanup_lock, lock)
/*****************************************************************************
* vlc_cond_init: initialize a condition
*****************************************************************************/
#define vlc_cond_init( P_THIS, P_COND ) \
__vlc_cond_init( P_COND )
/*****************************************************************************
* vlc_cond_signal: start a thread on condition completion
*****************************************************************************/
...
...
modules/access/dshow/dshow.cpp
View file @
5b638392
...
...
@@ -440,7 +440,7 @@ static int CommonOpen( vlc_object_t *p_this, access_sys_t *p_sys,
p_sys
->
p_control
=
NULL
;
vlc_mutex_init
(
&
p_sys
->
lock
);
vlc_cond_init
(
p_this
,
&
p_sys
->
wait
);
vlc_cond_init
(
&
p_sys
->
wait
);
/* Build directshow graph */
CreateDirectShowGraph
(
p_sys
);
...
...
modules/access/dvb/http.c
View file @
5b638392
...
...
@@ -95,7 +95,7 @@ int HTTPOpen( access_t *p_access )
httpd_file_sys_t
*
f
;
vlc_mutex_init
(
&
p_sys
->
httpd_mutex
);
vlc_cond_init
(
p_access
,
&
p_sys
->
httpd_cond
);
vlc_cond_init
(
&
p_sys
->
httpd_cond
);
p_sys
->
b_request_frontend_info
=
p_sys
->
b_request_mmi_info
=
false
;
p_sys
->
i_httpd_timeout
=
0
;
...
...
modules/access/rtmp/access.c
View file @
5b638392
...
...
@@ -157,7 +157,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
p_thread
->
p_base_object
=
p_this
;
vlc_cond_init
(
p_sys
->
p_thread
,
&
p_sys
->
p_thread
->
wait
);
vlc_cond_init
(
&
p_sys
->
p_thread
->
wait
);
vlc_mutex_init
(
&
p_sys
->
p_thread
->
lock
);
...
...
modules/access_output/rtmp.c
View file @
5b638392
...
...
@@ -173,7 +173,7 @@ static int Open( vlc_object_t *p_this )
p_sys
->
p_thread
->
rtmp_headers_send
[
i
].
body
=
NULL
;
}
vlc_cond_init
(
p_sys
->
p_thread
,
&
p_sys
->
p_thread
->
wait
);
vlc_cond_init
(
&
p_sys
->
p_thread
->
wait
);
vlc_mutex_init
(
&
p_sys
->
p_thread
->
lock
);
p_sys
->
p_thread
->
result_connect
=
1
;
...
...
modules/audio_output/alsa.c
View file @
5b638392
...
...
@@ -316,7 +316,7 @@ static int Open( vlc_object_t *p_this )
return
VLC_ENOMEM
;
p_sys
->
b_playing
=
false
;
p_sys
->
start_date
=
0
;
vlc_cond_init
(
p_aout
,
&
p_sys
->
wait
);
vlc_cond_init
(
&
p_sys
->
wait
);
vlc_mutex_init
(
&
p_sys
->
lock
);
/* Get device name */
...
...
modules/audio_output/auhal.c
View file @
5b638392
...
...
@@ -1181,7 +1181,7 @@ static int AudioStreamChangeFormat( aout_instance_t *p_aout, AudioStreamID i_str
msg_Dbg
(
p_aout
,
STREAM_FORMAT_MSG
(
"setting stream format: "
,
change_format
)
);
/* Condition because SetProperty is asynchronious */
vlc_cond_init
(
p_aout
,
&
w
.
cond
);
vlc_cond_init
(
&
w
.
cond
);
vlc_mutex_init
(
&
w
.
lock
);
vlc_mutex_lock
(
&
w
.
lock
);
...
...
modules/audio_output/portaudio.c
View file @
5b638392
...
...
@@ -211,10 +211,10 @@ static int Open( vlc_object_t * p_this )
pa_thread
->
p_aout
=
p_aout
;
pa_thread
->
b_error
=
false
;
vlc_mutex_init
(
&
pa_thread
->
lock_wait
);
vlc_cond_init
(
p_aout
,
&
pa_thread
->
wait
);
vlc_cond_init
(
&
pa_thread
->
wait
);
pa_thread
->
b_wait
=
false
;
vlc_mutex_init
(
&
pa_thread
->
lock_signal
);
vlc_cond_init
(
p_aout
,
&
pa_thread
->
signal
);
vlc_cond_init
(
&
pa_thread
->
signal
);
pa_thread
->
b_signal
=
false
;
/* Create PORTAUDIOThread */
...
...
modules/codec/avcodec/encoder.c
View file @
5b638392
...
...
@@ -800,7 +800,7 @@ static block_t *EncodeVideo( encoder_t *p_enc, picture_t *p_pict )
sizeof
(
struct
thread_context_t
)
);
pp_contexts
[
i
]
->
p_context
=
p_sys
->
p_context
;
vlc_mutex_init
(
&
pp_contexts
[
i
]
->
lock
);
vlc_cond_init
(
p_enc
,
&
pp_contexts
[
i
]
->
cond
);
vlc_cond_init
(
&
pp_contexts
[
i
]
->
cond
);
pp_contexts
[
i
]
->
b_work
=
0
;
pp_contexts
[
i
]
->
b_done
=
0
;
if
(
vlc_thread_create
(
pp_contexts
[
i
],
"encoder"
,
FfmpegThread
,
...
...
modules/misc/audioscrobbler.c
View file @
5b638392
...
...
@@ -182,7 +182,7 @@ static int Open( vlc_object_t *p_this )
p_intf
->
p_sys
=
p_sys
;
vlc_mutex_init
(
&
p_sys
->
lock
);
vlc_cond_init
(
p_intf
,
&
p_sys
->
wait
);
vlc_cond_init
(
&
p_sys
->
wait
);
p_playlist
=
pl_Yield
(
p_intf
);
PL_LOCK
;
...
...
modules/stream_out/transcode.c
View file @
5b638392
...
...
@@ -1573,7 +1573,7 @@ static int transcode_video_new( sout_stream_t *p_stream, sout_stream_id_t *id )
VLC_THREAD_PRIORITY_VIDEO
;
p_sys
->
id_video
=
id
;
vlc_mutex_init
(
&
p_sys
->
lock_out
);
vlc_cond_init
(
p_stream
,
&
p_sys
->
cond
);
vlc_cond_init
(
&
p_sys
->
cond
);
memset
(
p_sys
->
pp_pics
,
0
,
sizeof
(
p_sys
->
pp_pics
)
);
p_sys
->
i_first_pic
=
0
;
p_sys
->
i_last_pic
=
0
;
...
...
modules/video_filter/atmo/AtmoExternalCaptureInput.cpp
View file @
5b638392
...
...
@@ -18,7 +18,7 @@ CAtmoExternalCaptureInput::CAtmoExternalCaptureInput(CAtmoDynData *pAtmoDynData)
CThread
(
pAtmoDynData
->
getAtmoFilter
())
{
m_pCurrentFramePixels
=
NULL
;
vlc_cond_init
(
this
->
m_pAtmoThread
,
&
m_WakeupCond
);
vlc_cond_init
(
&
m_WakeupCond
);
vlc_mutex_init
(
&
m_WakeupLock
);
msg_Dbg
(
m_pAtmoThread
,
"CAtmoExternalCaptureInput created."
);
...
...
@@ -142,7 +142,7 @@ DWORD CAtmoExternalCaptureInput::Execute(void)
*/
#ifdef _ATMO_KLUDGE_
vlc_cond_destroy
(
&
m_WakeupCond
);
vlc_cond_init
(
m_pAtmoThread
,
&
m_WakeupCond
);
vlc_cond_init
(
&
m_WakeupCond
);
#endif
#endif
}
...
...
modules/video_filter/atmo/AtmoLiveView.cpp
View file @
5b638392
...
...
@@ -180,7 +180,7 @@ DWORD CAtmoLiveView::Execute(void)
#ifdef _ATMO_KLUDGE_
vlc_mutex_lock
(
&
m_TerminateLock
);
vlc_cond_destroy
(
&
m_TerminateCond
);
vlc_cond_init
(
m_pAtmoThread
,
&
m_TerminateCond
);
vlc_cond_init
(
&
m_TerminateCond
);
vlc_mutex_unlock
(
&
m_TerminateLock
);
#endif
#endif
...
...
modules/video_filter/atmo/AtmoThread.cpp
View file @
5b638392
...
...
@@ -22,7 +22,7 @@ CThread::CThread(vlc_object_t *pOwner)
vlc_object_attach
(
m_pAtmoThread
,
m_pOwner
);
vlc_mutex_init
(
&
m_TerminateLock
);
err
=
vlc_cond_init
(
m_pAtmoThread
,
&
m_TerminateCond
);
err
=
vlc_cond_init
(
&
m_TerminateCond
);
if
(
err
)
{
msg_Err
(
m_pAtmoThread
,
"vlc_cond_init failed %d"
,
err
);
}
...
...
modules/visualization/goom.c
View file @
5b638392
...
...
@@ -183,7 +183,7 @@ static int Open( vlc_object_t *p_this )
return
VLC_EGENERIC
;
}
vlc_mutex_init
(
&
p_thread
->
lock
);
vlc_cond_init
(
p_filter
,
&
p_thread
->
wait
);
vlc_cond_init
(
&
p_thread
->
wait
);
p_thread
->
i_blocks
=
0
;
aout_DateInit
(
&
p_thread
->
date
,
p_filter
->
output
.
i_rate
);
...
...
src/libvlccore.sym
View file @
5b638392
...
...
@@ -427,7 +427,7 @@ VLC_CompileDomain
VLC_CompileHost
VLC_Compiler
__vlc_cond_destroy
__
vlc_cond_init
vlc_cond_init
vlc_config_create
vlc_config_set
vlc_control_cancel
...
...
src/misc/block.c
View file @
5b638392
...
...
@@ -359,7 +359,7 @@ block_fifo_t *block_FifoNew( void )
return
NULL
;
vlc_mutex_init
(
&
p_fifo
->
lock
);
vlc_cond_init
(
NULL
,
&
p_fifo
->
wait
);
vlc_cond_init
(
&
p_fifo
->
wait
);
p_fifo
->
p_first
=
NULL
;
p_fifo
->
pp_last
=
&
p_fifo
->
p_first
;
p_fifo
->
i_depth
=
p_fifo
->
i_size
=
0
;
...
...
src/misc/objects.c
View file @
5b638392
...
...
@@ -170,7 +170,7 @@ void *__vlc_custom_create( vlc_object_t *p_this, size_t i_size,
/* Initialize mutexes and condvars */
vlc_mutex_init
(
&
p_priv
->
lock
);
vlc_cond_init
(
p_new
,
&
p_priv
->
wait
);
vlc_cond_init
(
&
p_priv
->
wait
);
vlc_mutex_init
(
&
p_priv
->
var_lock
);
vlc_spin_init
(
&
p_priv
->
spin
);
p_priv
->
pipes
[
0
]
=
p_priv
->
pipes
[
1
]
=
-
1
;
...
...
src/misc/threads.c
View file @
5b638392
...
...
@@ -320,9 +320,9 @@ void __vlc_mutex_destroy( const char * psz_file, int i_line, vlc_mutex_t *p_mute
}
/*****************************************************************************
* vlc_cond_init: initialize a condition
* vlc_cond_init: initialize a condition
variable
*****************************************************************************/
int
__
vlc_cond_init
(
vlc_cond_t
*
p_condvar
)
int
vlc_cond_init
(
vlc_cond_t
*
p_condvar
)
{
#if defined( LIBVLC_USE_PTHREAD )
pthread_condattr_t
attr
;
...
...
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