]> git.sesse.net Git - vlc/blobdiff - src/input/input.c
dejidjei:
[vlc] / src / input / input.c
index d23cd4f13bceb543c2fb8b68a95c83cee88c3433..42a575ed0c6584c0b7068c91dde6f1e4cb89d03b 100644 (file)
@@ -140,6 +140,7 @@ static input_thread_t *Create( vlc_object_t *p_parent, input_item_t *p_item,
               "input launching for '%s'", psz_name );
 
     msg_Dbg( p_input, "Creating an input for '%s'", psz_name);
+    printf("Creating an input for '%s'", psz_name);
 
     free( psz_name );
 
@@ -317,6 +318,7 @@ static void Destructor( input_thread_t * p_input )
 #ifndef NDEBUG
     char * psz_name = input_item_GetName( p_input->p->input.p_item );
     msg_Dbg( p_input, "Destroying the input for '%s'", psz_name);
+    printf("Destroying the input for '%s'", psz_name);
     free( psz_name );
 #endif