Changeset 303288a2dda861a56b80b7bf5c38530d8e4a6da1

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

[b7d1154663ccc8f245e1f56e6660e84ee705ac2a]

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

stream_out/description.c: Add some debug msg to better track down an assertion failure.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/stream_out/description.c

    r449fd28 r303288a  
    9797    sout_stream_sys_t *p_sys = p_stream->p_sys; 
    9898 
     99    msg_Dbg( p_this, "description: Closing the module" ); 
     100 
    99101    /* It can happen only if buggy */ 
    100102    assert( !p_sys->p_input ); 
     
    105107static sout_stream_id_t *Add( sout_stream_t *p_stream, es_format_t *p_fmt ) 
    106108{ 
     109    __msg_Dbg( NULL, "description: Adding a stream" ); 
    107110    sout_stream_sys_t *p_sys = p_stream->p_sys; 
    108111    sout_stream_id_t *id; 
     
    137140    sout_stream_sys_t *p_sys = p_stream->p_sys; 
    138141 
     142    __msg_Dbg( NULL, "description: Removing a stream (id:%d)", p_sys->i_id ); 
     143 
    139144    p_sys->i_id--; 
    140145    if( p_sys->i_id <= 0 )