decoder/{vorbis,flac,opus}: move OggCodec.cxx to libxiph.a

This commit is contained in:
Max Kellermann
2016-05-03 12:54:47 +02:00
parent 1c91d19163
commit 7adbd00811
6 changed files with 17 additions and 4 deletions

32
src/lib/xiph/XiphTags.cxx Normal file
View File

@@ -0,0 +1,32 @@
/*
* Copyright 2003-2016 The Music Player Daemon Project
* 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.
*/
/* This File contains additional Tags for Xiph-Based Formats like Ogg-Vorbis,
* Flac and Opus which will be used in addition to the Tags in tag/TagNames.c
* see https://www.xiph.org/vorbis/doc/v-comment.html for further Info
*/
#include "config.h"
#include "XiphTags.hxx"
const struct tag_table xiph_tags[] = {
{ "tracknumber", TAG_TRACK },
{ "discnumber", TAG_DISC },
{ "description", TAG_COMMENT },
{ nullptr, TAG_NUM_OF_ITEM_TYPES }
};

28
src/lib/xiph/XiphTags.hxx Normal file
View File

@@ -0,0 +1,28 @@
/*
* Copyright 2003-2016 The Music Player Daemon Project
* 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.
*/
#ifndef MPD_XIPH_TAGS_HXX
#define MPD_XIPH_TAGS_HXX
#include "check.h"
#include "tag/TagTable.hxx"
extern const struct tag_table xiph_tags[];
#endif