Changeset 1078

Show
Ignore:
Timestamp:
06/17/09 21:35:54 (9 months ago)
Author:
astrange
Message:

Add MSRLE to blacklisted AVI codecs.

(shouldn't this be an array or something?)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Release/Changes.txt

    r1063 r1078  
    1717- Fixed H264 crash in put_h264_qpel8_h_lowpass_l2_ssse3 
    1818- Fixed crash with corrupt first frame [r1061] 
     19- Fixed BMP/RLE in AVI [r1078] 
    1920Subtitles: 
    2021- Fixed garbage characters appearing at the end of a line with some fonts [r1013] 
  • trunk/ff_MovieImport.c

    r1042 r1078  
    376376                        enum CodecID id = codec_get_id(codec_bmp_tags, BSWAP(fourcc)); 
    377377                         
    378                         if (id == CODEC_ID_MJPEG || id == CODEC_ID_DVVIDEO || id == CODEC_ID_RAWVIDEO || id == CODEC_ID_MSVIDEO1
     378                        if (id == CODEC_ID_MJPEG || id == CODEC_ID_DVVIDEO || id == CODEC_ID_RAWVIDEO || id == CODEC_ID_MSVIDEO1 || id == CODEC_ID_MSRLE
    379379                                *valid = 0; 
    380380