blob: dcbbb1d6232f3933cf4e493db161f83ac24ce1f5 [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) {
return false;
}
} // namespace media::audio::mixer