Processing: Fix missing converter setup function
Oops, I was missing a function necessary for output format changes. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
parent
87684a7974
commit
bc330e75f6
1 changed files with 5 additions and 0 deletions
|
@ -473,6 +473,11 @@ static float db_to_scale(float db) {
|
||||||
[self cleanUp];
|
[self cleanUp];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- (void)setOutputFormat:(AudioStreamBasicDescription)format {
|
||||||
|
DLog(@"SETTING OUTPUT FORMAT!");
|
||||||
|
outputFormat = format;
|
||||||
|
}
|
||||||
|
|
||||||
- (void)inputFormatDidChange:(AudioStreamBasicDescription)format inputConfig:(uint32_t)inputConfig {
|
- (void)inputFormatDidChange:(AudioStreamBasicDescription)format inputConfig:(uint32_t)inputConfig {
|
||||||
DLog(@"FORMAT CHANGED");
|
DLog(@"FORMAT CHANGED");
|
||||||
paused = YES;
|
paused = YES;
|
||||||
|
|
Loading…
Reference in a new issue