YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
AudioBufferSize.cpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2006-2021 Istituto Italiano di Tecnologia (IIT)
3 * SPDX-License-Identifier: BSD-3-Clause
4 */
5
7
9
10yarp::sig::AudioBufferSize::AudioBufferSize(size_t samples, size_t channels, size_t depth_in_bytes)
11{
12 this->m_data.m_samples=samples;
13 this->m_data.m_channels = channels;
14 this->m_data.m_depth = depth_in_bytes;
15 this->m_data.size = samples * channels;
16}