MCPcopy Create free account
hub / github.com/audacity/audacity / CheckFileName

Method CheckFileName

modules/import-export/mod-ffmpeg/ExportFFmpeg.cpp:836–851  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

834}
835
836bool 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
853std::unique_ptr<ExportProcessor> ExportFFmpeg::CreateProcessor(int format) const
854{

Callers

nothing calls this directly

Calls 3

LoadFunction · 0.85
FindFFmpegLibsFunction · 0.85
LoadFFmpegFunction · 0.85

Tested by

no test coverage detected