This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* File format: raw, PCM s16le | |
* Resample 44100 Hz ./audio.raw to 16000 Hz ./audio_resampled.raw: | |
* gcc -g resampler.c -o resampler | |
* ./resampler | |
*/ | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <memory.h> |