2024-08-24, 09:31 PM
(This post was last modified: 2024-08-24, 10:24 PM by theguymadmax. Edited 3 times in total.)
This is the error I got when I played that file. There's already a bug report on ATV with that same error message. I also can't get that to play on any other version of exoplayer, I went as far back as version 1.2.1.
Here's the code that's causing the issue.
So I ran mkvinfo filename.mkv and it came back
Order is set to 0, so why the crash?
Here's the code that's causing the issue.
Code:
case ID_CONTENT_ENCODING_ORDER:
// This extractor only supports one ContentEncoding element and hence the order has to be 0.
if (value != 0) {
throw ParserException.createForMalformedContainer(
"ContentEncodingOrder " + value + " not supported", /* cause= */ null);
So I ran mkvinfo filename.mkv and it came back
Code:
| + Content encodings
| + Content encoding
| + Content compression
| + Algorithm: 0 (ZLIB)
| + Order: 0
| + Scope: 1 (1: all frames)
| + Type: 0 (compression)
Order is set to 0, so why the crash?