summaryrefslogtreecommitdiff
path: root/codec.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-07-25 02:22:59 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-07-25 02:22:59 +0200
commit243a04851027dca3cc4a66de309637a522293253 (patch)
tree82e02570d70ee0453d0e5e3c3a661904b9a8d4b6 /codec.h
parentb4a3b42eb86c11886aef98f3a1b5d3803bf20983 (diff)
initial SID support
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);