mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Minor comment clarification.
This commit is contained in:
parent
67b6cff503
commit
31577c6837
1 changed files with 5 additions and 0 deletions
|
|
@ -962,6 +962,11 @@ private:
|
|||
|
||||
if (! isRF64)
|
||||
{
|
||||
/* NB: This junk chunk is added for padding, so that the header is a fixed size
|
||||
regardless of whether it's RF64 or not. That way, we can begin recording a file,
|
||||
and when it's finished, can go back and write either a RIFF or RF64 header,
|
||||
depending on whether more than 2^32 samples were written.
|
||||
*/
|
||||
output->writeInt (chunkName ("JUNK"));
|
||||
output->writeInt (28 + (isWaveFmtEx? 0 : 24));
|
||||
output->writeRepeatedByte (0, 28 /* ds64 */ + (isWaveFmtEx? 0 : 24));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue