| 1 | #ifndef DATA_H__ |
| 2 | #define DATA_H__ |
| 3 | |
| 4 | #include <stdint.h> |
| 5 | |
| 6 | #define SAMPLE_BUFFER_SIZE 64 |
| 7 | |
| 8 | extern uint8_t sample_buf[SAMPLE_BUFFER_SIZE]; |
| 9 | #define arraylen(x) (sizeof(x)/sizeof((x)[0])) |
| 10 | |
| 11 | void GetFromBigBuf(uint8_t *dest, int bytes); |
| 12 | |
| 13 | #endif |