mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-21 14:03:11 -07:00
Receive and decode Audio Frames
This commit is contained in:
parent
bd434921ae
commit
41cfefd5ae
13 changed files with 202 additions and 20 deletions
|
@ -4,9 +4,9 @@
|
|||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
void audio_frame_cb(uint8_t *buf, size_t buf_size, void *user)
|
||||
void audio_frame_cb(int8_t *buf, size_t samples_count, void *user)
|
||||
{
|
||||
printf("AUDIO FRAME CB %lu\n", buf_size);
|
||||
printf("AUDIO FRAME CB %lu\n", samples_count);
|
||||
}
|
||||
|
||||
int main(int argc, const char *argv[])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue