mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 22:26:29 +01:00
NO-OP: expand comments for DiskReader::audio_read() parameters
This commit is contained in:
parent
f5064fa1ca
commit
af46adc110
1 changed files with 8 additions and 2 deletions
|
|
@ -951,12 +951,18 @@ swap_by_ptr (Sample* first, Sample* last)
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Read some data for 1 channel from our playlist into a buffer.
|
/** Read some data for 1 channel from our playlist into a buffer.
|
||||||
* @param buf Buffer to write to.
|
*
|
||||||
|
* @param sum_buf sample-containing buffer to write to. Must be contiguous.
|
||||||
|
* @param mixdown_buffer sample-containing buffer that will be used to mix layers
|
||||||
|
* @param gain_buffer ptr to a buffer used to hold any necessary gain (automation) data
|
||||||
* @param start Session sample to start reading from; updated to where we end up
|
* @param start Session sample to start reading from; updated to where we end up
|
||||||
* after the read.
|
* after the read. Global timeline position.
|
||||||
* @param cnt Count of samples to read.
|
* @param cnt Count of samples to read.
|
||||||
|
* @param rci ptr to ReaderChannelInfo for the channel we're reading
|
||||||
|
* @param channel the number of the channel we're reading (0..N)
|
||||||
* @param reversed true if we are running backwards, otherwise false.
|
* @param reversed true if we are running backwards, otherwise false.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
samplecnt_t
|
samplecnt_t
|
||||||
DiskReader::audio_read (Sample* sum_buffer,
|
DiskReader::audio_read (Sample* sum_buffer,
|
||||||
Sample* mixdown_buffer,
|
Sample* mixdown_buffer,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue