Ups... Forgot to change this back before committing. Now the segment was only found if its size was 0.

This commit is contained in:
Moritz Bunkus 2005-06-05 11:01:39 +00:00
parent 66ddac74d5
commit 5d5aeaf3ce

View File

@ -328,7 +328,7 @@ extract_tracks(const char *file_name,
while (1) {
// Next element must be a segment
l0 = es->FindNextID(KaxSegment::ClassInfos, 0); //0xFFFFFFFFFFFFFFFFLL);
l0 = es->FindNextID(KaxSegment::ClassInfos, 0xFFFFFFFFFFFFFFFFLL);
if (l0 == NULL) {
show_error(_("No segment/level 0 element found."));
return false;