2009-03-03 22:23:25 +01:00
|
|
|
/*
|
2013-01-04 10:16:16 +01:00
|
|
|
* Copyright (C) 2003-2013 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
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-01-04 10:16:16 +01:00
|
|
|
#include "MusicChunk.hxx"
|
2009-03-05 17:37:11 +01:00
|
|
|
#include "audio_format.h"
|
2009-03-03 22:23:25 +01:00
|
|
|
#include "tag.h"
|
|
|
|
|
2009-03-05 17:37:11 +01:00
|
|
|
#include <assert.h>
|
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
music_chunk::~music_chunk()
|
2009-03-03 22:23:25 +01:00
|
|
|
{
|
2013-01-04 21:38:46 +01:00
|
|
|
if (tag != NULL)
|
|
|
|
tag_free(tag);
|
2009-03-03 22:23:25 +01:00
|
|
|
}
|
2009-03-05 17:37:11 +01:00
|
|
|
|
2009-03-08 13:45:24 +01:00
|
|
|
#ifndef NDEBUG
|
|
|
|
bool
|
2013-01-04 21:38:46 +01:00
|
|
|
music_chunk::CheckFormat(const struct audio_format &other_format) const
|
2009-03-08 13:45:24 +01:00
|
|
|
{
|
2013-01-04 21:38:46 +01:00
|
|
|
assert(audio_format_valid(&other_format));
|
2009-03-08 13:45:24 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
return length == 0 ||
|
|
|
|
audio_format_equals(&audio_format, &other_format);
|
2009-03-08 13:45:24 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-03-05 17:37:11 +01:00
|
|
|
void *
|
2013-01-04 21:38:46 +01:00
|
|
|
music_chunk::Write(const struct audio_format &af,
|
|
|
|
float data_time, uint16_t _bit_rate,
|
|
|
|
size_t *max_length_r)
|
2009-03-05 17:37:11 +01:00
|
|
|
{
|
2013-01-04 21:38:46 +01:00
|
|
|
assert(CheckFormat(af));
|
|
|
|
assert(length == 0 || audio_format_valid(&audio_format));
|
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
|
|
|
|
times yet */
|
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
bit_rate = _bit_rate;
|
|
|
|
times = data_time;
|
2009-03-05 17:37:11 +01:00
|
|
|
}
|
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
const size_t frame_size = audio_format_frame_size(&af);
|
|
|
|
size_t num_frames = (sizeof(data) - length) / frame_size;
|
2009-03-05 17:37:11 +01:00
|
|
|
if (num_frames == 0)
|
|
|
|
return NULL;
|
|
|
|
|
2009-03-08 13:45:24 +01:00
|
|
|
#ifndef NDEBUG
|
2013-01-04 21:38:46 +01:00
|
|
|
audio_format = af;
|
2009-03-08 13:45:24 +01:00
|
|
|
#endif
|
|
|
|
|
2009-03-05 17:37:11 +01:00
|
|
|
*max_length_r = num_frames * frame_size;
|
2013-01-04 21:38:46 +01:00
|
|
|
return data + length;
|
2009-03-05 17:37:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-01-04 21:38:46 +01:00
|
|
|
music_chunk::Expand(const struct audio_format &af, size_t _length)
|
2009-03-05 17:37:11 +01:00
|
|
|
{
|
2013-01-04 21:38:46 +01:00
|
|
|
const size_t frame_size = audio_format_frame_size(&af);
|
2009-03-05 17:37:11 +01:00
|
|
|
|
2013-01-04 21:38:46 +01:00
|
|
|
assert(length + _length <= sizeof(data));
|
|
|
|
assert(audio_format_equals(&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
|
|
|
}
|