Skip to content

Commit

Permalink
Increased fallback sample rate
Browse files Browse the repository at this point in the history
  • Loading branch information
KiritoDv committed Nov 22, 2024
1 parent 6464a2d commit de6b8fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/factories/naudio/v1/AudioConverter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ void AudioConverter::SampleToAIFC(NSampleData* sample, LUS::BinaryWriter &out) {
} else if (sample->tuning <= 2.5f) {
sample_rate = 80000;
} else {
sample_rate = 16000 * sample->tuning;
sample_rate = 32000 * sample->tuning;
}
}

Expand Down

0 comments on commit de6b8fa

Please sign in to comment.