blob: 79294e19d6b6906fc60c50ff033bf556099a0a9f [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 "garnet/bin/media/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