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

Commit 4ac35852 authored by The Android Open Source Project's avatar The Android Open Source Project
Browse files

merge from open-source master

Change-Id: I934cf85c4673f9ca3a9549c2074907ad572310f4
parents a945bfd9 49475772
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -758,7 +758,7 @@ player_type getPlayerType(const char* url)
        int len = strlen(FILE_EXTS[i].extension);
        int start = lenURL - len;
        if (start > 0) {
            if (!strncmp(url + start, FILE_EXTS[i].extension, len)) {
            if (!strncasecmp(url + start, FILE_EXTS[i].extension, len)) {
                if (FILE_EXTS[i].playertype == VORBIS_PLAYER
                    && !strncasecmp(url, "http://", 7)
                    && useStagefrightForHTTP) {