diff --git a/src/MusicChunk.cxx b/src/MusicChunk.cxx index 07ec1bc19..0caeec46f 100644 --- a/src/MusicChunk.cxx +++ b/src/MusicChunk.cxx @@ -52,6 +52,10 @@ MusicChunk::Write(const AudioFormat af, bit_rate = _bit_rate; time = data_time; + +#ifndef NDEBUG + audio_format = af; +#endif } const size_t frame_size = af.GetFrameSize(); @@ -59,10 +63,6 @@ MusicChunk::Write(const AudioFormat af, if (num_frames == 0) return WritableBuffer::Null(); -#ifndef NDEBUG - audio_format = af; -#endif - return { data + length, num_frames * frame_size }; }