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

Commit 4cb2c4dc authored by James Dong's avatar James Dong
Browse files

Give PSP and QuickTime compatible mp4 files a chance to play

Change-Id: I2618946b242b581fb8ed5de9a13ede23a4191b11
related-to-bug: 4173290
parent c30268b9
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -2207,6 +2207,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;