Skip to content

Commit

Permalink
MINOR: formatted AudioProcessor.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhiljangra264 committed Dec 22, 2024
1 parent 8c2722a commit 1bedd21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MediaProcessor/src/AudioProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,8 @@ bool AudioProcessor::filterChunks() {
for (int i = 0; i < m_numChunks; ++i) {
results.emplace_back(pool.enqueue([&, i]() {
// Per-thread DFState instance
DFState* df_state =
df_create(deepFilterTarballPath.string().c_str(), m_filterAttenuationLimit, nullptr);
DFState* df_state = df_create(deepFilterTarballPath.string().c_str(),
m_filterAttenuationLimit, nullptr);
if (!df_state) {
std::cerr << "Error: Failed to insantiate DFState in thread." << std::endl;
return false;
Expand Down

0 comments on commit 1bedd21

Please sign in to comment.