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.
1 parent 20d5da1 commit ef0bf2dCopy full SHA for ef0bf2d
src/AvTranscoder/Profile.cpp
@@ -2,6 +2,7 @@
2
3
#include <AvTranscoder/Profiles/XdCamHd422.hpp>
4
#include <AvTranscoder/Profiles/DNxHD.hpp>
5
+#include <AvTranscoder/Profiles/Wave.hpp>
6
7
namespace avtranscoder
8
{
@@ -21,6 +22,11 @@ void Profile::loadProfiles()
21
22
loadDNxHD( _profiles );
23
}
24
25
+void Profile::loadAudioProfiles()
26
+{
27
+ loadWave( _profiles );
28
+}
29
+
30
const Profile::ProfilesDesc& Profile::getProfiles()
31
32
return _profiles;
src/AvTranscoder/Profile.hpp
@@ -22,6 +22,7 @@ class Profile
Profile();
void loadProfiles();
+ void loadAudioProfiles();
const ProfilesDesc& getProfiles();
0 commit comments