summaryrefslogtreecommitdiff
path: root/codec.h
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-08-29 21:36:19 +0200
committerGravatar waker <wakeroid@gmail.com>2009-08-29 21:36:19 +0200
commitf4d508b243888a9dbe79b5916e497254d370e35a (patch)
tree48846519dfc51a3d44991b3b4b18a2efda5083f0 /codec.h
parent003a54afeba00597fd2f50e38ccd35c7cd5e4e39 (diff)
mp3 decoder porting as plugin WIP
Diffstat (limited to 'codec.h')
-rw-r--r--codec.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/codec.h b/codec.h
index 82d95491..8c76bff4 100644
--- a/codec.h
+++ b/codec.h
@@ -21,6 +21,7 @@
#include <stdint.h>
//#include "playlist.h"
+#if 0
typedef struct {
int bitsPerSample;
int channels;
@@ -45,8 +46,9 @@ typedef struct codec_s {
const char *filetypes[20]; // NULL terminated array of const strings, representing supported file types (can be NULL)
fileinfo_t info;
} codec_t;
+#endif
-codec_t *get_codec_for_file (const char *fname);
+//codec_t *get_codec_for_file (const char *fname);
void
codec_init_locking (void);