summaryrefslogtreecommitdiff
path: root/codec.h
diff options
context:
space:
mode:
Diffstat (limited to 'codec.h')
-rw-r--r--codec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/codec.h b/codec.h
index 9554f0a2..ffb4e8f5 100644
--- a/codec.h
+++ b/codec.h
@@ -12,7 +12,6 @@ typedef struct {
} fileinfo_t;
typedef struct codec_s {
- fileinfo_t info;
int (*init) (const char *fname, int track, float start, float end);
void (*free) (void);
// player is responsible for starting next song if -1 is returned
@@ -20,6 +19,7 @@ typedef struct codec_s {
int (*seek) (float time);
int (*add) (const char *fname);
const char ** (*getexts) (void);
+ fileinfo_t info;
} codec_t;
codec_t *get_codec_for_file (const char *fname);