output: don't allow length==0

Nobody should call playAudio() with an empty chunk.  Add some
assertions on that.
This commit is contained in:
Max Kellermann
2008-11-02 20:16:56 +01:00
parent cc164cc884
commit 79d70f124d
3 changed files with 5 additions and 0 deletions

View File

@@ -65,6 +65,8 @@ static void ao_play(struct audio_output *ao)
size_t size = ao->args.play.size;
bool ret;
assert(size > 0);
if (!audio_format_equals(&ao->inAudioFormat, &ao->outAudioFormat))
convertAudioFormat(ao, &data, &size);