Show
Ignore:
Timestamp:
11/07/08 00:15:32 (3 months ago)
Author:
Laurent Aimar <fenrir@videolan.org>
git-committer:
Laurent Aimar <fenrir@videolan.org> 1215728132 +0200
git-parent:

[ce4c05bb991cd177949f2e58b01d9027a78e1dec]

git-author:
Laurent Aimar <fenrir@videolan.org> 1215728068 +0200
Message:

Fixed segfault when using sfilter in transocde (close #1663)

Files:

Legend:

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

    rd448542 r16ceb0d  
    19811981            } 
    19821982 
    1983             fmt = filter_chain_GetFmtOut( id->p_f_chain )->video; 
     1983            if( filter_chain_GetLength( id->p_f_chain ) > 0 ) 
     1984                fmt = filter_chain_GetFmtOut( id->p_f_chain )->video; 
     1985            else 
     1986                fmt = id->p_decoder->fmt_out.video; 
    19841987 
    19851988            /* FIXME (shouldn't have to be done here) */