Changeset 96dd99415556465fddf28c4248b42d273cde32cd

Show
Ignore:
Timestamp:
09/05/05 10:53:54 (3 years ago)
Author:
Steve Lhomme <robux@videolan.org>
git-committer:
Steve Lhomme <robux@videolan.org> 1125910434 +0000
git-parent:

[ab429b30404726cac5cc7fc18bb1be222177e12b]

git-author:
Steve Lhomme <robux@videolan.org> 1125910434 +0000
Message:

* mkv.cpp: should fix the compilation error with gcc

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/demux/mkv.cpp

    r3a0a0ec r96dd994  
    954954    std::vector<chapter_codec_cmds_c*> codecs; 
    955955 
    956     static bool CompareTimecode( const chapter_item_c * & itemA, const chapter_item_c * & itemB ) 
     956    static bool CompareTimecode( const chapter_item_c * itemA, const chapter_item_c * itemB ) 
    957957    { 
    958958        return ( itemA->i_user_start_time < itemB->i_user_start_time || (itemA->i_user_start_time == itemB->i_user_start_time && itemA->i_user_end_time < itemB->i_user_end_time) );