blob: 78a2b6edae0fd87053324f74b495f32c34749c61 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "src/media/audio/audio_core/mixer/no_op.h"
namespace media::audio::mixer {
bool NoOp::Mix(float* dest, uint32_t dest_frames, uint32_t* dest_offset,
const void* src, uint32_t frac_src_frames,
int32_t* frac_src_offset, bool accumulate, Bookkeeping* info) {
return false;
}
} // namespace media::audio::mixer