| 671 | } |
| 672 | |
| 673 | QList<AVRational> FileSourceFFmpegFile::getTimeBaseAllStreams() |
| 674 | { |
| 675 | QList<AVRational> timeBaseList; |
| 676 | |
| 677 | for (unsigned i = 0; i < this->formatCtx.getNbStreams(); i++) |
| 678 | { |
| 679 | auto stream = this->formatCtx.getStream(i); |
| 680 | timeBaseList.append(stream.getTimeBase()); |
| 681 | } |
| 682 | |
| 683 | return timeBaseList; |
| 684 | } |
| 685 | |
| 686 | QList<QString> FileSourceFFmpegFile::getShortStreamDescriptionAllStreams() |
| 687 | { |
no test coverage detected