Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
c90b3db3
Commit
c90b3db3
authored
Mar 23, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
input: Remove input_DestroyThread() as it is now handled via vlc_object_release().
parent
05dc64af
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
15 additions
and
30 deletions
+15
-30
include/vlc_input.h
include/vlc_input.h
+4
-1
modules/services_discovery/podcast.c
modules/services_discovery/podcast.c
+2
-2
src/control/media_instance.c
src/control/media_instance.c
+3
-4
src/input/input.c
src/input/input.c
+0
-16
src/input/vlm.c
src/input/vlm.c
+3
-3
src/libvlc.sym
src/libvlc.sym
+0
-1
src/playlist/engine.c
src/playlist/engine.c
+3
-3
No files found.
include/vlc_input.h
View file @
c90b3db3
...
...
@@ -644,15 +644,18 @@ struct input_thread_t
/*****************************************************************************
* Prototypes
*****************************************************************************/
/* input_CreateThread
* Release the returned input_thread_t using vlc_object_release() */
#define input_CreateThread(a,b) __input_CreateThread(VLC_OBJECT(a),b)
VLC_EXPORT
(
input_thread_t
*
,
__input_CreateThread
,
(
vlc_object_t
*
,
input_item_t
*
)
);
#define input_Preparse(a,b) __input_Preparse(VLC_OBJECT(a),b)
VLC_EXPORT
(
int
,
__input_Preparse
,
(
vlc_object_t
*
,
input_item_t
*
)
);
#define input_Read(a,b,c) __input_Read(VLC_OBJECT(a),b, c)
VLC_EXPORT
(
int
,
__input_Read
,
(
vlc_object_t
*
,
input_item_t
*
,
vlc_bool_t
)
);
VLC_EXPORT
(
void
,
input_StopThread
,
(
input_thread_t
*
)
);
VLC_EXPORT
(
void
,
input_DestroyThread
,
(
input_thread_t
*
)
);
enum
input_query_e
{
...
...
modules/services_discovery/podcast.c
View file @
c90b3db3
...
...
@@ -135,7 +135,7 @@ static void Close( vlc_object_t *p_this )
if
(
p_sd
->
p_sys
->
pp_input
[
i
]
)
{
input_StopThread
(
p_sd
->
p_sys
->
pp_input
[
i
]
);
input_DestroyThread
(
p_sd
->
p_sys
->
pp_input
[
i
]
);
vlc_object_release
(
p_sd
->
p_sys
->
pp_input
[
i
]
);
p_sd
->
p_sys
->
pp_input
[
i
]
=
NULL
;
}
}
...
...
@@ -175,7 +175,7 @@ static void Run( services_discovery_t *p_sd )
||
p_sd
->
p_sys
->
pp_input
[
i
]
->
b_error
)
{
input_StopThread
(
p_sd
->
p_sys
->
pp_input
[
i
]
);
input_DestroyThread
(
p_sd
->
p_sys
->
pp_input
[
i
]
);
vlc_object_release
(
p_sd
->
p_sys
->
pp_input
[
i
]
);
p_sd
->
p_sys
->
pp_input
[
i
]
=
NULL
;
REMOVE_ELEM
(
p_sys
->
pp_input
,
p_sys
->
i_input
,
i
);
i
--
;
...
...
src/control/media_instance.c
View file @
c90b3db3
...
...
@@ -92,12 +92,11 @@ static void release_input_thread( libvlc_media_instance_t *p_mi )
/* We owned this one */
input_StopThread
(
p_input_thread
);
input_DestroyThread
(
p_input_thread
);
var_Destroy
(
p_input_thread
,
"drawable"
);
}
else
vlc_object_release
(
p_input_thread
);
vlc_object_release
(
p_input_thread
);
p_mi
->
p_input_thread
=
NULL
;
}
...
...
@@ -422,7 +421,7 @@ void libvlc_media_instance_destroy( libvlc_media_instance_t *p_mi )
}
vlc_mutex_destroy
(
&
p_mi
->
object_lock
);
input_DestroyThread
(
p_input_thread
);
vlc_object_release
(
p_input_thread
);
libvlc_media_descriptor_release
(
p_mi
->
p_md
);
...
...
src/input/input.c
View file @
c90b3db3
...
...
@@ -478,22 +478,6 @@ sout_instance_t * input_DetachSout( input_thread_t *p_input )
return
p_input
->
p
->
p_sout
;
}
/**
* Clean up a dead input thread
* This function does not return until the thread is effectively cancelled.
*
* \param the input thread to kill
*/
void
input_DestroyThread
(
input_thread_t
*
p_input
)
{
/* Join the thread */
vlc_thread_join
(
p_input
);
/* */
vlc_object_detach
(
p_input
);
vlc_object_release
(
p_input
);
}
/*****************************************************************************
* Run: main thread loop
* This is the "normal" thread that spawns the input processing chain,
...
...
src/input/vlm.c
View file @
c90b3db3
...
...
@@ -2262,7 +2262,7 @@ static int vlm_OnMediaUpdate( vlm_t *p_vlm, vlm_media_sys_t *p_media )
msleep
(
100000
);
input_StopThread
(
p_input
);
input_DestroyThread
(
p_input
);
vlc_object_release
(
p_input
);
}
free
(
psz_output
);
free
(
psz_header
);
...
...
@@ -2499,7 +2499,7 @@ static void vlm_MediaInstanceDelete( vlm_media_instance_sys_t *p_instance )
{
input_StopThread
(
p_instance
->
p_input
);
p_instance
->
p_sout
=
input_DetachSout
(
p_instance
->
p_input
);
input_DestroyThread
(
p_instance
->
p_input
);
vlc_object_release
(
p_instance
->
p_input
);
}
if
(
p_instance
->
p_sout
)
sout_DeleteInstance
(
p_instance
->
p_sout
);
...
...
@@ -2583,7 +2583,7 @@ static int vlm_ControlMediaInstanceStart( vlm_t *p_vlm, int64_t id, const char *
input_StopThread
(
p_instance
->
p_input
);
p_instance
->
p_sout
=
input_DetachSout
(
p_instance
->
p_input
);
input_DestroyThread
(
p_instance
->
p_input
);
vlc_object_release
(
p_instance
->
p_input
);
if
(
!
p_instance
->
b_sout_keep
&&
p_instance
->
p_sout
)
{
sout_DeleteInstance
(
p_instance
->
p_sout
);
...
...
src/libvlc.sym
View file @
c90b3db3
...
...
@@ -127,7 +127,6 @@ input_CurrentMetaFlags
input_DecoderDecode
input_DecoderDelete
input_DecoderNew
input_DestroyThread
input_GetItem
input_ItemAddInfo
input_ItemAddOpt
...
...
src/playlist/engine.c
View file @
c90b3db3
...
...
@@ -273,11 +273,11 @@ check_input:
p_playlist
->
p_input
=
NULL
;
/* Release the playlist lock, because we may get stuck
* in
input_DestroyThread
() for some time. */
* in
vlc_object_release
() for some time. */
PL_UNLOCK
;
/* Destroy input */
input_DestroyThread
(
p_input
);
vlc_object_release
(
p_input
);
PL_LOCK
;
...
...
@@ -408,7 +408,7 @@ void playlist_LastLoop( playlist_t *p_playlist )
PL_UNLOCK
;
/* Destroy input */
input_DestroyThread
(
p_input
);
vlc_object_release
(
p_input
);
continue
;
}
else
if
(
p_playlist
->
p_input
->
b_die
)
...
...
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