2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2017-01-03 20:48:59 +01:00
|
|
|
* Copyright 2003-2017 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2008-08-29 09:38:27 +02:00
|
|
|
*
|
|
|
|
* 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.
|
2008-08-29 09:38:27 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2013-07-28 20:25:45 +02:00
|
|
|
#include "TagId3.hxx"
|
2016-02-19 19:06:06 +01:00
|
|
|
#include "Id3Load.hxx"
|
2017-07-19 22:36:04 +02:00
|
|
|
#include "Id3MusicBrainz.hxx"
|
2013-07-29 07:32:36 +02:00
|
|
|
#include "TagHandler.hxx"
|
2013-07-29 07:37:52 +02:00
|
|
|
#include "TagTable.hxx"
|
2013-09-05 19:11:50 +02:00
|
|
|
#include "TagBuilder.hxx"
|
2014-02-17 22:42:06 +01:00
|
|
|
#include "util/Alloc.hxx"
|
2017-02-06 23:32:07 +01:00
|
|
|
#include "util/ScopeExit.hxx"
|
2014-02-17 22:37:43 +01:00
|
|
|
#include "util/StringUtil.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2013-07-28 20:25:45 +02:00
|
|
|
|
2008-08-29 09:38:27 +02:00
|
|
|
#include <id3tag.h>
|
|
|
|
|
2013-12-04 14:43:09 +01:00
|
|
|
#include <string>
|
2016-02-19 18:23:50 +01:00
|
|
|
#include <stdexcept>
|
2013-12-04 14:43:09 +01:00
|
|
|
|
2016-03-01 22:08:13 +01:00
|
|
|
#include <string.h>
|
2009-01-24 20:07:23 +01:00
|
|
|
#include <stdlib.h>
|
2009-01-03 14:51:41 +01:00
|
|
|
|
2008-08-29 09:38:27 +02:00
|
|
|
# ifndef ID3_FRAME_COMPOSER
|
|
|
|
# define ID3_FRAME_COMPOSER "TCOM"
|
|
|
|
# endif
|
|
|
|
# ifndef ID3_FRAME_DISC
|
|
|
|
# define ID3_FRAME_DISC "TPOS"
|
|
|
|
# endif
|
|
|
|
|
2009-07-09 14:28:08 +02:00
|
|
|
#ifndef ID3_FRAME_ARTIST_SORT
|
|
|
|
#define ID3_FRAME_ARTIST_SORT "TSOP"
|
|
|
|
#endif
|
|
|
|
|
2009-01-14 22:38:55 +01:00
|
|
|
#ifndef ID3_FRAME_ALBUM_ARTIST_SORT
|
2009-07-09 14:28:08 +02:00
|
|
|
#define ID3_FRAME_ALBUM_ARTIST_SORT "TSO2" /* this one is unofficial, introduced by Itunes */
|
2009-01-14 22:38:55 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef ID3_FRAME_ALBUM_ARTIST
|
|
|
|
#define ID3_FRAME_ALBUM_ARTIST "TPE2"
|
|
|
|
#endif
|
|
|
|
|
2014-12-02 22:17:47 +01:00
|
|
|
gcc_pure
|
2009-01-24 20:07:23 +01:00
|
|
|
static id3_utf8_t *
|
2017-05-08 14:44:49 +02:00
|
|
|
tag_id3_getstring(const struct id3_frame *frame, unsigned i) noexcept
|
2009-01-24 20:07:23 +01:00
|
|
|
{
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_field *field = id3_frame_field(frame, i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
|
|
|
return nullptr;
|
2009-01-24 20:07:23 +01:00
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_ucs4_t *ucs4 = id3_field_getstring(field);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (ucs4 == nullptr)
|
|
|
|
return nullptr;
|
2009-01-24 20:07:23 +01:00
|
|
|
|
|
|
|
return id3_ucs4_utf8duplicate(ucs4);
|
|
|
|
}
|
|
|
|
|
2008-08-29 09:38:27 +02:00
|
|
|
/* This will try to convert a string to utf-8,
|
|
|
|
*/
|
2009-08-04 00:13:22 +02:00
|
|
|
static id3_utf8_t *
|
2015-06-26 00:08:29 +02:00
|
|
|
import_id3_string(const id3_ucs4_t *ucs4)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
2015-06-26 00:08:29 +02:00
|
|
|
id3_utf8_t *utf8 = id3_ucs4_utf8duplicate(ucs4);
|
|
|
|
if (gcc_unlikely(utf8 == nullptr))
|
|
|
|
return nullptr;
|
2008-12-29 16:37:41 +01:00
|
|
|
|
2017-02-06 23:32:07 +01:00
|
|
|
AtScopeExit(utf8) { free(utf8); };
|
2008-12-29 16:37:41 +01:00
|
|
|
|
2017-02-06 23:32:07 +01:00
|
|
|
return (id3_utf8_t *)xstrdup(Strip((char *)utf8));
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
2009-08-04 00:15:43 +02:00
|
|
|
/**
|
|
|
|
* Import a "Text information frame" (ID3v2.4.0 section 4.2). It
|
|
|
|
* contains 2 fields:
|
|
|
|
*
|
|
|
|
* - encoding
|
|
|
|
* - string list
|
|
|
|
*/
|
2009-01-24 20:02:59 +01:00
|
|
|
static void
|
2015-06-26 00:08:29 +02:00
|
|
|
tag_id3_import_text_frame(const struct id3_frame *frame,
|
2013-10-20 13:32:59 +02:00
|
|
|
TagType type,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
2010-12-07 18:05:44 +01:00
|
|
|
if (frame->nfields != 2)
|
2009-01-24 20:02:59 +01:00
|
|
|
return;
|
2009-08-04 00:15:43 +02:00
|
|
|
|
|
|
|
/* check the encoding field */
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_field *field = id3_frame_field(frame, 0);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr || field->type != ID3_FIELD_TYPE_TEXTENCODING)
|
2009-01-24 20:02:59 +01:00
|
|
|
return;
|
2008-08-29 09:38:27 +02:00
|
|
|
|
2009-08-04 00:15:43 +02:00
|
|
|
/* process the value(s) */
|
|
|
|
|
|
|
|
field = id3_frame_field(frame, 1);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr || field->type != ID3_FIELD_TYPE_STRINGLIST)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Get the number of strings available */
|
2013-12-04 14:52:34 +01:00
|
|
|
const unsigned nstrings = id3_field_getnstrings(field);
|
|
|
|
for (unsigned i = 0; i < nstrings; i++) {
|
|
|
|
const id3_ucs4_t *ucs4 = id3_field_getstrings(field, i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (ucs4 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
continue;
|
|
|
|
|
2009-10-13 16:12:45 +02:00
|
|
|
if (type == TAG_GENRE)
|
2009-08-04 00:15:46 +02:00
|
|
|
ucs4 = id3_genre_name(ucs4);
|
|
|
|
|
2015-06-26 00:08:29 +02:00
|
|
|
id3_utf8_t *utf8 = import_id3_string(ucs4);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (utf8 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
continue;
|
|
|
|
|
2017-02-06 23:32:07 +01:00
|
|
|
AtScopeExit(utf8) { free(utf8); };
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_handler_invoke_tag(handler, handler_ctx,
|
|
|
|
type, (const char *)utf8);
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
2009-08-04 00:15:43 +02:00
|
|
|
}
|
|
|
|
|
2010-12-07 18:05:44 +01:00
|
|
|
/**
|
|
|
|
* Import all text frames with the specified id (ID3v2.4.0 section
|
|
|
|
* 4.2). This is a wrapper for tag_id3_import_text_frame().
|
|
|
|
*/
|
|
|
|
static void
|
2013-10-20 13:32:59 +02:00
|
|
|
tag_id3_import_text(struct id3_tag *tag, const char *id, TagType type,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx)
|
2010-12-07 18:05:44 +01:00
|
|
|
{
|
|
|
|
const struct id3_frame *frame;
|
|
|
|
for (unsigned i = 0;
|
2013-07-28 20:25:45 +02:00
|
|
|
(frame = id3_tag_findframe(tag, id, i)) != nullptr; ++i)
|
2015-06-26 00:08:29 +02:00
|
|
|
tag_id3_import_text_frame(frame, type,
|
2012-02-11 19:12:02 +01:00
|
|
|
handler, handler_ctx);
|
2010-12-07 18:05:44 +01:00
|
|
|
}
|
|
|
|
|
2009-08-04 00:15:43 +02:00
|
|
|
/**
|
|
|
|
* Import a "Comment frame" (ID3v2.4.0 section 4.10). It
|
|
|
|
* contains 4 fields:
|
|
|
|
*
|
|
|
|
* - encoding
|
|
|
|
* - language
|
|
|
|
* - string
|
|
|
|
* - full string (we use this one)
|
|
|
|
*/
|
|
|
|
static void
|
2015-06-26 00:08:29 +02:00
|
|
|
tag_id3_import_comment_frame(const struct id3_frame *frame, TagType type,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler,
|
2012-02-11 19:12:02 +01:00
|
|
|
void *handler_ctx)
|
2009-08-04 00:15:43 +02:00
|
|
|
{
|
2010-12-07 18:05:44 +01:00
|
|
|
if (frame->nfields != 4)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* for now I only read the 4th field, with the fullstring */
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_field *field = id3_frame_field(frame, 3);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_ucs4_t *ucs4 = id3_field_getfullstring(field);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (ucs4 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
2015-06-26 00:08:29 +02:00
|
|
|
id3_utf8_t *utf8 = import_id3_string(ucs4);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (utf8 == nullptr)
|
2009-08-04 00:15:43 +02:00
|
|
|
return;
|
|
|
|
|
2017-02-06 23:32:07 +01:00
|
|
|
AtScopeExit(utf8) { free(utf8); };
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_handler_invoke_tag(handler, handler_ctx, type, (const char *)utf8);
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
2010-12-07 18:05:44 +01:00
|
|
|
/**
|
|
|
|
* Import all comment frames (ID3v2.4.0 section 4.10). This is a
|
|
|
|
* wrapper for tag_id3_import_comment_frame().
|
|
|
|
*/
|
|
|
|
static void
|
2013-10-20 13:32:59 +02:00
|
|
|
tag_id3_import_comment(struct id3_tag *tag, const char *id, TagType type,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx)
|
2010-12-07 18:05:44 +01:00
|
|
|
{
|
|
|
|
const struct id3_frame *frame;
|
|
|
|
for (unsigned i = 0;
|
2013-07-28 20:25:45 +02:00
|
|
|
(frame = id3_tag_findframe(tag, id, i)) != nullptr; ++i)
|
2015-06-26 00:08:29 +02:00
|
|
|
tag_id3_import_comment_frame(frame, type,
|
2012-02-11 19:12:02 +01:00
|
|
|
handler, handler_ctx);
|
2010-12-07 18:05:44 +01:00
|
|
|
}
|
|
|
|
|
2009-01-24 20:07:23 +01:00
|
|
|
/**
|
2013-10-20 13:32:59 +02:00
|
|
|
* Parse a TXXX name, and convert it to a TagType enum value.
|
2009-01-24 20:07:23 +01:00
|
|
|
* Returns TAG_NUM_OF_ITEM_TYPES if the TXXX name is not understood.
|
|
|
|
*/
|
2014-12-02 22:17:47 +01:00
|
|
|
gcc_pure
|
2013-10-20 13:32:59 +02:00
|
|
|
static TagType
|
2017-05-08 14:44:49 +02:00
|
|
|
tag_id3_parse_txxx_name(const char *name) noexcept
|
2009-01-24 20:07:23 +01:00
|
|
|
{
|
2017-07-19 22:36:04 +02:00
|
|
|
|
|
|
|
return tag_table_lookup(musicbrainz_txxx_tags, name);
|
2009-01-24 20:07:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Import all known MusicBrainz tags from TXXX frames.
|
|
|
|
*/
|
|
|
|
static void
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_musicbrainz(struct id3_tag *id3_tag,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler,
|
2012-02-11 19:12:02 +01:00
|
|
|
void *handler_ctx)
|
2009-01-24 20:07:23 +01:00
|
|
|
{
|
|
|
|
for (unsigned i = 0;; ++i) {
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_frame *frame = id3_tag_findframe(id3_tag, "TXXX", i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (frame == nullptr)
|
2009-01-24 20:07:23 +01:00
|
|
|
break;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *name = tag_id3_getstring(frame, 1);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (name == nullptr)
|
2009-01-24 20:07:23 +01:00
|
|
|
continue;
|
|
|
|
|
2017-02-06 23:32:07 +01:00
|
|
|
AtScopeExit(name) { free(name); };
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_utf8_t *value = tag_id3_getstring(frame, 2);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (value == nullptr)
|
2009-01-24 20:07:23 +01:00
|
|
|
continue;
|
|
|
|
|
2017-02-06 23:32:07 +01:00
|
|
|
AtScopeExit(value) { free(value); };
|
|
|
|
|
2012-02-11 19:24:51 +01:00
|
|
|
tag_handler_invoke_pair(handler, handler_ctx,
|
|
|
|
(const char *)name,
|
|
|
|
(const char *)value);
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
TagType type = tag_id3_parse_txxx_name((const char*)name);
|
2012-02-11 19:24:51 +01:00
|
|
|
|
|
|
|
if (type != TAG_NUM_OF_ITEM_TYPES)
|
|
|
|
tag_handler_invoke_tag(handler, handler_ctx,
|
|
|
|
type, (const char*)value);
|
2009-01-24 20:07:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-06 14:42:07 +02:00
|
|
|
/**
|
|
|
|
* Imports the MusicBrainz TrackId from the UFID tag.
|
|
|
|
*/
|
|
|
|
static void
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_ufid(struct id3_tag *id3_tag,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx)
|
2009-05-06 14:42:07 +02:00
|
|
|
{
|
|
|
|
for (unsigned i = 0;; ++i) {
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_frame *frame = id3_tag_findframe(id3_tag, "UFID", i);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (frame == nullptr)
|
2009-05-06 14:42:07 +02:00
|
|
|
break;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_field *field = id3_frame_field(frame, 0);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
2009-05-06 14:42:07 +02:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
const id3_latin1_t *name = id3_field_getlatin1(field);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (name == nullptr ||
|
2009-05-06 14:42:07 +02:00
|
|
|
strcmp((const char *)name, "http://musicbrainz.org") != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
field = id3_frame_field(frame, 1);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (field == nullptr)
|
2009-05-06 14:42:07 +02:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 14:52:34 +01:00
|
|
|
id3_length_t length;
|
|
|
|
const id3_byte_t *value =
|
|
|
|
id3_field_getbinarydata(field, &length);
|
2013-07-28 20:25:45 +02:00
|
|
|
if (value == nullptr || length == 0)
|
2009-05-06 14:42:07 +02:00
|
|
|
continue;
|
|
|
|
|
2013-12-04 14:43:09 +01:00
|
|
|
std::string p((const char *)value, length);
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_handler_invoke_tag(handler, handler_ctx,
|
2013-12-04 14:43:09 +01:00
|
|
|
TAG_MUSICBRAINZ_TRACKID, p.c_str());
|
2009-05-06 14:42:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-27 11:42:34 +02:00
|
|
|
void
|
2012-02-11 19:12:02 +01:00
|
|
|
scan_id3_tag(struct id3_tag *tag,
|
2016-02-23 10:10:13 +01:00
|
|
|
const TagHandler &handler, void *handler_ctx)
|
2012-02-11 19:12:02 +01:00
|
|
|
{
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ARTIST, TAG_ARTIST,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ALBUM_ARTIST,
|
|
|
|
TAG_ALBUM_ARTIST, handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ARTIST_SORT,
|
|
|
|
TAG_ARTIST_SORT, handler, handler_ctx);
|
2014-09-29 18:55:59 +02:00
|
|
|
|
|
|
|
tag_id3_import_text(tag, "TSOA", TAG_ALBUM_SORT, handler, handler_ctx);
|
|
|
|
|
2012-02-11 19:12:02 +01:00
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ALBUM_ARTIST_SORT,
|
|
|
|
TAG_ALBUM_ARTIST_SORT, handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_TITLE, TAG_TITLE,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_ALBUM, TAG_ALBUM,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_TRACK, TAG_TRACK,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_YEAR, TAG_DATE,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_GENRE, TAG_GENRE,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_COMPOSER, TAG_COMPOSER,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, "TPE3", TAG_PERFORMER,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, "TPE4", TAG_PERFORMER, handler, handler_ctx);
|
|
|
|
tag_id3_import_comment(tag, ID3_FRAME_COMMENT, TAG_COMMENT,
|
|
|
|
handler, handler_ctx);
|
|
|
|
tag_id3_import_text(tag, ID3_FRAME_DISC, TAG_DISC,
|
|
|
|
handler, handler_ctx);
|
|
|
|
|
|
|
|
tag_id3_import_musicbrainz(tag, handler, handler_ctx);
|
|
|
|
tag_id3_import_ufid(tag, handler, handler_ctx);
|
|
|
|
}
|
|
|
|
|
2013-07-30 20:11:57 +02:00
|
|
|
Tag *
|
|
|
|
tag_id3_import(struct id3_tag *tag)
|
2008-08-29 09:38:27 +02:00
|
|
|
{
|
2013-09-05 19:11:50 +02:00
|
|
|
TagBuilder tag_builder;
|
2016-02-23 10:10:13 +01:00
|
|
|
scan_id3_tag(tag, add_tag_handler, &tag_builder);
|
2013-09-05 19:11:50 +02:00
|
|
|
return tag_builder.IsEmpty()
|
|
|
|
? nullptr
|
2014-01-08 19:43:09 +01:00
|
|
|
: tag_builder.CommitNew();
|
2008-08-29 09:38:27 +02:00
|
|
|
}
|
|
|
|
|
2016-02-23 10:15:38 +01:00
|
|
|
bool
|
|
|
|
tag_id3_scan(InputStream &is,
|
|
|
|
const TagHandler &handler, void *handler_ctx)
|
|
|
|
{
|
|
|
|
UniqueId3Tag tag;
|
|
|
|
|
|
|
|
try {
|
|
|
|
tag = tag_id3_load(is);
|
2016-02-26 14:00:30 +01:00
|
|
|
if (!tag)
|
|
|
|
return false;
|
2016-02-23 10:15:38 +01:00
|
|
|
} catch (const std::runtime_error &e) {
|
|
|
|
LogError(e);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
scan_id3_tag(tag.get(), handler, handler_ctx);
|
|
|
|
return true;
|
|
|
|
}
|