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) --- plugins/sndfile/sndfile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/sndfile') diff --git a/plugins/sndfile/sndfile.c b/plugins/sndfile/sndfile.c index 99f717cc..72864c56 100644 --- a/plugins/sndfile/sndfile.c +++ b/plugins/sndfile/sndfile.c @@ -205,7 +205,7 @@ sndfile_insert (DB_playItem_t *after, const char *fname) { float duration = (float)totalsamples / samplerate; DB_playItem_t *it = deadbeef->pl_item_alloc (); - it->decoder = &plugin; + it->decoder_id = deadbeef->plug_get_decoder_id (plugin.id); it->fname = strdup (fname); it->filetype = "wav"; deadbeef->pl_set_item_duration (it, duration); -- cgit v1.2.3