mpd/src/MusicChunk.cxx

83 lines
2.0 KiB
C++
Raw Normal View History

/*
2013-01-04 10:16:16 +01:00
* Copyright (C) 2003-2013 The Music Player Daemon Project
* 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.
*
* 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.
*/
#include "config.h"
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"
#include <assert.h>
2013-01-04 21:38:46 +01:00
music_chunk::~music_chunk()
{
2013-07-30 20:11:57 +02:00
delete tag;
}
#ifndef NDEBUG
bool
2013-08-03 21:00:50 +02:00
music_chunk::CheckFormat(const AudioFormat other_format) const
{
2013-08-03 21:00:50 +02:00
assert(other_format.IsValid());
2013-08-03 21:00:50 +02:00
return length == 0 || audio_format == other_format;
}
#endif
void *
2013-08-03 21:00:50 +02:00
music_chunk::Write(const AudioFormat af,
2013-01-04 21:38:46 +01:00
float data_time, uint16_t _bit_rate,
size_t *max_length_r)
{
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());
2013-01-04 21:38:46 +01:00
if (length == 0) {
/* if the chunk is empty, nobody has set bitRate and
times yet */
2013-01-04 21:38:46 +01:00
bit_rate = _bit_rate;
times = data_time;
}
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;
if (num_frames == 0)
2013-10-19 18:19:03 +02:00
return nullptr;
#ifndef NDEBUG
2013-01-04 21:38:46 +01:00
audio_format = af;
#endif
*max_length_r = num_frames * frame_size;
2013-01-04 21:38:46 +01:00
return data + length;
}
bool
2013-08-03 21:00:50 +02:00
music_chunk::Expand(const AudioFormat af, size_t _length)
{
2013-08-03 21:00:50 +02:00
const size_t frame_size = af.GetFrameSize();
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);
2013-01-04 21:38:46 +01:00
length += _length;
2013-01-04 21:38:46 +01:00
return length + frame_size > sizeof(data);
}