projects
/
c64tapwav
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add some heuristics to deal with shorter initial sync periods.
[c64tapwav]
/
audioreader.h
1
#ifndef _AUDIOREADER_H
2
#define _AUDIOREADER_H 1
3
4
#include <vector>
5
6
#include <stdint.h>
7
8
bool read_audio_file(const char *filename, std::vector<int16_t> *samples, int *sample_rate);
9
10
#endif // !defined(_AUDIOREADER_H)