Merge release 0.15.10 from branch 'v0.15.x'

Conflicts:
	NEWS
	configure.ac
	src/input/mms_input_plugin.c
This commit is contained in:
Max Kellermann
2010-05-30 18:26:33 +02:00
3 changed files with 36 additions and 5 deletions

View File

@@ -60,10 +60,13 @@ input_mms_open(const char *url, GError **error_r)
m->mms = mmsx_connect(NULL, NULL, url, 128 * 1024);
if (m->mms == NULL) {
g_free(m);
g_set_error(error_r, mms_quark(), 0, "mmsx_connect() failed");
return NULL;
}
m->eof = false;
/* XX is this correct? at least this selects the ffmpeg
decoder, which seems to work fine*/
m->base.mime = g_strdup("audio/x-ms-wma");