diff options
Diffstat (limited to 'shared-bindings')
| -rw-r--r-- | shared-bindings/audioio/RawSample.c | 2 | ||||
| -rw-r--r-- | shared-bindings/audioio/WaveFile.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/shared-bindings/audioio/RawSample.c b/shared-bindings/audioio/RawSample.c index c4342677a..3f8f71a1f 100644 --- a/shared-bindings/audioio/RawSample.c +++ b/shared-bindings/audioio/RawSample.c @@ -44,7 +44,7 @@ //| .. class:: RawSample(buffer, *, channel_count=1, sample_rate=8000) //| //| Create a RawSample based on the given buffer of signed values. If channel_count is more than -//| 1 then each channel's samples should rotate. In other words, for a two channel buffer, the +//| 1 then each channel's samples should alternate. In other words, for a two channel buffer, the //| first sample will be for channel 1, the second sample will be for channel two, the third for //| channel 1 and so on. //| diff --git a/shared-bindings/audioio/WaveFile.c b/shared-bindings/audioio/WaveFile.c index 0a28ad10f..13c4d6b8f 100644 --- a/shared-bindings/audioio/WaveFile.c +++ b/shared-bindings/audioio/WaveFile.c @@ -39,7 +39,8 @@ //| :class:`WaveFile` -- Load a wave file for audio playback //| ======================================================== //| -//| A .wav file prepped for audio playback +//| A .wav file prepped for audio playback. Only mono and stereo files are supported. Samples must +//| be 8 bit unsigned or 16 bit signed. //| //| .. class:: WaveFile(filename) //| |
