From 1c328c9601ff4d9771ba1bf99f0f42c3caf32297 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Mon, 11 Jan 2010 20:41:38 +0100 Subject: runtime linking of playlist tracks to decoder plugins is done via strings instead of pointers (to allow easy unloading of decoders) --- playlist.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'playlist.h') diff --git a/playlist.h b/playlist.h index 26824f68..59c67139 100644 --- a/playlist.h +++ b/playlist.h @@ -31,7 +31,8 @@ typedef struct metaInfo_s { typedef struct playItem_s { char *fname; // full pathname - struct DB_decoder_s *decoder; // codec to use with this file +// struct DB_decoder_s *decoder; // codec to use with this file + const char *decoder_id; int tracknum; // used for stuff like sid, nsf, cue (will be ignored by most codecs) int startsample; int endsample; -- cgit v1.2.3