summaryrefslogtreecommitdiff
path: root/playlist.h
diff options
context:
space:
mode:
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);