| 50 | { |
| 51 | |
| 52 | QString ParserAnnexB::getShortStreamDescription(int) const |
| 53 | { |
| 54 | QString info = "Video"; |
| 55 | auto frameSize = this->getSequenceSizeSamples(); |
| 56 | if (frameSize.isValid()) |
| 57 | info += QString(" (%1x%2)").arg(frameSize.width).arg(frameSize.height); |
| 58 | return info; |
| 59 | } |
| 60 | |
| 61 | bool ParserAnnexB::addFrameToList(int poc, |
| 62 | std::optional<pairUint64> fileStartEndPos, |
no test coverage detected