Skip to content

Commit ef0bf2d

Browse files
author
Valentin Noel
committed
Add loadAudioProfile method into Profile
1 parent 20d5da1 commit ef0bf2d

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/AvTranscoder/Profile.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
#include <AvTranscoder/Profiles/XdCamHd422.hpp>
44
#include <AvTranscoder/Profiles/DNxHD.hpp>
5+
#include <AvTranscoder/Profiles/Wave.hpp>
56

67
namespace avtranscoder
78
{
@@ -21,6 +22,11 @@ void Profile::loadProfiles()
2122
loadDNxHD( _profiles );
2223
}
2324

25+
void Profile::loadAudioProfiles()
26+
{
27+
loadWave( _profiles );
28+
}
29+
2430
const Profile::ProfilesDesc& Profile::getProfiles()
2531
{
2632
return _profiles;

src/AvTranscoder/Profile.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ class Profile
2222
Profile();
2323

2424
void loadProfiles();
25+
void loadAudioProfiles();
2526

2627
const ProfilesDesc& getProfiles();
2728

0 commit comments

Comments
 (0)