From 22838720bbe1fc3c9fd46f34aa91474c7d6005a3 Mon Sep 17 00:00:00 2001 From: Alexey Yakovenko Date: Sat, 10 Oct 2009 22:27:00 +0200 Subject: updated plugins descriptions added basic gui configuration window --- plugins/cdda/cdda.c | 3 ++- plugins/faad2/faad2.c | 1 + plugins/ffap/ffap.c | 4 ++-- plugins/flac/flac.c | 1 + plugins/hotkeys/hotkeys.c | 4 ++-- plugins/mpgmad/mpgmad.c | 4 ++-- plugins/sndfile/sndfile.c | 5 +++-- plugins/vfs_curl/vfs_curl.c | 3 ++- plugins/vorbis/vorbis.c | 1 + plugins/wavpack/wavpack.c | 1 + 10 files changed, 17 insertions(+), 10 deletions(-) (limited to 'plugins') diff --git a/plugins/cdda/cdda.c b/plugins/cdda/cdda.c index 0d85e0b7..76b4662a 100644 --- a/plugins/cdda/cdda.c +++ b/plugins/cdda/cdda.c @@ -427,7 +427,8 @@ static DB_decoder_t plugin = { .plugin.version_major = 0, .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, - .plugin.name = "Audio CD Player", + .plugin.name = "Audio CD player", + .plugin.descr = "using libcdio, includes .nrg image support", .plugin.author = "Viktor Semykin", .plugin.email = "thesame.ml@gmail.com", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/faad2/faad2.c b/plugins/faad2/faad2.c index 60176969..7c1d8cac 100644 --- a/plugins/faad2/faad2.c +++ b/plugins/faad2/faad2.c @@ -248,6 +248,7 @@ static DB_decoder_t plugin = { .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, .plugin.name = "faad2 AAC decoder", + .plugin.descr = "aac/mp4 player", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/ffap/ffap.c b/plugins/ffap/ffap.c index 735630bf..fd96fc9f 100644 --- a/plugins/ffap/ffap.c +++ b/plugins/ffap/ffap.c @@ -1760,8 +1760,8 @@ static DB_decoder_t plugin = { .plugin.version_major = 0, .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, - .plugin.name = "FFAP Monkey's Audio decoder", - .plugin.descr = "Based on ffmpeg apedec by Benjamin Zores and rockbox libdemac by Dave Chapman", + .plugin.name = "Monkey's Audio (APE) decoder", + .plugin.descr = "Derived from ffmpeg code by Benjamin Zores and rockbox code by Dave Chapman", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/flac/flac.c b/plugins/flac/flac.c index ced92d45..4a6b9f9c 100644 --- a/plugins/flac/flac.c +++ b/plugins/flac/flac.c @@ -555,6 +555,7 @@ static DB_decoder_t plugin = { .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, .plugin.name = "FLAC decoder", + .plugin.descr = "FLAC decoder using libFLAC", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/hotkeys/hotkeys.c b/plugins/hotkeys/hotkeys.c index 5cde339c..476564d9 100644 --- a/plugins/hotkeys/hotkeys.c +++ b/plugins/hotkeys/hotkeys.c @@ -332,8 +332,8 @@ hotkeys_stop (void) { static DB_misc_t plugin = { DB_PLUGIN_SET_API_VERSION .plugin.type = DB_PLUGIN_MISC, - .plugin.name = "Global Hotkeys", - .plugin.descr = "Allows to control player using xlib global hotkeys", + .plugin.name = "Global hotkeys support", + .plugin.descr = "Allows to control player with global hotkeys", .plugin.author = "Viktor Semykin", .plugin.email = "thesame.ml@gmail.com", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/mpgmad/mpgmad.c b/plugins/mpgmad/mpgmad.c index 8005e5d0..d25f59d4 100644 --- a/plugins/mpgmad/mpgmad.c +++ b/plugins/mpgmad/mpgmad.c @@ -1015,8 +1015,8 @@ static DB_decoder_t plugin = { .plugin.version_major = 0, .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, - .plugin.name = "MPEG v1,2 layer1,2,3 decoder", - .plugin.descr = "based on libmad", + .plugin.name = "MPEG decoder", + .plugin.descr = "MPEG v1/2 layer1/2/3 decoder based on libmad", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/sndfile/sndfile.c b/plugins/sndfile/sndfile.c index 9281890a..545d41b8 100644 --- a/plugins/sndfile/sndfile.c +++ b/plugins/sndfile/sndfile.c @@ -148,7 +148,7 @@ sndfile_insert (DB_playItem_t *after, const char *fname) { return after; } -static const char * exts[] = { "wav", NULL }; +static const char * exts[] = { "wav", "aif", "aiff", "snd", "au", "paf", "svx", "nist", "voc", "ircam", "w64", "mat4", "mat5", "pvf", "xi", "htk", "sds", "avr", "wavex", "sd2", "caf", "wve", NULL }; static const char *filetypes[] = { "wav", NULL }; // define plugin interface @@ -157,7 +157,8 @@ static DB_decoder_t plugin = { .plugin.version_major = 0, .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, - .plugin.name = "SNDFILE decoder", + .plugin.name = "pcm player", + .plugin.descr = "wav/aiff player using libsndfile", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/vfs_curl/vfs_curl.c b/plugins/vfs_curl/vfs_curl.c index e1105b1d..14a748fc 100644 --- a/plugins/vfs_curl/vfs_curl.c +++ b/plugins/vfs_curl/vfs_curl.c @@ -380,7 +380,8 @@ static DB_vfs_t plugin = { .plugin.version_major = 0, .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_VFS, - .plugin.name = "CURL VFS (streaming over http)", + .plugin.name = "cURL vfs", + .plugin.descr = "http and ftp streaming module using libcurl", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/vorbis/vorbis.c b/plugins/vorbis/vorbis.c index 78496458..d3de500f 100644 --- a/plugins/vorbis/vorbis.c +++ b/plugins/vorbis/vorbis.c @@ -380,6 +380,7 @@ static DB_decoder_t plugin = { .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, .plugin.name = "OggVorbis decoder", + .plugin.descr = "OggVorbis decoder using standard xiph.org libraries", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", diff --git a/plugins/wavpack/wavpack.c b/plugins/wavpack/wavpack.c index 349d2eac..51608d64 100644 --- a/plugins/wavpack/wavpack.c +++ b/plugins/wavpack/wavpack.c @@ -259,6 +259,7 @@ static DB_decoder_t plugin = { .plugin.version_minor = 1, .plugin.type = DB_PLUGIN_DECODER, .plugin.name = "WavPack decoder", + .plugin.descr = ".wv player using libwavpack", .plugin.author = "Alexey Yakovenko", .plugin.email = "waker@users.sourceforge.net", .plugin.website = "http://deadbeef.sf.net", -- cgit v1.2.3