1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-09-29 04:25:55 -04:00

Update: Added stub for Xiph metadata (vorbis comments, ...)

This commit is contained in:
Philipp Schafft 2022-03-15 23:55:45 +00:00
parent 488f767b9e
commit b23ef22eaf
3 changed files with 31 additions and 0 deletions

View File

@ -47,6 +47,7 @@ noinst_HEADERS = \
event_exec.h \
event_url.h \
acl.h auth.h \
metadata_xiph.h \
format.h \
format_ogg.h \
format_mp3.h \
@ -95,6 +96,7 @@ icecast_SOURCES = \
listensocket.c \
fastevent.c \
navigation.c \
metadata_xiph.c \
format.c \
format_ogg.c \
format_mp3.c \

17
src/metadata_xiph.c Normal file
View File

@ -0,0 +1,17 @@
/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2022, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "metadata_xiph.h"
#include "logging.h"
#define CATMODULE "metadata-xiph"

12
src/metadata_xiph.h Normal file
View File

@ -0,0 +1,12 @@
/* Icecast
*
* This program is distributed under the GNU General Public License, version 2.
* A copy of this license is included with this source.
*
* Copyright 2022, Philipp "ph3-der-loewe" Schafft <lion@lion.leolix.org>
*/
#ifndef __METADATA_XIPH_H__
#define __METADATA_XIPH_H__
#endif