FFmpeg's file path
| 29 | |
| 30 | // FFmpeg's file path |
| 31 | QString ffmpegFilePath() |
| 32 | { |
| 33 | static QString filename; |
| 34 | if (filename.isNull()) |
| 35 | filename = QCoreApplication::applicationDirPath() + QStringLiteral("/ffmpeg"); |
| 36 | return filename; |
| 37 | } |
| 38 | |
| 39 | // hlsdl's file path |
| 40 | QString hlsdlFilePath() |
nothing calls this directly
no outgoing calls
no test coverage detected