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

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

Merge "Increase the avi extractor's confidence slighly over mp3's"

parents fc7a8081 f8c84b34
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -911,7 +911,11 @@ bool SniffAVI(

    if (!memcmp(tmp, "RIFF", 4) && !memcmp(&tmp[8], "AVI ", 4)) {
        mimeType->setTo(MEDIA_MIMETYPE_CONTAINER_AVI);
        *confidence = 0.2;

        // Just a tad over the mp3 extractor's confidence, since
        // these .avi files may contain .mp3 content that otherwise would
        // mistakenly lead to us identifying the entire file as a .mp3 file.
        *confidence = 0.21;

        return true;
    }