| 656 | } |
| 657 | |
| 658 | QList<QStringPairList> FileSourceFFmpegFile::getFileInfoForAllStreams() |
| 659 | { |
| 660 | QList<QStringPairList> info; |
| 661 | |
| 662 | info += formatCtx.getInfoText(); |
| 663 | for (unsigned i = 0; i < this->formatCtx.getNbStreams(); i++) |
| 664 | { |
| 665 | auto stream = this->formatCtx.getStream(i); |
| 666 | auto codecIdWrapper = this->ff.getCodecIDWrapper(stream.getCodecID()); |
| 667 | info += stream.getInfoText(codecIdWrapper); |
| 668 | } |
| 669 | |
| 670 | return info; |
| 671 | } |
| 672 | |
| 673 | QList<AVRational> FileSourceFFmpegFile::getTimeBaseAllStreams() |
| 674 | { |
no test coverage detected