FfmpegMetaData.cxx 2.33 KB
Newer Older
1
/*
2
 * Copyright 2003-2018 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 * 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.
 */

20 21 22 23
/* necessary because libavutil/common.h uses UINT64_C */
#define __STDC_CONSTANT_MACROS

#include "FfmpegMetaData.hxx"
24 25
#include "tag/Table.hxx"
#include "tag/Handler.hxx"
26
#include "tag/Id3MusicBrainz.hxx"
27

28 29 30 31
extern "C" {
#include <libavutil/dict.h>
}

32
static constexpr struct tag_table ffmpeg_tags[] = {
Max Kellermann's avatar
Max Kellermann committed
33
	{ "year", TAG_DATE },
34 35 36
	{ "author-sort", TAG_ARTIST_SORT },
	{ "album_artist", TAG_ALBUM_ARTIST },
	{ "album_artist-sort", TAG_ALBUM_ARTIST_SORT },
37 38

	/* sentinel */
39
	{ nullptr, TAG_NUM_OF_ITEM_TYPES }
40 41 42
};

static void
43 44
FfmpegScanTag(TagType type,
	      AVDictionary *m, const char *name,
45
	      TagHandler &handler) noexcept
46
{
47
	AVDictionaryEntry *mt = nullptr;
48

49
	while ((mt = av_dict_get(m, name, mt, 0)) != nullptr)
50
		handler.OnTag(type, mt->value);
51 52
}

53
static void
54
FfmpegScanPairs(AVDictionary *dict, TagHandler &handler) noexcept
55
{
56
	AVDictionaryEntry *i = nullptr;
57

58
	while ((i = av_dict_get(dict, "", i, AV_DICT_IGNORE_SUFFIX)) != nullptr)
59
		handler.OnPair(i->key, i->value);
60 61
}

62
void
63
FfmpegScanDictionary(AVDictionary *dict, TagHandler &handler) noexcept
64
{
65
	if (handler.WantTag()) {
66
		for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i)
67
			FfmpegScanTag(TagType(i), dict, tag_item_names[i],
68
				      handler);
69

70 71
		for (const struct tag_table *i = ffmpeg_tags;
		     i->name != nullptr; ++i)
72
			FfmpegScanTag(i->type, dict, i->name,
73
				      handler);
74 75 76 77

		for (const struct tag_table *i = musicbrainz_txxx_tags;
		     i->name != nullptr; ++i)
			FfmpegScanTag(i->type, dict, i->name,
78
				      handler);
79
	}
80

81 82
	if (handler.WantPair())
		FfmpegScanPairs(dict, handler);
83
}