mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Update: Added stub for Xiph metadata (vorbis comments, ...)
This commit is contained in:
parent
488f767b9e
commit
b23ef22eaf
@ -47,6 +47,7 @@ noinst_HEADERS = \
|
|||||||
event_exec.h \
|
event_exec.h \
|
||||||
event_url.h \
|
event_url.h \
|
||||||
acl.h auth.h \
|
acl.h auth.h \
|
||||||
|
metadata_xiph.h \
|
||||||
format.h \
|
format.h \
|
||||||
format_ogg.h \
|
format_ogg.h \
|
||||||
format_mp3.h \
|
format_mp3.h \
|
||||||
@ -95,6 +96,7 @@ icecast_SOURCES = \
|
|||||||
listensocket.c \
|
listensocket.c \
|
||||||
fastevent.c \
|
fastevent.c \
|
||||||
navigation.c \
|
navigation.c \
|
||||||
|
metadata_xiph.c \
|
||||||
format.c \
|
format.c \
|
||||||
format_ogg.c \
|
format_ogg.c \
|
||||||
format_mp3.c \
|
format_mp3.c \
|
||||||
|
17
src/metadata_xiph.c
Normal file
17
src/metadata_xiph.c
Normal 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
12
src/metadata_xiph.h
Normal 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
|
Loading…
Reference in New Issue
Block a user