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:
Christopher Snowhill 2023-10-04 16:07:20 -07:00
parent dc1f78fe4f
commit f52de150a7
No known key found for this signature in database

View file

@ -473,6 +473,11 @@ static float db_to_scale(float db) {
[self cleanUp];
}
- (void)setOutputFormat:(AudioStreamBasicDescription)format {
DLog(@"SETTING OUTPUT FORMAT!");
outputFormat = format;
}
- (void)inputFormatDidChange:(AudioStreamBasicDescription)format inputConfig:(uint32_t)inputConfig {
DLog(@"FORMAT CHANGED");
paused = YES;