Commit afb9691c authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

stream_output: Expanded debug message at sout input creation/destruction.

parent 303288a2
...@@ -212,13 +212,13 @@ sout_packetizer_input_t *sout_InputNew( sout_instance_t *p_sout, ...@@ -212,13 +212,13 @@ sout_packetizer_input_t *sout_InputNew( sout_instance_t *p_sout,
{ {
sout_packetizer_input_t *p_input; sout_packetizer_input_t *p_input;
msg_Dbg( p_sout, "adding a new input" );
/* *** create a packetizer input *** */ /* *** create a packetizer input *** */
p_input = malloc( sizeof( sout_packetizer_input_t ) ); p_input = malloc( sizeof( sout_packetizer_input_t ) );
p_input->p_sout = p_sout; p_input->p_sout = p_sout;
p_input->p_fmt = p_fmt; 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' ) ) if( p_fmt->i_codec == VLC_FOURCC( 'n', 'u', 'l', 'l' ) )
{ {
vlc_object_release( p_sout ); vlc_object_release( p_sout );
...@@ -246,7 +246,7 @@ int sout_InputDelete( sout_packetizer_input_t *p_input ) ...@@ -246,7 +246,7 @@ int sout_InputDelete( sout_packetizer_input_t *p_input )
{ {
sout_instance_t *p_sout = p_input->p_sout; 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' ) ) if( p_input->p_fmt->i_codec != VLC_FOURCC( 'n', 'u', 'l', 'l' ) )
{ {
......
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