Skip to content

Function mixdown_stereo

function mixdown_stereo(Left &&, Right &&, const f64x2x2 &) dsp

template <typename Left, typename Right,
          typename Result = expression_function<stereo_matrix, expression_pack<Left, Right>>>
Result mixdown_stereo(Left&& left, Right&& right, const f64x2x2& matrix)

Returns a template expression that produces a length-2 vector mixing the left and right channels according to matrix .

Template parameters
Left Left-channel expression type.
Right Right-channel expression type.
Parameters
left Left-channel input expression.
right Right-channel input expression.
matrix 2x2 mixing matrix (e.g. from matrix_sum_diff() ).
Returns
An expression yielding vectors of 2 samples per index.

Fully qualified name: kfr::mixdown_stereo(Left &&, Right &&, const f64x2x2 &)

Declared at dsp/mixdown.hpp:121

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.