diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-02-15 04:34:28 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2016-02-15 04:34:28 +0100 |
commit | 5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1 (patch) | |
tree | b1bddbfac8bd69c733faf734803e7f1842285e22 /libtoolame-dab/xpad.h | |
parent | ba346d2469facf500cbcaa9cf9117ce04ea0b6da (diff) | |
download | ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.tar.gz ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.tar.bz2 ODR-AudioEnc-5671aa4f0f5536de2fc58b6f89f01947f4f8f1c1.zip |
Remove useless libtoolame-dab files
Diffstat (limited to 'libtoolame-dab/xpad.h')
-rw-r--r-- | libtoolame-dab/xpad.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/libtoolame-dab/xpad.h b/libtoolame-dab/xpad.h deleted file mode 100644 index cd0a434..0000000 --- a/libtoolame-dab/xpad.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef _XPAD_H_ -#define _XPAD_H_ - -#include <stdint.h> - -/* Initialise the xpad reader - * - * pad_fifo is the filename of the FIFO that will be created, and - * can be used with mot-encoder. - * - * pad_len is the XPAD length, that also has to be given - * to mot-encoder. - * - * returns 0 on success - * -1 on failure - */ -int xpad_init(char* pad_fifo, int pad_len); - -/* Get len bytes of x-pad data, write into buf - * returns either - * - len if the read was sucessful - * - 0 if there was no data - * - -1 if there was an error (errno will be set) - */ -int xpad_read_len(uint8_t* buf, int len); - -#endif - |