FfmpegMetaData.cxx 2.35 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 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
/* necessary because libavutil/common.h uses UINT64_C */
#define __STDC_CONSTANT_MACROS

23
#include "config.h"
24
#include "FfmpegMetaData.hxx"
25
#include "tag/TagTable.hxx"
26
#include "tag/TagHandler.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
	      const TagHandler &handler, void *handler_ctx)
46
{
47
	AVDictionaryEntry *mt = nullptr;
48

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

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

60
	while ((i = av_dict_get(dict, "", i, AV_DICT_IGNORE_SUFFIX)) != nullptr)
61 62 63 64
		tag_handler_invoke_pair(handler, handler_ctx,
					i->key, i->value);
}

65
void
66
FfmpegScanDictionary(AVDictionary *dict,
67
		     const TagHandler &handler, void *handler_ctx)
68
{
69
	if (handler.tag != nullptr) {
70
		for (unsigned i = 0; i < TAG_NUM_OF_ITEM_TYPES; ++i)
71 72
			FfmpegScanTag(TagType(i), dict, tag_item_names[i],
				      handler, handler_ctx);
73

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

80
	if (handler.pair != nullptr)
81
		FfmpegScanPairs(dict, handler, handler_ctx);
82
}