shout: merged open_shout_conn() into my_shout_open_device()

The method implementation my_shout_open_device() consists of only one
line, the call to open_shout_conn().  Merge both functions into one.
This commit is contained in:
Max Kellermann 2009-02-22 15:24:41 +01:00
parent cece6c00f4
commit e79a82ba3a

View File

@ -357,7 +357,8 @@ shout_connect(struct shout_data *sd)
}
static bool
open_shout_conn(void *data)
my_shout_open_device(void *data,
G_GNUC_UNUSED struct audio_format *audio_format)
{
struct shout_data *sd = (struct shout_data *)data;
bool ret;
@ -378,15 +379,6 @@ open_shout_conn(void *data)
return true;
}
static bool
my_shout_open_device(void *data,
G_GNUC_UNUSED struct audio_format *audio_format)
{
struct shout_data *sd = (struct shout_data *)data;
return open_shout_conn(sd);
}
static bool
my_shout_play(void *data, const char *chunk, size_t size)
{