mirror of
https://github.com/thestk/stk
synced 2026-04-30 19:28:37 +00:00
renamed argument sourceChannel to channel
This commit is contained in:
@@ -375,11 +375,11 @@ public:
|
|||||||
|
|
||||||
//! Copies a single channel
|
//! Copies a single channel
|
||||||
/*!
|
/*!
|
||||||
Copies the \c sourceChannel into \c destinationFrames's \c destinationChannel. \c destinationChannel must be between 0 and destination.channels() - 1 and
|
Copies the specified \c channel into \c destinationFrames's \c destinationChannel. \c destinationChannel must be between 0 and destination.channels() - 1 and
|
||||||
sourceChannel must be between 0 and channels() - 1. destination.frames() must be >= frames().
|
\c channel must be between 0 and channels() - 1. destination.frames() must be >= frames().
|
||||||
No range checking is performed unless _STK_DEBUG_ is defined.
|
No range checking is performed unless _STK_DEBUG_ is defined.
|
||||||
*/
|
*/
|
||||||
StkFrames& copyChannel(unsigned int sourceChannel,StkFrames& destinationFrames, unsigned int destinationChannel) const;
|
StkFrames& copyChannel(unsigned int channel,StkFrames& destinationFrames, unsigned int destinationChannel) const;
|
||||||
|
|
||||||
//! Return the number of channels represented by the data.
|
//! Return the number of channels represented by the data.
|
||||||
unsigned int channels( void ) const { return nChannels_; };
|
unsigned int channels( void ) const { return nChannels_; };
|
||||||
|
|||||||
Reference in New Issue
Block a user