FfmpegMetaData.cxx 2.36 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2020 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
#include "util/StringView.hxx"
28

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

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

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

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

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

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

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

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

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

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

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