spelling: length

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-01-18 08:34:48 -05:00
parent 1acd9c17bb
commit a3bd3a00c6
4 changed files with 8 additions and 8 deletions

View File

@@ -29,7 +29,7 @@ namespace irrklang
ik_s32 ChannelCount;
//! amount of frames in the sample data or stream.
/** If the stream has an unknown lenght, this is -1 */
/** If the stream has an unknown length, this is -1 */
ik_s32 FrameCount;
//! samples per second
@@ -51,7 +51,7 @@ namespace irrklang
}
//! returns the size of the sample data in bytes
/* Returns an invalid negative value when the stream has an unknown lenght */
/* Returns an invalid negative value when the stream has an unknown length */
inline ik_s32 getSampleDataSize() const
{
return getFrameSize() * FrameCount;