We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50c986a + 29dd045 commit 3ae8145Copy full SHA for 3ae8145
src/AvTranscoder/profile/ProfileLoader.cpp
@@ -9,7 +9,7 @@
9
namespace avtranscoder
10
{
11
12
-ProfileLoader::ProfileLoader(bool autoload)
+ProfileLoader::ProfileLoader(const bool autoload)
13
14
if(autoload)
15
loadProfiles();
src/AvTranscoder/profile/ProfileLoader.hpp
@@ -39,7 +39,10 @@ class AvExport ProfileLoader
39
typedef std::vector<Profile> Profiles;
40
41
public:
42
- ProfileLoader(bool autoload = false);
+ /**
43
+ * @param autoload: load profiles defined as text files at AVPROFILES
44
+ */
45
+ ProfileLoader(const bool autoload = true);
46
47
/**
48
* @brief Load profiles from files in avProfilesPath directory
0 commit comments