From 01127ce30ee17bdb97fa18342e3f7da95e4dc309 Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Sun, 27 Aug 2023 17:51:56 +0300 Subject: Typo in one of the README examples. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ... -- cgit v1.2.3