| 635 | } |
| 636 | |
| 637 | int64_t FileSourceFFmpegFile::getMaxTS() |
| 638 | { |
| 639 | if (!this->isFileOpened) |
| 640 | return -1; |
| 641 | |
| 642 | // duration / AV_TIME_BASE is the duration in seconds |
| 643 | // pts * timeBase is also in seconds |
| 644 | return this->duration / AV_TIME_BASE * this->timeBase.den / this->timeBase.num; |
| 645 | } |
| 646 | |
| 647 | indexRange FileSourceFFmpegFile::getDecodableFrameLimits() const |
| 648 | { |
no outgoing calls
no test coverage detected