MusicChunk: remove special case for num_frames==0

Simply return an empty WritableBuffer, not a nulled one.
This commit is contained in:
Max Kellermann
2014-08-31 08:26:03 +02:00
parent 2ca979425f
commit cd6e0ff88a
2 changed files with 1 additions and 6 deletions

View File

@@ -60,9 +60,6 @@ MusicChunk::Write(const AudioFormat af,
const size_t frame_size = af.GetFrameSize();
size_t num_frames = (sizeof(data) - length) / frame_size;
if (num_frames == 0)
return WritableBuffer<void>::Null();
return { data + length, num_frames * frame_size };
}