Commit ec71b128 authored by Laurent Aimar's avatar Laurent Aimar

Cosmetics.

parent cf11da5c
......@@ -625,12 +625,12 @@ static int TsStart( es_out_t *p_out )
vlc_object_set_destructor( p_ts, TsDestructor );
p_sys->b_delayed = true;
if( vlc_thread_create( p_sys->p_thread, "es out timeshift",
if( vlc_thread_create( p_ts, "es out timeshift",
TsRun, VLC_THREAD_PRIORITY_INPUT, false ) )
{
msg_Err( p_sys->p_input, "cannot create input thread" );
vlc_object_release( p_sys->p_thread );
vlc_object_release( p_ts );
p_sys->b_delayed = false;
return VLC_EGENERIC;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment