]> git.sesse.net Git - vlc/commitdiff
stream_output: Expanded debug message at sout input creation/destruction.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 22 Apr 2008 13:50:13 +0000 (15:50 +0200)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Tue, 22 Apr 2008 13:50:53 +0000 (15:50 +0200)
src/stream_output/stream_output.c

index f6171935141893ac5ccfb699db9ddf44f8c793f3..5077f06c06392561eea0b22e99e58e2cb0ccf3c6 100644 (file)
@@ -212,13 +212,13 @@ sout_packetizer_input_t *sout_InputNew( sout_instance_t *p_sout,
 {
     sout_packetizer_input_t *p_input;
 
-    msg_Dbg( p_sout, "adding a new input" );
-
     /* *** create a packetizer input *** */
     p_input         = malloc( sizeof( sout_packetizer_input_t ) );
     p_input->p_sout = p_sout;
     p_input->p_fmt  = p_fmt;
 
+    msg_Dbg( p_sout, "adding a new sout input (sout_input:%p)", p_input );
+
     if( p_fmt->i_codec == VLC_FOURCC( 'n', 'u', 'l', 'l' ) )
     {
         vlc_object_release( p_sout );
@@ -246,7 +246,7 @@ int sout_InputDelete( sout_packetizer_input_t *p_input )
 {
     sout_instance_t     *p_sout = p_input->p_sout;
 
-    msg_Dbg( p_sout, "removing an input" );
+    msg_Dbg( p_sout, "removing a sout input (sout_input:%p)", p_input );
 
     if( p_input->p_fmt->i_codec != VLC_FOURCC( 'n', 'u', 'l', 'l' ) )
     {