From 5d5aeaf3cebdba2fce0555dfee28d75eab898e72 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sun, 5 Jun 2005 11:01:39 +0000 Subject: [PATCH] Ups... Forgot to change this back before committing. Now the segment was only found if its size was 0. --- src/extract/tracks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extract/tracks.cpp b/src/extract/tracks.cpp index ac632440b..8d0db5e1b 100644 --- a/src/extract/tracks.cpp +++ b/src/extract/tracks.cpp @@ -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;