summaryrefslogtreecommitdiff
path: root/playlist.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 /playlist.h
parent003a54afeba00597fd2f50e38ccd35c7cd5e4e39 (diff)
mp3 decoder porting as plugin WIP
Diffstat (limited to 'playlist.h')
-rw-r--r--playlist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/playlist.h b/playlist.h
index a84a19ec..1d007aa2 100644
--- a/playlist.h
+++ b/playlist.h
@@ -30,7 +30,7 @@ typedef struct metaInfo_s {
typedef struct playItem_s {
char *fname; // full pathname
- struct codec_s *codec; // codec to use with this file
+ struct DB_decoder_s *decoder; // codec to use with this file
int tracknum; // used for stuff like sid, nsf, cue (will be ignored by most codecs)
float timestart; // start time of cue track, or -1
float timeend; // end time of cue track, or -1
@@ -100,7 +100,7 @@ int
pl_get_idx_of (playItem_t *it);
playItem_t *
-pl_insert_cue (playItem_t *after, const char *cuename, struct codec_s *codec, const char *ftype);
+pl_insert_cue (playItem_t *after, const char *cuename, struct DB_decoder_s *decoder, const char *ftype);
int
pl_set_current (playItem_t *it);