hlsdl's file path
| 45 | |
| 46 | // hlsdl's file path |
| 47 | QString hlsdlFilePath() |
| 48 | { |
| 49 | static QString filename; |
| 50 | if (filename.isNull()) |
| 51 | { |
| 52 | QString appPath = QCoreApplication::applicationDirPath(); |
| 53 | filename = appPath.endsWith(QStringLiteral("/bin")) ? appPath + QStringLiteral("/moonplayer-hlsdl") : QStringLiteral("moonplayer-hlsdl"); |
| 54 | } |
| 55 | return filename; |
| 56 | } |
nothing calls this directly
no outgoing calls
no test coverage detected