Loading media/extractors/mkv/MatroskaExtractor.cpp +6 −2 Original line number Diff line number Diff line Loading @@ -67,8 +67,12 @@ struct DataSourceBaseReader : public mkvparser::IMkvReader { virtual int Length(long long* total, long long* available) { off64_t size; if (mSource->getSize(&size) != OK) { if (total) { *total = -1; } if (available) { *available = (long long)((1ull << 63) - 1); } return 0; } Loading Loading
media/extractors/mkv/MatroskaExtractor.cpp +6 −2 Original line number Diff line number Diff line Loading @@ -67,8 +67,12 @@ struct DataSourceBaseReader : public mkvparser::IMkvReader { virtual int Length(long long* total, long long* available) { off64_t size; if (mSource->getSize(&size) != OK) { if (total) { *total = -1; } if (available) { *available = (long long)((1ull << 63) - 1); } return 0; } Loading