| 139 | } |
| 140 | |
| 141 | std::optional<pairUint64> ParserAnnexB::getFrameStartEndPos(FrameIndexCodingOrder idx) |
| 142 | { |
| 143 | if (idx >= this->frameListCodingOrder.size()) |
| 144 | return {}; |
| 145 | this->updateFrameListDisplayOrder(); |
| 146 | return this->frameListCodingOrder[idx].fileStartEndPos; |
| 147 | } |
| 148 | |
| 149 | bool ParserAnnexB::parseAnnexBFile(std::unique_ptr<FileSourceAnnexBFile> &file, QWidget *mainWindow) |
| 150 | { |
no test coverage detected