2009-03-03 22:23:25 +01:00
|
|
|
/*
|
2018-10-31 17:54:59 +01:00
|
|
|
* Copyright 2003-2018 The Music Player Daemon Project
|
2009-03-03 22:23:25 +01:00
|
|
|
* http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2009-03-03 22:23:25 +01:00
|
|
|
*/
|
|
|
|
|
2013-01-04 10:16:16 +01:00
|
|
|
#include "MusicChunk.hxx"
|
2013-08-03 21:00:50 +02:00
|
|
|
#include "AudioFormat.hxx"
|
2013-09-05 18:22:02 +02:00
|
|
|
#include "tag/Tag.hxx"
|
2009-03-03 22:23:25 +01:00
|
|
|
|
2009-03-05 17:37:11 +01:00
|
|
|
#include <assert.h>
|
|
|
|
|
2017-12-30 17:47:08 +01:00
|
|
|
MusicChunkInfo::MusicChunkInfo() noexcept = default;
|
|
|
|
MusicChunkInfo::~MusicChunkInfo() noexcept = default;
|
2009-03-05 17:37:11 +01:00
|
|
|
|
2009-03-08 13:45:24 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
bool
|
2017-12-30 17:47:08 +01:00
|
|
|
MusicChunkInfo::CheckFormat(const AudioFormat other_format) const noexcept
|
2009-03-08 13:45:24 +01:00
|
|
|
{
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(other_format.IsValid());
|
2009-03-08 13:45:24 +01:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
return length == 0 || audio_format == other_format;
|
2009-03-08 13:45:24 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-10-28 17:10:12 +01:00
|
|
|
WritableBuffer<void>
|
2014-08-12 15:56:41 +02:00
|
|
|
MusicChunk::Write(const AudioFormat af,
|
2017-05-08 14:44:49 +02:00
|
|
|
SongTime data_time, uint16_t _bit_rate) noexcept
|
2009-03-05 17:37:11 +01:00
|
|
|
{
|
2013-01-04 21:38:46 +01:00
|
|
|
assert(CheckFormat(af));
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(length == 0 || audio_format.IsValid());
|
2009-03-08 13:45:24 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
if (length == 0) {
|
2009-03-05 17:37:11 +01:00
|
|
|
/* if the chunk is empty, nobody has set bitRate and
|
2014-08-29 13:15:33 +02:00
|
|
|
time yet */
|
2009-03-05 17:37:11 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
bit_rate = _bit_rate;
|
2014-08-29 13:15:33 +02:00
|
|
|
time = data_time;
|
2014-08-31 08:25:17 +02:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
audio_format = af;
|
|
|
|
#endif
|
2009-03-05 17:37:11 +01:00
|
|
|
}
|
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
const size_t frame_size = af.GetFrameSize();
|
2013-01-04 21:38:46 +01:00
|
|
|
size_t num_frames = (sizeof(data) - length) / frame_size;
|
2013-10-28 17:10:12 +01:00
|
|
|
return { data + length, num_frames * frame_size };
|
2009-03-05 17:37:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2017-05-08 14:44:49 +02:00
|
|
|
MusicChunk::Expand(const AudioFormat af, size_t _length) noexcept
|
2009-03-05 17:37:11 +01:00
|
|
|
{
|
2013-08-03 21:00:50 +02:00
|
|
|
const size_t frame_size = af.GetFrameSize();
|
2009-03-05 17:37:11 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
assert(length + _length <= sizeof(data));
|
2013-08-03 21:00:50 +02:00
|
|
|
assert(audio_format == af);
|
2009-03-05 17:37:11 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
length += _length;
|
2009-03-05 17:37:11 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
return length + frame_size > sizeof(data);
|
2009-03-05 17:37:11 +01:00
|
|
|
}
|