Changeset 26716258739260ba9c3ffbe0d1e78509635abda2

Show
Ignore:
Timestamp:
06/05/08 15:31:02 (3 months ago)
Author:
Rafaël Carré <funman@videolan.org>
git-committer:
Rafaël Carré <funman@videolan.org> 1212672662 +0200
git-parent:

[ae2b7693af07621c2b3d7cf22c9acb242cb224d8]

git-author:
Rafaël Carré <funman@videolan.org> 1212672662 +0200
Message:

Don't workaround unknown bugs in external libraries

Better comment them fully, if you are too lazy to report upstream

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/codec/ffmpeg/video.c

    r3a49e9f r2671625  
    964964    p_ff_pic->linesize[3] = 0; 
    965965 
    966     if( p_ff_pic->reference != 0 || 
    967         p_sys->i_codec_id == CODEC_ID_H264 /* Bug in libavcodec */ ) 
     966    if( p_ff_pic->reference != 0 ) 
    968967    { 
    969968        p_dec->pf_picture_link( p_dec, p_pic ); 
     
    995994    p_ff_pic->data[3] = NULL; 
    996995 
    997     if( p_ff_pic->reference != 0 || 
    998         p_dec->p_sys->i_codec_id == CODEC_ID_H264 /* Bug in libavcodec */ ) 
     996    if( p_ff_pic->reference != 0 ) 
    999997    { 
    1000998        p_dec->pf_picture_unlink( p_dec, p_pic );