2010-11-18 22:25:11 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 The Music Player Daemon Project
|
2010-11-18 22:25:11 +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.
|
|
|
|
*
|
|
|
|
* 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-07-28 20:31:27 +02:00
|
|
|
#include "ApeReplayGain.hxx"
|
|
|
|
#include "ApeLoader.hxx"
|
2014-09-24 20:10:59 +02:00
|
|
|
#include "ReplayGain.hxx"
|
2013-10-20 23:09:51 +02:00
|
|
|
#include "util/ASCII.hxx"
|
2013-10-26 15:14:54 +02:00
|
|
|
#include "fs/Path.hxx"
|
2010-11-18 22:25:11 +01:00
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
static bool
|
|
|
|
replay_gain_ape_callback(unsigned long flags, const char *key,
|
2013-07-28 20:31:27 +02:00
|
|
|
const char *_value, size_t value_length,
|
2013-10-25 19:09:22 +02:00
|
|
|
ReplayGainInfo &info)
|
2010-11-18 22:25:11 +01:00
|
|
|
{
|
|
|
|
/* we only care about utf-8 text tags */
|
|
|
|
if ((flags & (0x3 << 1)) != 0)
|
2013-07-28 20:31:27 +02:00
|
|
|
return false;
|
2010-11-18 22:25:11 +01:00
|
|
|
|
|
|
|
char value[16];
|
|
|
|
if (value_length >= sizeof(value))
|
2013-07-28 20:31:27 +02:00
|
|
|
return false;
|
|
|
|
|
2010-11-18 22:25:11 +01:00
|
|
|
memcpy(value, _value, value_length);
|
|
|
|
value[value_length] = 0;
|
|
|
|
|
2014-09-24 20:10:59 +02:00
|
|
|
return ParseReplayGainTag(info, key, value);
|
2010-11-18 22:25:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2013-10-26 15:14:54 +02:00
|
|
|
replay_gain_ape_read(Path path_fs, ReplayGainInfo &info)
|
2010-11-18 22:25:11 +01:00
|
|
|
{
|
2013-07-28 20:31:27 +02:00
|
|
|
bool found = false;
|
|
|
|
|
2013-10-25 19:09:22 +02:00
|
|
|
auto callback = [&info, &found]
|
2013-07-28 20:31:27 +02:00
|
|
|
(unsigned long flags, const char *key,
|
|
|
|
const char *value,
|
|
|
|
size_t value_length) {
|
|
|
|
found |= replay_gain_ape_callback(flags, key,
|
|
|
|
value, value_length,
|
|
|
|
info);
|
|
|
|
return true;
|
2010-11-18 22:25:11 +01:00
|
|
|
};
|
|
|
|
|
2013-07-28 20:31:27 +02:00
|
|
|
return tag_ape_scan(path_fs, callback) && found;
|
2010-11-18 22:25:11 +01:00
|
|
|
}
|