| 575 | } |
| 576 | |
| 577 | bool FFmpegVersionHandler::checkLibraryFiles(QString avCodecLib, |
| 578 | QString avFormatLib, |
| 579 | QString avUtilLib, |
| 580 | QString swResampleLib, |
| 581 | QStringList &logging) |
| 582 | { |
| 583 | FFmpegVersionHandler handler; |
| 584 | bool success = |
| 585 | handler.loadFFMpegLibrarySpecific(avFormatLib, avCodecLib, avUtilLib, swResampleLib); |
| 586 | logging = handler.getLog(); |
| 587 | return success; |
| 588 | } |
| 589 | |
| 590 | void FFmpegVersionHandler::enableLoggingWarning() |
| 591 | { |
nothing calls this directly
no test coverage detected