Changeset afb9691c93dc4f1d59d15c661ac92f06aa634fe9

Show
Ignore:
Timestamp:
22/04/08 15:50:53 (6 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208872253 +0200
git-parent:

[303288a2dda861a56b80b7bf5c38530d8e4a6da1]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1208872213 +0200
Message:

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

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/stream_output/stream_output.c

    r449fd28 rafb9691  
    213213    sout_packetizer_input_t *p_input; 
    214214 
    215     msg_Dbg( p_sout, "adding a new input" ); 
    216  
    217215    /* *** create a packetizer input *** */ 
    218216    p_input         = malloc( sizeof( sout_packetizer_input_t ) ); 
     
    220218    p_input->p_fmt  = p_fmt; 
    221219 
     220    msg_Dbg( p_sout, "adding a new sout input (sout_input:%p)", p_input ); 
     221 
    222222    if( p_fmt->i_codec == VLC_FOURCC( 'n', 'u', 'l', 'l' ) ) 
    223223    { 
     
    247247    sout_instance_t     *p_sout = p_input->p_sout; 
    248248 
    249     msg_Dbg( p_sout, "removing an input" ); 
     249    msg_Dbg( p_sout, "removing a sout input (sout_input:%p)", p_input ); 
    250250 
    251251    if( p_input->p_fmt->i_codec != VLC_FOURCC( 'n', 'u', 'l', 'l' ) )