summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 5ab159e..cb6e5d2 100644
--- a/README.md
+++ b/README.md
@@ -147,7 +147,7 @@ Pixel format conversions can be performed in-place on an image by calling `sstv_
Signals (`sstv_signal_t`) are objects that hold a chunk of the raw audio. They can only be created on a preallocated buffer:
```
-uint8_t signal_buffer[SIGNAL_BUFFER_CAPACITY];
+int16_t signal_buffer[SIGNAL_BUFFER_CAPACITY];
sstv_signal_t signal;
if (sstv_pack_signal(&signal, SSTV_SAMPLE_INT16, SIGNAL_BUFFER_CAPACITY, signal_buffer) != SSTV_OK) {
... error handling ...