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

Commit 2e40530f authored by James Dong's avatar James Dong Committed by Android (Google) Code Review
Browse files

Merge "Give PSP and QuickTime compatible mp4 files a chance to play"

parents 8a9ce255 4cb2c4dc
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2130,6 +2130,11 @@ static bool isCompatibleBrand(uint32_t fourcc) {
        FOURCC('3', 'g', 'p', '4'),
        FOURCC('m', 'p', '4', '1'),
        FOURCC('m', 'p', '4', '2'),

        // Won't promise that the following file types can be played.
        // Just give these file types a chance.
        FOURCC('q', 't', ' ', ' '),  // Apple's QuickTime
        FOURCC('M', 'S', 'N', 'V'),  // Sony's PSP
    };

    for (size_t i = 0;