diff --git a/include/vlc_cxx_helpers.hpp b/include/vlc_cxx_helpers.hpp index 67175407aca90116b5eee8f27c6ad868b745f036..5c55ff01b383835ed7b36f1d8bac2866d5209416 100644 --- a/include/vlc_cxx_helpers.hpp +++ b/include/vlc_cxx_helpers.hpp @@ -309,10 +309,6 @@ public: { vlc_cond_init( &m_cond ); } - ~condition_variable() - { - vlc_cond_destroy( &m_cond ); - } void signal() noexcept { vlc_cond_signal( &m_cond ); diff --git a/include/vlc_threads.h b/include/vlc_threads.h index c87eac7b08159637d181a55eec93e3284bd4c188..d04da93629fee6cb32fbd1d39c89a653e88883e9 100644 --- a/include/vlc_threads.h +++ b/include/vlc_threads.h @@ -457,14 +457,6 @@ VLC_API void vlc_cond_init(vlc_cond_t *); */ void vlc_cond_init_daytime(vlc_cond_t *); -/** - * Deinitializes a condition variable. - * - * No threads shall be waiting or signaling the condition, otherwise the - * behavior is undefined. - */ -VLC_API void vlc_cond_destroy(vlc_cond_t *); - /** * Wakes up one thread waiting on a condition variable. * diff --git a/lib/media.c b/lib/media.c index b2277e58d0f80139de65864f67e4d66d648c4caa..c1af395835f36067daec34f5763f72997a3f0e7e 100644 --- a/lib/media.c +++ b/lib/media.c @@ -562,8 +562,6 @@ void libvlc_media_release( libvlc_media_t *p_md ) input_item_Release( p_md->p_input_item ); - vlc_cond_destroy( &p_md->parsed_cond ); - /* Construct the event */ libvlc_event_t event; event.type = libvlc_MediaFreed; diff --git a/lib/media_list_player.c b/lib/media_list_player.c index 6e02a807d93131d006e33201a2ea78ef6ec97227..2e7405c492862b31c3a7c6ed066f9984e451fc6e 100644 --- a/lib/media_list_player.c +++ b/lib/media_list_player.c @@ -497,7 +497,6 @@ libvlc_media_list_player_new(libvlc_instance_t * p_instance) return p_mlp; error: libvlc_event_manager_destroy(&p_mlp->event_manager); - vlc_cond_destroy(&p_mlp->seek_pending); free(p_mlp); return NULL; } @@ -541,7 +540,6 @@ void libvlc_media_list_player_release(libvlc_media_list_player_t * p_mlp) unlock(p_mlp); libvlc_event_manager_destroy(&p_mlp->event_manager); - vlc_cond_destroy(&p_mlp->seek_pending); free(p_mlp->current_playing_item_path); free(p_mlp); } diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp index d977070d0c76a7aa2ceef4254e41e8bf2bcd0008..02871d9aefd158a0b4ffddf80975c4286c83fb64 100644 --- a/modules/access/dshow/dshow.cpp +++ b/modules/access/dshow/dshow.cpp @@ -816,8 +816,6 @@ static void CommonClose( vlc_object_t *p_this, access_sys_t *p_sys ) vlc_delete_all( p_sys->pp_streams ); - vlc_cond_destroy( &p_sys->wait ); - vlc_mta_release( p_this ); free( p_sys ); diff --git a/modules/access/dtv/bdagraph.cpp b/modules/access/dtv/bdagraph.cpp index 62a6133099932645063262cfc96967a03c3b2dc4..e0d4ab22175df51a20b830ce33270b54319e5f60 100644 --- a/modules/access/dtv/bdagraph.cpp +++ b/modules/access/dtv/bdagraph.cpp @@ -321,7 +321,6 @@ BDAOutput::BDAOutput( vlc_object_t *p_access ) : BDAOutput::~BDAOutput() { Empty(); - vlc_cond_destroy( &wait ); } void BDAOutput::Push( block_t *p_block ) diff --git a/modules/access/http/h2conn.c b/modules/access/http/h2conn.c index 20c7e5b0e4b04b9d84ec3457a1331ee623b6fcac..258a0c8da219bd20d509f59be71b7d3f8f579798 100644 --- a/modules/access/http/h2conn.c +++ b/modules/access/http/h2conn.c @@ -391,7 +391,6 @@ static void vlc_h2_stream_close(struct vlc_http_stream *stream, bool aborted) free(f); } - vlc_cond_destroy(&s->recv_wait); free(s); if (destroy) @@ -464,7 +463,6 @@ static struct vlc_http_stream *vlc_h2_stream_open(struct vlc_http_conn *c, error: vlc_mutex_unlock(&conn->lock); - vlc_cond_destroy(&s->recv_wait); free(s); return NULL; } diff --git a/modules/access/http/h2output.c b/modules/access/http/h2output.c index 1d038ecc2de51cb048f88c73028efccd7f3f8a24..9d0df4cf757f44c2dc2527701174b456aef0c990 100644 --- a/modules/access/http/h2output.c +++ b/modules/access/http/h2output.c @@ -322,7 +322,6 @@ struct vlc_h2_output *vlc_h2_output_create(struct vlc_tls *tls, bool client) : vlc_h2_output_thread; if (vlc_clone(&out->thread, cb, out, VLC_THREAD_PRIORITY_INPUT)) { - vlc_cond_destroy(&out->wait); free(out); out = NULL; } @@ -339,7 +338,6 @@ void vlc_h2_output_destroy(struct vlc_h2_output *out) vlc_cancel(out->thread); vlc_join(out->thread, NULL); - vlc_cond_destroy(&out->wait); /* Flush queues in case the thread was terminated within poll() and some * packets were still queued. */ vlc_h2_output_flush_unlocked(out); diff --git a/modules/audio_output/audiotrack.c b/modules/audio_output/audiotrack.c index 683e16a9d7d23c7219af81ba58890d71f985b653..7e49388e35a10b67800870c2a5e737acaa844322 100644 --- a/modules/audio_output/audiotrack.c +++ b/modules/audio_output/audiotrack.c @@ -2246,7 +2246,5 @@ Close( vlc_object_t *obj ) audio_output_t *p_aout = (audio_output_t *) obj; aout_sys_t *p_sys = p_aout->sys; - vlc_cond_destroy(&p_sys->aout_cond); - vlc_cond_destroy(&p_sys->thread_cond); free( p_sys ); } diff --git a/modules/audio_output/auhal.c b/modules/audio_output/auhal.c index 434de23c21fe039ec14288a0635d7276826009ca..ab614c92a0069f9e3d7ec8f660a827dcca4f4a1e 100644 --- a/modules/audio_output/auhal.c +++ b/modules/audio_output/auhal.c @@ -878,8 +878,6 @@ out: if (ret != VLC_SUCCESS) retValue = false; - vlc_cond_destroy(&w.cond); - return retValue; } diff --git a/modules/audio_output/directsound.c b/modules/audio_output/directsound.c index 9f3ec0463dd8fafd6d5050c9fc2a5f2c1ffb2136..582771d1781b6dc3ef9fe18aebb138c3f814d719 100644 --- a/modules/audio_output/directsound.c +++ b/modules/audio_output/directsound.c @@ -552,7 +552,6 @@ static HRESULT Stop( aout_stream_sys_t *p_sys ) vlc_mutex_unlock( &p_sys->lock ); vlc_cancel( p_sys->eraser_thread ); vlc_join( p_sys->eraser_thread, NULL ); - vlc_cond_destroy( &p_sys->cond ); if( p_sys->p_notify != NULL ) { @@ -659,10 +658,7 @@ static HRESULT Start( vlc_object_t *obj, aout_stream_sys_t *sys, fmt.i_frame_length = A52_FRAME_NB; } else - { - vlc_cond_destroy(&sys->cond); return E_FAIL; - } } if( hr != DS_OK ) @@ -805,8 +801,6 @@ static HRESULT Start( vlc_object_t *obj, aout_stream_sys_t *sys, return DS_OK; error: - vlc_cond_destroy(&sys->cond); - if( sys->p_notify != NULL ) { IDirectSoundNotify_Release( sys->p_notify ); diff --git a/modules/audio_output/kai.c b/modules/audio_output/kai.c index b565619795f8668d6b863d367a0137ad6a022d9e..9680293c631de97626b2e4ed1ad5b9da766a45d0 100644 --- a/modules/audio_output/kai.c +++ b/modules/audio_output/kai.c @@ -371,8 +371,6 @@ static void DestroyBuffer( audio_output_t *aout ) aout_sys_t *sys = aout->sys; audio_buffer_t *buffer = sys->buffer; - vlc_cond_destroy( &buffer->cond ); - free( buffer->data ); free( buffer ); } diff --git a/modules/audio_output/waveout.c b/modules/audio_output/waveout.c index e3c06bb0083b9a438ecc6097c7302474964b8521..936085fa368019100b108ddc5e3c6ffefe0299f0 100644 --- a/modules/audio_output/waveout.c +++ b/modules/audio_output/waveout.c @@ -823,8 +823,6 @@ static void Close(vlc_object_t *obj) var_Destroy(aout, "waveout-audio-device"); vlc_timer_destroy( sys->volume_poll_timer ); - vlc_cond_destroy( &sys->cond ); - free(sys); } diff --git a/modules/codec/dmo/dmo.c b/modules/codec/dmo/dmo.c index aef07104174919cb6a8ff1218fb77a3ad8cf6459..4a7472d329607f47bf864bf91e93093ed824d936 100644 --- a/modules/codec/dmo/dmo.c +++ b/modules/codec/dmo/dmo.c @@ -273,8 +273,6 @@ found: vlc_join( p_sys->thread, NULL ); error: - vlc_cond_destroy( &p_sys->wait_input ); - vlc_cond_destroy( &p_sys->wait_output ); free( p_sys ); return VLC_ENOMEM; } @@ -293,8 +291,6 @@ static void DecoderClose( vlc_object_t *p_this ) vlc_mutex_unlock( &p_sys->lock ); vlc_join( p_sys->thread, NULL ); - vlc_cond_destroy( &p_sys->wait_input ); - vlc_cond_destroy( &p_sys->wait_output ); free( p_sys ); } diff --git a/modules/codec/omxil/mediacodec.c b/modules/codec/omxil/mediacodec.c index ec2536dbe58473ead7afd0e84973648d3d4d6359..0a269db7d01071eee845caef8564e1501bc56648 100644 --- a/modules/codec/omxil/mediacodec.c +++ b/modules/codec/omxil/mediacodec.c @@ -1004,9 +1004,6 @@ static void AbortDecoderLocked(decoder_t *p_dec) static void CleanDecoder(decoder_sys_t *p_sys) { - vlc_cond_destroy(&p_sys->cond); - vlc_cond_destroy(&p_sys->dec_cond); - StopMediaCodec(p_sys); CSDFree(p_sys); diff --git a/modules/codec/omxil/omxil_utils.h b/modules/codec/omxil/omxil_utils.h index 6617534dfffe4409ec69830eb76a18c268fa6262..beb2c40d02ac3e413d981c1cd649e110d47cf2b9 100644 --- a/modules/codec/omxil/omxil_utils.h +++ b/modules/codec/omxil/omxil_utils.h @@ -88,7 +88,7 @@ static inline OMX_TICKS ToOmxTicks(int64_t value) (p_fifo)->pp_last = &(p_fifo)->p_first; } while(0) #define OMX_FIFO_DESTROY(p_fifo) \ - do { vlc_cond_destroy (&(p_fifo)->wait); } while(0) + while(0) { } #define OMX_FIFO_PEEK(p_fifo, p_buffer) \ p_buffer = (p_fifo)->p_first; diff --git a/modules/codec/omxil/utils.c b/modules/codec/omxil/utils.c index ba3de5cfd1666dac1ddb1e001e03c6dd90a614ca..c87e10dbadeb0f544b050985ade82854ea11db98 100644 --- a/modules/codec/omxil/utils.c +++ b/modules/codec/omxil/utils.c @@ -50,7 +50,7 @@ void InitOmxEventQueue(OmxEventQueue *queue) void DeinitOmxEventQueue(OmxEventQueue *queue) { - vlc_cond_destroy(&queue->cond); + (void) queue; } OMX_ERRORTYPE PostOmxEvent(OmxEventQueue *queue, OMX_EVENTTYPE event, diff --git a/modules/codec/videotoolbox.c b/modules/codec/videotoolbox.c index 5e1bc09a10ba2b827e7919c06e7f011ad75ddb2a..274e95e92cba506eeda6f60dc52ab02d2fa16060 100644 --- a/modules/codec/videotoolbox.c +++ b/modules/codec/videotoolbox.c @@ -1302,9 +1302,7 @@ static void StopVideoToolbox(decoder_t *p_dec, bool closing) static void pic_pacer_Destroy(void *priv) { - struct pic_pacer *pic_pacer = priv; - - vlc_cond_destroy(&pic_pacer->wait); + (void) priv; } static void pic_pacer_Init(struct pic_pacer *pic_pacer, uint8_t pic_reorder_max) diff --git a/modules/control/globalhotkeys/win32.c b/modules/control/globalhotkeys/win32.c index 39c34f211e1c48f6a800a5aab16c8f8811895373..18239f5b6121ced564b2baac99e5f1e825b4a9c2 100644 --- a/modules/control/globalhotkeys/win32.c +++ b/modules/control/globalhotkeys/win32.c @@ -79,7 +79,6 @@ static int Open( vlc_object_t *p_this ) if( vlc_clone( &p_sys->thread, Thread, p_intf, VLC_THREAD_PRIORITY_LOW ) ) { - vlc_cond_destroy( &p_sys->wait ); free( p_sys ); p_intf->p_sys = NULL; @@ -93,7 +92,6 @@ static int Open( vlc_object_t *p_this ) { vlc_mutex_unlock( &p_sys->lock ); vlc_join( p_sys->thread, NULL ); - vlc_cond_destroy( &p_sys->wait ); free( p_sys ); p_intf->p_sys = NULL; @@ -119,7 +117,6 @@ static void Close( vlc_object_t *p_this ) vlc_mutex_unlock( &p_sys->lock ); vlc_join( p_sys->thread, NULL ); - vlc_cond_destroy( &p_sys->wait ); free( p_sys ); } diff --git a/modules/demux/adaptive/PlaylistManager.cpp b/modules/demux/adaptive/PlaylistManager.cpp index c0d3c9a8e1a682612c28440943dce5cce1dddf22..ce6da8e5dd750157e468820c8dbf72e40e21feb1 100644 --- a/modules/demux/adaptive/PlaylistManager.cpp +++ b/modules/demux/adaptive/PlaylistManager.cpp @@ -89,8 +89,6 @@ PlaylistManager::~PlaylistManager () delete playlist; delete logic; delete resources; - vlc_cond_destroy(&waitcond); - vlc_cond_destroy(&demux.cond); } void PlaylistManager::unsetPeriod() diff --git a/modules/demux/adaptive/http/Chunk.cpp b/modules/demux/adaptive/http/Chunk.cpp index 384c640cf13568b27739a5321b37e9615609a106..2af20cd6b2504ee5a5b05342d9dca55b867925db 100644 --- a/modules/demux/adaptive/http/Chunk.cpp +++ b/modules/demux/adaptive/http/Chunk.cpp @@ -323,8 +323,6 @@ HTTPChunkBufferedSource::~HTTPChunkBufferedSource() } buffered = 0; vlc_mutex_unlock(&lock); - - vlc_cond_destroy(&avail); } bool HTTPChunkBufferedSource::isDone() const diff --git a/modules/demux/adaptive/http/Downloader.cpp b/modules/demux/adaptive/http/Downloader.cpp index f2f96c4e8ceb01f40b2869658e4cde750dc0ff01..e62d1002bf954a2e42419ca49c587959a9703685 100644 --- a/modules/demux/adaptive/http/Downloader.cpp +++ b/modules/demux/adaptive/http/Downloader.cpp @@ -58,7 +58,6 @@ Downloader::~Downloader() if(thread_handle_valid) vlc_join(thread_handle, NULL); - vlc_cond_destroy(&waitcond); } void Downloader::schedule(HTTPChunkBufferedSource *source) { diff --git a/modules/demux/mkv/events.cpp b/modules/demux/mkv/events.cpp index 0a6d7003a428b7053c3356663270de6640c6d998..8526545f2c04be0e1dc045c9474189f4baf655e7 100644 --- a/modules/demux/mkv/events.cpp +++ b/modules/demux/mkv/events.cpp @@ -42,7 +42,6 @@ event_thread_t::event_thread_t(demux_t *p_demux) : p_demux(p_demux) event_thread_t::~event_thread_t() { ResetPci(); - vlc_cond_destroy( &wait ); } void event_thread_t::SetPci(const pci_t *data) diff --git a/modules/gui/skins2/commands/cmd_callbacks.hpp b/modules/gui/skins2/commands/cmd_callbacks.hpp index 79fb556aa3c633ea0df222221e6244396102164d..d0433b55baefa183feb3caf8f11c77ca3df3aa3d 100644 --- a/modules/gui/skins2/commands/cmd_callbacks.hpp +++ b/modules/gui/skins2/commands/cmd_callbacks.hpp @@ -70,7 +70,6 @@ public: virtual ~CmdExecuteBlock() { - vlc_cond_destroy( &m_wait ); } static void executeWait( const CmdGenericPtr& rcCommand ) diff --git a/modules/hw/mmal/mmal_cma.c b/modules/hw/mmal/mmal_cma.c index 70567db4f4444e234d5fc2de869b92a56bed3788..1b48030c29a0f0153a925d26fe144bb787ff8ea7 100644 --- a/modules/hw/mmal/mmal_cma.c +++ b/modules/hw/mmal/mmal_cma.c @@ -97,7 +97,6 @@ static void cma_pool_fixed_delete(cma_pool_fixed_t * const p) free(p->name); - vlc_cond_destroy(&p->flight_cond); free(p); // Inform our container that we are dead (if it cares) diff --git a/modules/lua/extension.c b/modules/lua/extension.c index b4ea69ddb9717b26f34aabd48345450c010a1e8e..9850fa328571c3cad487bf6db1d09574db00b2cc 100644 --- a/modules/lua/extension.c +++ b/modules/lua/extension.c @@ -176,7 +176,6 @@ void Close_Extension( vlc_object_t *p_this ) free( p_ext->psz_version ); free( p_ext->p_icondata ); - vlc_cond_destroy( &p_ext->p_sys->wait ); vlc_timer_destroy( p_ext->p_sys->timer ); free( p_ext->p_sys ); @@ -484,7 +483,6 @@ exit: free( p_ext->psz_description ); free( p_ext->psz_shortdescription ); free( p_ext->psz_version ); - vlc_cond_destroy( &p_ext->p_sys->wait ); free( p_ext->p_sys ); free( p_ext ); } diff --git a/modules/lua/libs/dialog.c b/modules/lua/libs/dialog.c index 8af0409786c21d47841fab36c429cb7f5cf17321..57d349311bfa2d186623776cdaa5d719b3da9fda 100644 --- a/modules/lua/libs/dialog.c +++ b/modules/lua/libs/dialog.c @@ -287,7 +287,6 @@ static int vlclua_dialog_delete( lua_State *L ) ARRAY_RESET( p_dlg->widgets ); /* Note: At this point, the UI must not use these resources */ - vlc_cond_destroy( &p_dlg->cond ); free( p_dlg ); return 1; diff --git a/modules/lua/services_discovery.c b/modules/lua/services_discovery.c index 8b5aebdadef91a2ee5910b7c5db7c78afd866f22..3984bf3de81acca78a81aadf901be67245ecb92d 100644 --- a/modules/lua/services_discovery.c +++ b/modules/lua/services_discovery.c @@ -239,7 +239,6 @@ int Open_LuaSD( vlc_object_t *p_this ) if( vlc_clone( &p_sys->thread, Run, p_sd, VLC_THREAD_PRIORITY_LOW ) ) { TAB_CLEAN( p_sys->i_query, p_sys->ppsz_query ); - vlc_cond_destroy( &p_sys->cond ); goto error; } return VLC_SUCCESS; @@ -267,7 +266,6 @@ void Close_LuaSD( vlc_object_t *p_this ) free( p_sys->ppsz_query[i] ); TAB_CLEAN( p_sys->i_query, p_sys->ppsz_query ); - vlc_cond_destroy( &p_sys->cond ); free( p_sys->psz_filename ); lua_close( p_sys->L ); free( p_sys ); diff --git a/modules/misc/audioscrobbler.c b/modules/misc/audioscrobbler.c index ce3ca4161fc227982d4bc4c7da046d0133a1d3a9..7506488041cfde92c54b74baf2c6e8c8b90fcc09 100644 --- a/modules/misc/audioscrobbler.c +++ b/modules/misc/audioscrobbler.c @@ -420,10 +420,7 @@ fail: { vlc_playlist_Lock(playlist); if (p_sys->player_listener) - { - vlc_cond_destroy(&p_sys->wait); vlc_player_RemoveListener(player, p_sys->player_listener); - } vlc_playlist_RemoveListener(playlist, p_sys->playlist_listener); vlc_playlist_Unlock(playlist); } @@ -450,8 +447,6 @@ static void Close(vlc_object_t *p_this) vlc_UrlClean(&p_sys->p_submit_url); vlc_UrlClean(&p_sys->p_nowp_url); - vlc_cond_destroy(&p_sys->wait); - vlc_playlist_Lock(playlist); vlc_player_RemoveListener( vlc_playlist_GetPlayer(playlist), p_sys->player_listener); diff --git a/modules/misc/fingerprinter.c b/modules/misc/fingerprinter.c index ebf28147ee02068f6a0f7b9f69f976b9e185910f..c96c471eb3fb255364379c852f71e23f4f288e35 100644 --- a/modules/misc/fingerprinter.c +++ b/modules/misc/fingerprinter.c @@ -302,7 +302,6 @@ static void CleanSys( fingerprinter_sys_t *p_sys ) for ( size_t i = 0; i < vlc_array_count( &p_sys->processing.queue ); i++ ) fingerprint_request_Delete( vlc_array_item_at_index( &p_sys->processing.queue, i ) ); vlc_array_clear( &p_sys->processing.queue ); - vlc_cond_destroy( &p_sys->processing.cond ); for ( size_t i = 0; i < vlc_array_count( &p_sys->results.queue ); i++ ) fingerprint_request_Delete( vlc_array_item_at_index( &p_sys->results.queue, i ) ); diff --git a/modules/services_discovery/podcast.c b/modules/services_discovery/podcast.c index e89a75790767a9d60fbd166d1abc92a55aa75ea7..f43def9d1f72162ddea32cd76182092a51abd496 100644 --- a/modules/services_discovery/podcast.c +++ b/modules/services_discovery/podcast.c @@ -150,7 +150,6 @@ static int Open( vlc_object_t *p_this ) { var_DelCallback( pl, "podcast-request", Request, p_sys ); var_DelCallback( pl, "podcast-urls", UrlsChange, p_sys ); - vlc_cond_destroy( &p_sys->wait ); free (p_sys); return VLC_EGENERIC; } @@ -171,7 +170,6 @@ static void Close( vlc_object_t *p_this ) var_DelCallback( pl, "podcast-urls", UrlsChange, p_sys ); var_DelCallback( pl, "podcast-request", Request, p_sys ); - vlc_cond_destroy( &p_sys->wait ); for( int i = 0; i < p_sys->i_urls; i++ ) free( p_sys->ppsz_urls[i] ); diff --git a/modules/stream_filter/decomp.c b/modules/stream_filter/decomp.c index 9b7698014719a39c163c95653c08e5162df57a07..330f3822f22f65caa841b5874595b928f27c0aa1 100644 --- a/modules/stream_filter/decomp.c +++ b/modules/stream_filter/decomp.c @@ -328,7 +328,6 @@ static int Open (stream_t *stream, const char *path) { if (p_sys->pid != -1) while (waitpid (p_sys->pid, &(int){ 0 }, 0) == -1); - vlc_cond_destroy (&p_sys->wait); free (p_sys); return ret; } @@ -360,7 +359,6 @@ static void Close (vlc_object_t *obj) while (waitpid (p_sys->pid, &status, 0) == -1); msg_Dbg (obj, "exit status %d", status); - vlc_cond_destroy (&p_sys->wait); free (p_sys); } diff --git a/modules/stream_filter/hds/hds.c b/modules/stream_filter/hds/hds.c index 88d1e76522399e26876d7a744b1da1ae5d9ef415..acdc7f9791c9525e4e9c0bd6f040974028cd6f82 100644 --- a/modules/stream_filter/hds/hds.c +++ b/modules/stream_filter/hds/hds.c @@ -1220,11 +1220,6 @@ static void cleanup_Manifest( manifest_t *m ) xml_ReaderDelete( m->vlc_reader ); } -static void cleanup_threading( hds_stream_t *stream ) -{ - vlc_cond_destroy( &stream->dl_cond ); -} - static void write_int_24( uint8_t *p, uint32_t val ) { *p = ( val & 0xFF0000 ) >> 16; @@ -1535,7 +1530,6 @@ static int parse_Manifest( stream_t *s, manifest_t *m ) if( !(new_stream->url = strdup( medias[i].media_url ) ) ) { free( media_id ); - cleanup_threading( new_stream ); free( new_stream ); return VLC_ENOMEM; } @@ -1548,7 +1542,6 @@ static int parse_Manifest( stream_t *s, manifest_t *m ) { free( new_stream->url ); free( media_id ); - cleanup_threading( new_stream ); free( new_stream ); return VLC_ENOMEM; } @@ -1586,7 +1579,6 @@ static int parse_Manifest( stream_t *s, manifest_t *m ) free( new_stream->metadata ); free( new_stream->url ); free( media_id ); - cleanup_threading( new_stream ); free( new_stream ); return VLC_ENOMEM; } @@ -1617,8 +1609,6 @@ static void hds_free( hds_stream_t *p_stream ) FREENULL( p_stream->abst_url ); - cleanup_threading( p_stream ); - FREENULL( p_stream->metadata ); FREENULL( p_stream->url ); FREENULL( p_stream->movie_id ); diff --git a/modules/stream_filter/prefetch.c b/modules/stream_filter/prefetch.c index 01b7e2c68188ae00544d546f7e152d14ab75bf29..3a28b9f7706dfc04a8d63663676543406aa6802c 100644 --- a/modules/stream_filter/prefetch.c +++ b/modules/stream_filter/prefetch.c @@ -494,8 +494,6 @@ static int Open(vlc_object_t *obj) if (vlc_clone(&sys->thread, Thread, stream, VLC_THREAD_PRIORITY_LOW)) { - vlc_cond_destroy(&sys->wait_space); - vlc_cond_destroy(&sys->wait_data); vlc_interrupt_destroy(sys->interrupt); goto error; } @@ -526,8 +524,6 @@ static void Close (vlc_object_t *obj) vlc_interrupt_kill(sys->interrupt); vlc_join(sys->thread, NULL); vlc_interrupt_destroy(sys->interrupt); - vlc_cond_destroy(&sys->wait_space); - vlc_cond_destroy(&sys->wait_data); while(sys->controls) { diff --git a/modules/stream_out/sdi/DBMSDIOutput.cpp b/modules/stream_out/sdi/DBMSDIOutput.cpp index 9c56b8f02b254075ec45c8810b2530967895888d..abd2559c5cbaeceb0e8f53d6a703b001b7af04c6 100644 --- a/modules/stream_out/sdi/DBMSDIOutput.cpp +++ b/modules/stream_out/sdi/DBMSDIOutput.cpp @@ -90,8 +90,6 @@ DBMSDIOutput::~DBMSDIOutput() } if(p_card) p_card->Release(); - - vlc_cond_destroy(&feeder.cond); } AbstractStream *DBMSDIOutput::Add(const es_format_t *fmt) diff --git a/modules/stream_out/sdi/SDIStream.cpp b/modules/stream_out/sdi/SDIStream.cpp index 0e728c3adf626b23be71c909ef198bd05fc12aa8..ce4588d28ce5bd35bfe445e22fae9fbf52e4fc0f 100644 --- a/modules/stream_out/sdi/SDIStream.cpp +++ b/modules/stream_out/sdi/SDIStream.cpp @@ -236,7 +236,6 @@ AbstractDecodedStream::~AbstractDecodedStream() Flush(); deinit(); es_format_Clean(&requestedoutput); - vlc_cond_destroy(&inputWait); } void AbstractDecodedStream::deinit() diff --git a/modules/stream_out/transcode/encoder/video.c b/modules/stream_out/transcode/encoder/video.c index a3a031d10cc1f51859d55280b86ea87a0fc7b3ce..4de9f3965a09d9fcb36b9cfcda72d9b770dfc517 100644 --- a/modules/stream_out/transcode/encoder/video.c +++ b/modules/stream_out/transcode/encoder/video.c @@ -442,8 +442,6 @@ void transcode_encoder_video_close( transcode_encoder_t *p_enc ) /* Close encoder */ module_unneed( p_enc->p_encoder, p_enc->p_encoder->p_module ); p_enc->p_encoder->p_module = NULL; - - vlc_cond_destroy( &p_enc->cond ); } int transcode_encoder_video_open( transcode_encoder_t *p_enc, @@ -472,7 +470,6 @@ int transcode_encoder_video_open( transcode_encoder_t *p_enc, { if( vlc_clone( &p_enc->thread, EncoderThread, p_enc, p_cfg->video.threads.i_priority ) ) { - vlc_cond_destroy( &p_enc->cond ); module_unneed( p_enc->p_encoder, p_enc->p_encoder->p_module ); p_enc->p_encoder->p_module = NULL; return VLC_EGENERIC; diff --git a/modules/video_output/decklink.cpp b/modules/video_output/decklink.cpp index 3c7c85eb3d10512e02bb011d9e38fac82b4afd4a..d5049e826e3c6c856413608656966a4e2a051a02 100644 --- a/modules/video_output/decklink.cpp +++ b/modules/video_output/decklink.cpp @@ -351,7 +351,6 @@ static void ReleaseDLSys(vlc_object_t *obj, int i_cat) if (--sys->users == 0) { msg_Dbg(obj, "Destroying decklink data"); - vlc_cond_destroy(&sys->cond); if (sys->p_output) { sys->p_output->StopScheduledPlayback(0, NULL, 0); diff --git a/modules/video_output/ios.m b/modules/video_output/ios.m index 5c273ded1165d45267a58c0e6f8d3f9826e74e4d..ad11b6a70555a6912c4533bfb14361ecd316c433 100644 --- a/modules/video_output/ios.m +++ b/modules/video_output/ios.m @@ -507,7 +507,6 @@ static void GLESSwap(vlc_gl_t *gl) - (void)dealloc { - vlc_cond_destroy(&_gl_attached_wait); [super dealloc]; } diff --git a/modules/video_output/win32/events.c b/modules/video_output/win32/events.c index 15da61dc266c59d8db062aa6fdea7d9061f0fced..9cc449f25ce0c4fd3d18cf1d973e1c2b7ce78211 100644 --- a/modules/video_output/win32/events.c +++ b/modules/video_output/win32/events.c @@ -166,7 +166,6 @@ event_thread_t *EventThreadCreate( vlc_object_t *obj, vout_window_t *parent_wind void EventThreadDestroy( event_thread_t *p_event ) { - vlc_cond_destroy( &p_event->wait ); free( p_event ); } diff --git a/modules/video_output/win32/inhibit.c b/modules/video_output/win32/inhibit.c index c1d3199ccb2f264d77b940274790d6ab44d3cca4..8bd7604e301f8844d7097032319852e601f262d0 100644 --- a/modules/video_output/win32/inhibit.c +++ b/modules/video_output/win32/inhibit.c @@ -88,7 +88,6 @@ static void CloseInhibit (vlc_object_t *obj) vlc_inhibit_sys_t* sys = ih->p_sys; vlc_cancel(sys->thread); vlc_join(sys->thread, NULL); - vlc_cond_destroy(&sys->cond); } static int OpenInhibit (vlc_object_t *obj) @@ -105,10 +104,7 @@ static int OpenInhibit (vlc_object_t *obj) /* SetThreadExecutionState always needs to be called from the same thread */ if (vlc_clone(&sys->thread, Run, ih, VLC_THREAD_PRIORITY_LOW)) - { - vlc_cond_destroy(&sys->cond); return VLC_EGENERIC; - } ih->inhibit = Inhibit; return VLC_SUCCESS; diff --git a/modules/visualization/goom.c b/modules/visualization/goom.c index a9b225f2f904de04aaad07cea3db065e48fb0eec..fa8f2cc197afe1e1bc824ae15f7d578db181a97d 100644 --- a/modules/visualization/goom.c +++ b/modules/visualization/goom.c @@ -147,7 +147,6 @@ static int Open( vlc_object_t *p_this ) Thread, p_thread, VLC_THREAD_PRIORITY_LOW ) ) { msg_Err( p_filter, "cannot launch goom thread" ); - vlc_cond_destroy( &p_thread->wait ); vout_Close( p_thread->p_vout ); free( p_thread ); return VLC_EGENERIC; @@ -352,7 +351,6 @@ static void Close( vlc_object_t *p_this ) /* Free data */ vout_Close( p_thread->p_vout ); - vlc_cond_destroy( &p_thread->wait ); while( p_thread->i_blocks-- ) { diff --git a/src/clock/clock.c b/src/clock/clock.c index 8637d827e4193ec27f6e1a937f6fcb82d964ed38..f373460abe9f350e73cc7be6c362ea3d733b41de 100644 --- a/src/clock/clock.c +++ b/src/clock/clock.c @@ -469,7 +469,6 @@ void vlc_clock_main_ChangePause(vlc_clock_main_t *main_clock, vlc_tick_t now, void vlc_clock_main_Delete(vlc_clock_main_t *main_clock) { - vlc_cond_destroy(&main_clock->cond); assert(main_clock->rc == 1); free(main_clock); } diff --git a/src/input/decoder.c b/src/input/decoder.c index fd2e6aa03bb49612752f5670b902bf1bc48c2e69..d868c21f232c9b97c2946152a5de103cab0667a7 100644 --- a/src/input/decoder.c +++ b/src/input/decoder.c @@ -2039,10 +2039,6 @@ static void DeleteDecoder( decoder_t * p_dec ) vlc_meta_Delete( p_owner->p_description ); decoder_Destroy( p_owner->p_packetizer ); - - vlc_cond_destroy( &p_owner->wait_fifo ); - vlc_cond_destroy( &p_owner->wait_acknowledge ); - vlc_cond_destroy( &p_owner->wait_request ); decoder_Destroy( &p_owner->dec ); } diff --git a/src/input/es_out_timeshift.c b/src/input/es_out_timeshift.c index bfdb930981a18934d6493a4a9257bd89c168cd8f..ff43fe1581d6b27c17e8b3704adb48de2d8b7d18 100644 --- a/src/input/es_out_timeshift.c +++ b/src/input/es_out_timeshift.c @@ -782,7 +782,6 @@ static const struct es_out_callbacks es_out_timeshift_cbs = *****************************************************************************/ static void TsDestroy( ts_thread_t *p_ts ) { - vlc_cond_destroy( &p_ts->wait ); free( p_ts ); } static int TsStart( es_out_t *p_out ) diff --git a/src/input/input.c b/src/input/input.c index bb57eb47052d432c9099cf120cf482c59c9e1e54..1ee3a3c55a13cf3ebaaa647f25fe9b6f297ff35e 100644 --- a/src/input/input.c +++ b/src/input/input.c @@ -438,7 +438,6 @@ static void Destroy(input_thread_t *input) ControlRelease(ctrl->i_type, &ctrl->param); } - vlc_cond_destroy(&priv->wait_control); vlc_object_delete(VLC_OBJECT(input)); } diff --git a/src/input/vlm.c b/src/input/vlm.c index d33b9a917a54885e0ae32f9eab327bb96f3632be..852c91f49252ae5d2b6726868d2895bfbb8c8fb6 100644 --- a/src/input/vlm.c +++ b/src/input/vlm.c @@ -178,7 +178,6 @@ vlm_t *vlm_New( libvlc_int_t *libvlc, const char *psz_vlmconf ) if( vlc_clone( &p_vlm->thread, Manage, p_vlm, VLC_THREAD_PRIORITY_LOW ) ) { - vlc_cond_destroy( &p_vlm->wait_manage ); vlc_object_delete(p_vlm); vlc_mutex_unlock( &vlm_mutex ); return NULL; @@ -253,8 +252,6 @@ void vlm_Delete( vlm_t *p_vlm ) vlc_mutex_unlock( &vlm_mutex ); vlc_join( p_vlm->thread, NULL ); - - vlc_cond_destroy( &p_vlm->wait_manage ); vlc_object_delete(p_vlm); } diff --git a/src/interface/dialog.c b/src/interface/dialog.c index c761bd0c4d9581401066256d2d94f067a93ea9c8..68a1c1cbc8bf9f1a014b04344963fed0c971c5ee 100644 --- a/src/interface/dialog.c +++ b/src/interface/dialog.c @@ -140,7 +140,6 @@ dialog_id_release(vlc_dialog_id *p_id) free(p_id->answer.u.login.psz_password); } free(p_id->psz_progress_text); - vlc_cond_destroy(&p_id->wait); free(p_id); } diff --git a/src/libvlccore.sym b/src/libvlccore.sym index 1a7d4805c9a03cf647f2a12c6bf542761fb9565c..e31d0e453cf81090bef0b1fb163f880d90922c88 100644 --- a/src/libvlccore.sym +++ b/src/libvlccore.sym @@ -488,7 +488,6 @@ VLC_CompileBy VLC_CompileHost VLC_Compiler vlc_cond_broadcast -vlc_cond_destroy vlc_cond_init vlc_cond_signal vlc_cond_timedwait diff --git a/src/misc/addons.c b/src/misc/addons.c index a7a3414ddfefb75e939e98b14ecab14e50f82edb..49a0f3246385ddef0218ff4dd73be5095ee98205 100644 --- a/src/misc/addons.c +++ b/src/misc/addons.c @@ -198,7 +198,6 @@ void addons_manager_Delete( addons_manager_t *p_manager ) ARRAY_FOREACH( p_entry, p_manager->p_priv->name.entries )\ addon_entry_Release( p_entry );\ ARRAY_RESET( p_manager->p_priv->name.entries );\ - vlc_cond_destroy( &p_manager->p_priv->name.waitcond );\ vlc_interrupt_destroy( p_manager->p_priv->name.p_interrupt ); FREE_QUEUE( finder ) diff --git a/src/misc/background_worker.c b/src/misc/background_worker.c index 4bba9e0ff33e67d4a64de56f1f90f6e02a5823c3..a2436ddfbd2637a84ddcffbf141fd6e2d0110d26 100644 --- a/src/misc/background_worker.c +++ b/src/misc/background_worker.c @@ -143,7 +143,6 @@ background_thread_Create(struct background_worker *owner) static void background_thread_Destroy(struct background_thread *thread) { - vlc_cond_destroy(&thread->probe_cancel_wait); free(thread); } @@ -170,7 +169,6 @@ static struct background_worker *background_worker_Create(void *owner, static void background_worker_Destroy(struct background_worker *worker) { - vlc_cond_destroy(&worker->queue_wait); free(worker); } diff --git a/src/misc/fifo.c b/src/misc/fifo.c index 836f29d90bfca0ffcb14cdb6a89a861ff1bec366..1d060bb091d7fb9ed6493aca383fdf0a5fd76338 100644 --- a/src/misc/fifo.c +++ b/src/misc/fifo.c @@ -161,7 +161,6 @@ block_fifo_t *block_FifoNew( void ) void block_FifoRelease( block_fifo_t *p_fifo ) { block_ChainRelease( p_fifo->p_first ); - vlc_cond_destroy( &p_fifo->wait ); free( p_fifo ); } diff --git a/src/misc/interrupt.c b/src/misc/interrupt.c index f272b6ebca848ca64446984e1debb8a9b6ce4f6b..ef5fb49a876ed2ab3eddaf01e7da43ebca0f6333 100644 --- a/src/misc/interrupt.c +++ b/src/misc/interrupt.c @@ -221,7 +221,6 @@ static void vlc_mwait_i11e_cleanup(void *opaque) vlc_mutex_unlock(&ctx->lock); vlc_interrupt_finish(ctx); - vlc_cond_destroy(cond); } int vlc_mwait_i11e(vlc_tick_t deadline) @@ -242,9 +241,7 @@ int vlc_mwait_i11e(vlc_tick_t deadline) vlc_cleanup_pop(); vlc_mutex_unlock(&ctx->lock); - int ret = vlc_interrupt_finish(ctx); - vlc_cond_destroy(&wait); - return ret; + return vlc_interrupt_finish(ctx); } static void vlc_interrupt_forward_wake(void *opaque) diff --git a/src/misc/objects.c b/src/misc/objects.c index f7e68c4dc4cb0fbfb6c70817b7cc2b23517d208f..7b15ae91d025cce02c529d89359124a2afb00031 100644 --- a/src/misc/objects.c +++ b/src/misc/objects.c @@ -128,7 +128,6 @@ void vlc_object_deinit(vlc_object_t *obj) var_DestroyAll(obj); vlc_restorecancel(canc); - vlc_cond_destroy(&priv->var_wait); free(priv); } diff --git a/src/misc/picture_pool.c b/src/misc/picture_pool.c index 9190af91c4cc58a1c89f8d538a4583a4dce6c9b6..5f0f41eba8ea27dede993e9d38b619c5d04ec38f 100644 --- a/src/misc/picture_pool.c +++ b/src/misc/picture_pool.c @@ -55,7 +55,6 @@ static void picture_pool_Destroy(picture_pool_t *pool) return; atomic_thread_fence(memory_order_acquire); - vlc_cond_destroy(&pool->wait); aligned_free(pool); } diff --git a/src/misc/threads.c b/src/misc/threads.c index 7bde716aebdc18cfe8ca4c77cef11bc4810b817e..2976b010c52a2b47fae49634e0fa46271fa8b2eb 100644 --- a/src/misc/threads.c +++ b/src/misc/threads.c @@ -233,11 +233,6 @@ void vlc_cond_init_daytime(vlc_cond_t *cond) vlc_cond_init(cond); } -void vlc_cond_destroy(vlc_cond_t *cond) -{ - assert(cond->head == NULL); -} - struct vlc_cond_waiter { struct vlc_cond_waiter **pprev, *next; atomic_uint value; @@ -416,7 +411,7 @@ void vlc_rwlock_init (vlc_rwlock_t *lock) void vlc_rwlock_destroy (vlc_rwlock_t *lock) { - vlc_cond_destroy (&lock->wait); + (void) lock; } void vlc_rwlock_rdlock (vlc_rwlock_t *lock) diff --git a/src/network/httpd.c b/src/network/httpd.c index 177abcc710683dc28842319a616e46777eb44cd0..1cb58bb540373a709a481ebf50c638574e4a46a3 100644 --- a/src/network/httpd.c +++ b/src/network/httpd.c @@ -991,7 +991,6 @@ error: if (host) { net_ListenClose(host->fds); - vlc_cond_destroy(&host->wait); vlc_object_delete(host); } @@ -1027,7 +1026,6 @@ void httpd_HostDelete(httpd_host_t *host) assert(vlc_list_is_empty(&host->urls)); vlc_tls_ServerDelete(host->p_tls); net_ListenClose(host->fds); - vlc_cond_destroy(&host->wait); vlc_object_delete(host); vlc_mutex_unlock(&httpd.mutex); } diff --git a/src/os2/thread.c b/src/os2/thread.c index d7d07f6a176b681df2beabcf8cc717ef75cdc973..b732e9fb6e11a43bb1f281267a3975dd515e3479 100644 --- a/src/os2/thread.c +++ b/src/os2/thread.c @@ -159,7 +159,6 @@ unsigned long _System _DLL_InitTerm(unsigned long hmod, unsigned long flag) case 1 : /* Termination */ vlc_rwlock_destroy (&config_lock); vlc_threadvar_delete (&thread_key); - vlc_cond_destroy (&super_variable); _CRT_term(); diff --git a/src/player/player.c b/src/player/player.c index 6eedc7192580e33aa199d7820b2bd865ccc4c9a4..8d92bd996ad8fa0c06daacb6ae6dfed2df4f3f11 100644 --- a/src/player/player.c +++ b/src/player/player.c @@ -1840,13 +1840,6 @@ vlc_player_InitLocks(vlc_player_t *player, enum vlc_player_lock_type lock_type) vlc_cond_init(&player->destructor.wait); } -static void -vlc_player_DestroyLocks(vlc_player_t *player) -{ - vlc_cond_destroy(&player->start_delay_cond); - vlc_cond_destroy(&player->destructor.wait); -} - void vlc_player_Delete(vlc_player_t *player) { @@ -1871,8 +1864,6 @@ vlc_player_Delete(vlc_player_t *player) if (player->next_media) input_item_Release(player->next_media); - vlc_player_DestroyLocks(player); - vlc_player_DestroyTimer(player); vlc_player_aout_DelCallbacks(player); @@ -1976,7 +1967,6 @@ vlc_player_New(vlc_object_t *parent, enum vlc_player_lock_type lock_type, if (vlc_clone(&player->destructor.thread, vlc_player_destructor_Thread, player, VLC_THREAD_PRIORITY_LOW) != 0) { - vlc_player_DestroyLocks(player); vlc_player_DestroyTimer(player); goto error; } diff --git a/src/posix/timer.c b/src/posix/timer.c index f84f17cb9d7b7a0b8c8e2cbe492d51308c7e2cc7..d88df7d501bcd934671400c59e45b492ee52a9d5 100644 --- a/src/posix/timer.c +++ b/src/posix/timer.c @@ -121,7 +121,6 @@ int vlc_timer_create (vlc_timer_t *id, void (*func) (void *), void *data) if (vlc_clone (&timer->thread, vlc_timer_thread, timer, VLC_THREAD_PRIORITY_INPUT)) { - vlc_cond_destroy (&timer->reschedule); free (timer); return ENOMEM; } @@ -138,7 +137,6 @@ void vlc_timer_destroy (vlc_timer_t timer) vlc_mutex_unlock(&timer->lock); vlc_join (timer->thread, NULL); - vlc_cond_destroy (&timer->reschedule); free (timer); } diff --git a/src/stream_output/sap.c b/src/stream_output/sap.c index de8040cc45d765a911cf006342bb35dbfe193d1b..0e699faeee2b53d1c8c0aa8673cd313ee9142537 100644 --- a/src/stream_output/sap.c +++ b/src/stream_output/sap.c @@ -108,7 +108,6 @@ static sap_address_t *AddressCreate (vlc_object_t *obj, const char *group) static void AddressDestroy (sap_address_t *addr) { - vlc_cond_destroy (&addr->wait); net_Close (addr->fd); free (addr); } diff --git a/src/test/timer.c b/src/test/timer.c index 6b40c30c470b51bca4bb3c1e637c736cd907c04c..a071bd93eedb0c79d1178acb5a39efc4df0af5f0 100644 --- a/src/test/timer.c +++ b/src/test/timer.c @@ -107,6 +107,5 @@ int main (void) assert(ts >= VLC_TICK_FROM_MS(200)); vlc_timer_destroy (data.timer); - vlc_cond_destroy (&data.wait); return 0; } diff --git a/src/video_output/control.c b/src/video_output/control.c index c14931070be52426ec6a7f708a9706d793c7d0b2..d8da02fc3517efee605f3604958881fbfba6a6e3 100644 --- a/src/video_output/control.c +++ b/src/video_output/control.c @@ -68,9 +68,6 @@ void vout_control_Clean(vout_control_t *ctrl) vout_control_cmd_Clean(&cmd); } ARRAY_RESET(ctrl->cmd); - - vlc_cond_destroy(&ctrl->wait_request); - vlc_cond_destroy(&ctrl->wait_available); } void vout_control_Dead(vout_control_t *ctrl) diff --git a/src/video_output/snapshot.c b/src/video_output/snapshot.c index b18297cb1b442aff6b6365a516db4f6bbc226724..2ee2d55432c186c3cdbf2a7c787faa6d12a3dff2 100644 --- a/src/video_output/snapshot.c +++ b/src/video_output/snapshot.c @@ -77,7 +77,6 @@ void vout_snapshot_Destroy(vout_snapshot_t *snap) picture = next; } - vlc_cond_destroy(&snap->wait); free(snap); } diff --git a/src/video_output/vout_subpictures.c b/src/video_output/vout_subpictures.c index 2a4a79ad918113ecccb36c720670ad38ce43ed76..5a67f061a5a077572635dc5db7c0100de2b81466 100644 --- a/src/video_output/vout_subpictures.c +++ b/src/video_output/vout_subpictures.c @@ -1609,8 +1609,6 @@ static void spu_Cleanup(spu_t *spu) vlc_vector_destroy(&sys->channels); - vlc_cond_destroy(&sys->prerender.cond); - vlc_cond_destroy(&sys->prerender.output_cond); vlc_vector_clear(&sys->prerender.vector); video_format_Clean(&sys->prerender.fmtdst); video_format_Clean(&sys->prerender.fmtsrc);