| 645 | } |
| 646 | |
| 647 | indexRange FileSourceFFmpegFile::getDecodableFrameLimits() const |
| 648 | { |
| 649 | if (this->keyFrameList.isEmpty() || this->nrFrames == 0) |
| 650 | return {}; |
| 651 | |
| 652 | indexRange range; |
| 653 | range.first = int(this->keyFrameList.at(0).frame); |
| 654 | range.second = int(this->nrFrames); |
| 655 | return range; |
| 656 | } |
| 657 | |
| 658 | QList<QStringPairList> FileSourceFFmpegFile::getFileInfoForAllStreams() |
| 659 | { |
no test coverage detected