mirror of
https://github.com/LMMS/lmms.git
synced 2026-03-19 06:28:24 -04:00
Introduced central helper functions for mixing buffers in order to reduce local loops all around LMMS.
154 lines
3.5 KiB
C++
154 lines
3.5 KiB
C++
/*
|
|
* MixHelpers.cpp - helper functions for mixing buffers
|
|
*
|
|
* Copyright (c) 2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
|
|
*
|
|
* This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public
|
|
* License along with this program (see COPYING); if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA.
|
|
*
|
|
*/
|
|
|
|
#include "MixHelpers.h"
|
|
|
|
|
|
namespace MixHelpers
|
|
{
|
|
|
|
/*! \brief Function for applying MIXOP on all sample frames */
|
|
template<typename MIXOP>
|
|
static inline void run( sampleFrame* dst, const sampleFrame* src, int frames, const MIXOP& OP )
|
|
{
|
|
for( int i = 0; i < frames; ++i )
|
|
{
|
|
OP( dst[i], src[i] );
|
|
}
|
|
}
|
|
|
|
/*! \brief Function for applying MIXOP on all sample frames - split source */
|
|
template<typename MIXOP>
|
|
static inline void run( sampleFrame* dst, const sample_t* srcLeft, const sample_t* srcRight, int frames, const MIXOP& OP )
|
|
{
|
|
for( int i = 0; i < frames; ++i )
|
|
{
|
|
const sampleFrame src = { srcLeft[i], srcRight[i] };
|
|
OP( dst[i], src );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
struct AddOp
|
|
{
|
|
void operator()( sampleFrame& dst, const sampleFrame& src ) const
|
|
{
|
|
dst[0] += src[0];
|
|
dst[1] += src[1];
|
|
}
|
|
} ;
|
|
|
|
void add( sampleFrame* dst, const sampleFrame* src, int frames )
|
|
{
|
|
run<>( dst, src, frames, AddOp() );
|
|
}
|
|
|
|
|
|
|
|
struct AddMultipliedOp
|
|
{
|
|
AddMultipliedOp( float coeff ) : m_coeff( coeff ) { }
|
|
|
|
void operator()( sampleFrame& dst, const sampleFrame& src ) const
|
|
{
|
|
dst[0] += src[0] * m_coeff;
|
|
dst[1] += src[1] * m_coeff;
|
|
}
|
|
|
|
const float m_coeff;
|
|
} ;
|
|
|
|
|
|
void addMultiplied( sampleFrame* dst, const sampleFrame* src, float coeffSrc, int frames )
|
|
{
|
|
run<>( dst, src, frames, AddMultipliedOp(coeffSrc) );
|
|
}
|
|
|
|
|
|
|
|
struct AddMultipliedStereoOp
|
|
{
|
|
AddMultipliedStereoOp( float coeffLeft, float coeffRight )
|
|
{
|
|
m_coeffs[0] = coeffLeft;
|
|
m_coeffs[1] = coeffRight;
|
|
}
|
|
|
|
void operator()( sampleFrame& dst, const sampleFrame& src ) const
|
|
{
|
|
dst[0] += src[0] * m_coeffs[0];
|
|
dst[1] += src[1] * m_coeffs[1];
|
|
}
|
|
|
|
float m_coeffs[2];
|
|
} ;
|
|
|
|
|
|
void addMultipliedStereo( sampleFrame* dst, const sampleFrame* src, float coeffSrcLeft, float coeffSrcRight, int frames )
|
|
{
|
|
|
|
run<>( dst, src, frames, AddMultipliedStereoOp(coeffSrcLeft, coeffSrcRight) );
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct MultiplyAndAddMultipliedOp
|
|
{
|
|
MultiplyAndAddMultipliedOp( float coeffDst, float coeffSrc )
|
|
{
|
|
m_coeffs[0] = coeffDst;
|
|
m_coeffs[1] = coeffSrc;
|
|
}
|
|
|
|
void operator()( sampleFrame& dst, const sampleFrame& src ) const
|
|
{
|
|
dst[0] = dst[0]*m_coeffs[0] + src[0]*m_coeffs[1];
|
|
dst[1] = dst[1]*m_coeffs[0] + src[1]*m_coeffs[1];
|
|
}
|
|
|
|
float m_coeffs[2];
|
|
} ;
|
|
|
|
|
|
void multiplyAndAddMultiplied( sampleFrame* dst, const sampleFrame* src, float coeffDst, float coeffSrc, int frames )
|
|
{
|
|
run<>( dst, src, frames, MultiplyAndAddMultipliedOp(coeffDst, coeffSrc) );
|
|
}
|
|
|
|
|
|
|
|
void multiplyAndAddMultipliedJoined( sampleFrame* dst,
|
|
const sample_t* srcLeft,
|
|
const sample_t* srcRight,
|
|
float coeffDst, float coeffSrc, int frames )
|
|
{
|
|
run<>( dst, srcLeft, srcRight, frames, MultiplyAndAddMultipliedOp(coeffDst, coeffSrc) );
|
|
}
|
|
|
|
}
|
|
|