Changeset 863
- Timestamp:
- 04/22/08 00:20:23 (3 months ago)
- Files:
-
- trunk/MatroskaImportPrivate.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MatroskaImportPrivate.cpp
r862 r863 703 703 KaxChapterString & chapString = GetChild<KaxChapterString>(chapDisplay); 704 704 MediaHandler mh = GetMediaHandler(GetTrackMedia(chapterTrack)); 705 706 if (UInt64(startTime) > movieDuration) { 705 TimeValue start = UInt64(startTime) / timecodeScale; 706 707 if (start > movieDuration) { 707 708 Codecprintf(NULL, "MKV: Chapter time is beyond the end of the file\n"); 708 709 return; … … 720 721 Codecprintf(NULL, "MKV: Error adding text sample %d\n", err); 721 722 else { 722 TimeValue start = UInt64(startTime) / timecodeScale;723 724 723 InsertMediaIntoTrack(chapterTrack, start, inserted, 1, fixed1); 725 724 }
