Commit 21899078 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

int16_t needs <inttypes.h>. Should fix FreeBSD unhapiness with addPCM().

parent cd8a7d21
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <inttypes.h>
double **PCMd; //data structure to store PCM data PCM[channels][maxsamples] double **PCMd; //data structure to store PCM data PCM[channels][maxsamples]
int maxsamples; //size of PCM buffer int maxsamples; //size of PCM buffer
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment