Changeset e72ecce9ec4febce33d043eb88bed83a32466ed0

Show
Ignore:
Timestamp:
11/06/08 18:28:32 (4 months ago)
Author:
Felix Paul Kühne <fkuehne@videolan.org>
git-committer:
Felix Paul Kühne <fkuehne@videolan.org> 1213201712 +0200
git-parent:

[59e0425d59a9be5f496ada0d89ac7f1e0574d442]

git-author:
Felix Paul Kühne <fkuehne@videolan.org> 1213201699 +0200
Message:

Fix logic error pointed by Meuuh

Files:

Legend:

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

    r03ec97b re72ecce  
    269269#ifdef __APPLE__ 
    270270        case VLC_FOURCC('I','L','B','C'): /* iLBC */ 
    271             if ((err == noErr) || (qtVersion < 0x07500000))  
     271            if ((err != noErr) || (qtVersion < 0x07500000))  
    272272                return VLC_EGENERIC; 
    273273        case VLC_FOURCC('i','l','b','c'): /* iLBC */ 
    274             if ((err == noErr) || (qtVersion < 0x07500000))  
     274            if ((err != noErr) || (qtVersion < 0x07500000))  
    275275                return VLC_EGENERIC; 
    276276#endif