Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c45d3ad0 authored by Andreas Huber's avatar Andreas Huber Committed by Android (Google) Code Review
Browse files

Merge "The .mkv parser lib leaves some tracks NULL if it doesn't support them." into honeycomb

parents 94b8b114 dfe8d9b1
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -707,6 +707,12 @@ void MatroskaExtractor::addTracks() {
    for (size_t index = 0; index < tracks->GetTracksCount(); ++index) {
        const mkvparser::Track *track = tracks->GetTrackByIndex(index);

        if (track == NULL) {
            // Apparently this is currently valid (if unexpected) behaviour
            // of the mkv parser lib.
            continue;
        }

        const char *const codecID = track->GetCodecId();
        LOGV("codec id = %s", codecID);
        LOGV("codec name = %s", track->GetCodecNameAsUTF8());