| 834 | } |
| 835 | |
| 836 | bool ExportFFmpeg::CheckFileName(wxFileName & WXUNUSED(filename), int WXUNUSED(format)) const |
| 837 | { |
| 838 | bool result = true; |
| 839 | |
| 840 | // Show "Locate FFmpeg" dialog |
| 841 | mFFmpeg = FFmpegFunctions::Load(); |
| 842 | if (!mFFmpeg) |
| 843 | { |
| 844 | FindFFmpegLibs(); |
| 845 | mFFmpeg = FFmpegFunctions::Load(); |
| 846 | |
| 847 | return LoadFFmpeg(true); |
| 848 | } |
| 849 | |
| 850 | return result; |
| 851 | } |
| 852 | |
| 853 | std::unique_ptr<ExportProcessor> ExportFFmpeg::CreateProcessor(int format) const |
| 854 | { |
nothing calls this directly
no test coverage detected