output/openal: remove bogus format check from _open()

The expression "!format" does not make sense, and cannot occur.
This commit is contained in:
Max Kellermann 2011-12-13 21:23:15 +01:00
parent b66d7f7e0b
commit cfedc6e9b4
1 changed files with 0 additions and 8 deletions

View File

@ -160,14 +160,6 @@ openal_open(struct audio_output *ao, struct audio_format *audio_format,
od->format = openal_audio_format(audio_format);
if (!od->format) {
struct audio_format_string s;
g_set_error(error, openal_output_quark(), 0,
"Unsupported audio format: %s",
audio_format_to_string(audio_format, &s));
return false;
}
if (!openal_setup_context(od, error)) {
return false;
}