From 886dca87c46502de6dc7ca5a78acfb8e1b259890 Mon Sep 17 00:00:00 2001 From: waker Date: Mon, 23 May 2011 14:04:43 +0200 Subject: added ddb_ prefix to dumb, shn and ao plugins; ao has been renamed to ddb_aopsf; tweaked sources and makefiles to simplify compiling out of tree --- plugins/ao/Makefile | 4 ++-- plugins/ao/main.c | 2 +- plugins/ao/plugin.c | 8 ++++---- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'plugins/ao') diff --git a/plugins/ao/Makefile b/plugins/ao/Makefile index df3b9fd3..d188294d 100644 --- a/plugins/ao/Makefile +++ b/plugins/ao/Makefile @@ -1,6 +1,6 @@ -OUT=ao.so +OUT=ddb_aopsf.so -CC=gcc +CC?=gcc ZLIB_LIBS?=-lz diff --git a/plugins/ao/main.c b/plugins/ao/main.c index a4da36d0..18067410 100644 --- a/plugins/ao/main.c +++ b/plugins/ao/main.c @@ -27,7 +27,7 @@ #include #include #include -#include "../../deadbeef.h" +#include #include "ao.h" #include "eng_protos.h" diff --git a/plugins/ao/plugin.c b/plugins/ao/plugin.c index ebef512e..65b3e1c8 100644 --- a/plugins/ao/plugin.c +++ b/plugins/ao/plugin.c @@ -18,7 +18,7 @@ */ #include #include -#include "../../deadbeef.h" +#include #include "ao.h" #include "eng_protos.h" @@ -350,8 +350,8 @@ static DB_decoder_t plugin = { .plugin.version_minor = 0, .plugin.type = DB_PLUGIN_DECODER, .plugin.id = "psf", - .plugin.name = "Audio Overload plugin", - .plugin.descr = "psf, psf2, spu, ssf, minidsf player based on Audio Overload library", + .plugin.name = "PSF player using Audio Overload SDK", + .plugin.descr = "plays psf, psf2, spu, ssf, dsf, qsf file formats", .plugin.copyright = "Copyright (C) 2009-2011 Alexey Yakovenko \n" "\n" @@ -387,7 +387,7 @@ static DB_decoder_t plugin = { }; DB_plugin_t * -ao_load (DB_functions_t *api) { +ddb_aopsf_load (DB_functions_t *api) { deadbeef = api; return DB_PLUGIN (&plugin); } -- cgit v1.2.3