# HG changeset patch # User Matti Hamalainen # Date 1207147901 -10800 # Node ID 590c9610f968a1a7fbd7b4a23e6605b6c99f9112 # Parent 4669aafd8dd196a12d34a238518be1b5ef4b6b97 Fixed cue-sheet plugin to have the vfs extensions support. diff -r 4669aafd8dd1 -r 590c9610f968 src/cue/cuesheet.c --- a/src/cue/cuesheet.c Mon Mar 31 16:32:54 2008 +0300 +++ b/src/cue/cuesheet.c Wed Apr 02 17:51:41 2008 +0300 @@ -85,6 +85,8 @@ static InputPlayback *real_ip = NULL; +static gchar *cue_fmts[] = { "cue", NULL }; + InputPlugin cue_ip = { .description = "Cuesheet Plugin", /* description */ @@ -96,6 +98,7 @@ .seek = seek, .cleanup = cue_cleanup, /* cleanup */ .get_song_tuple = get_tuple, + .vfs_extensions = cue_fmts, }; InputPlugin *cue_iplist[] = { &cue_ip, NULL };