//! Read from other audio sample with sample rate conversion
//! Read from other audio sample with sample rate conversion, if necessary
/**
* Reads audio samples from sample frame and converts to internal sample rate, if given source sample rate is mismatching.
*
* @param[in] oSource Source audio sample
*/
voidLoad(constCITAAudioSample&oSource);
//! Load audio sample from file and inherit it's sample rate
//! Load audio sample from file and adopt it's sample rate
/**
* Will load audio sample from file and adopts number of channels and sample rate.
*
* @param[in] sFilePath Path to audio file
*
* @note Will raise ITAException on error.
* @sa LoadWithSampleRateConversion()
*/
voidLoad(conststd::string&sFilePath);
//! Load audio sample from file and convert sample rate, if necessary
//! Load audio sample from file and convert sample rate to internal sample rate, if necessary
/**
* Will load audio sample from file and adopts number of channels but not sample rate. Converts audio samples into internal sampling rate if mismatched.