summaryrefslogtreecommitdiff
path: root/codec.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-07-31 16:13:59 +0200
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-07-31 16:13:59 +0200
commitbeccecbc98af693c3ecfb92573e278d73314c529 (patch)
tree79b1a44c26008c5c273f56b6e5e5b2cd02865835 /codec.h
parent1e7d369b182d10a50fda73038a539a78ed548013 (diff)
initial channel muting support (gme only for now)
Diffstat (limited to 'codec.h')
-rw-r--r--codec.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/codec.h b/codec.h
index ffb4e8f5..5e86cb78 100644
--- a/codec.h
+++ b/codec.h
@@ -19,6 +19,8 @@ typedef struct codec_s {
int (*seek) (float time);
int (*add) (const char *fname);
const char ** (*getexts) (void);
+ int (*numvoices) (void);
+ void (*mutevoice) (int voice, int mute);
fileinfo_t info;
} codec_t;