output_plugin: don't pass audio_output object to method init()

audio_output_get_name() has been removed, which was the only function
left in output_api.h.  The output plugin doesn't need the audio_output
object at all, remove the parameter from the init() method.
This commit is contained in:
Max Kellermann
2009-02-25 18:34:02 +01:00
parent 0cf4f09e4f
commit dcd84c19cd
12 changed files with 19 additions and 34 deletions

View File

@@ -70,7 +70,6 @@ typedef struct {
#define MVP_GET_AUD_REGS _IOW('a',28,aud_ctl_regs_t*)
typedef struct _MvpData {
struct audio_output *audio_output;
struct audio_format audio_format;
int fd;
} MvpData;
@@ -110,12 +109,11 @@ static bool mvp_testDefault(void)
return false;
}
static void *mvp_initDriver(G_GNUC_UNUSED struct audio_output *audio_output,
G_GNUC_UNUSED const struct audio_format *audio_format,
G_GNUC_UNUSED const struct config_param *param)
static void *
mvp_initDriver(G_GNUC_UNUSED const struct audio_format *audio_format,
G_GNUC_UNUSED const struct config_param *param)
{
MvpData *md = g_new(MvpData, 1);
md->audio_output = audio_output;
md->fd = -1;
return md;