1
0
Fork 0
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:
jules 2013-08-09 16:15:36 +01:00
parent 67b6cff503
commit 31577c6837

View file

@ -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));