mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
28572be2ec
All metadata is now extracted from Vorbis streams and ICY streams and exported as new <metadata> tag into admin/stats if specific mountpoint is requested. To testers: - Please test with Ogg Vorbis streams. - Please test with Ogg Vorbis + Theora streams. - Please test chained Ogg streams. - Please test with ICY streams. close #2106
46 lines
1.1 KiB
C
46 lines
1.1 KiB
C
/* Icecast
|
|
*
|
|
* This program is distributed under the GNU General Public License, version 2.
|
|
* A copy of this license is included with this source.
|
|
*
|
|
* Copyright 2000-2004, Jack Moffitt <jack@xiph.org,
|
|
* Michael Smith <msmith@xiph.org>,
|
|
* oddsock <oddsock@xiph.org>,
|
|
* Karl Heyes <karl@xiph.org>
|
|
* and others (see AUTHORS for details).
|
|
*/
|
|
|
|
/* format_mp3.h
|
|
**
|
|
** mp3 format plugin
|
|
**
|
|
*/
|
|
#ifndef __FORMAT_MP3_H__
|
|
#define __FORMAT_MP3_H__
|
|
|
|
#define MP3_METADATA_TITLE "X_ICY_TITLE"
|
|
#define MP3_METADATA_ARTIST "X_ICY_ARTIST"
|
|
#define MP3_METADATA_URL "X_ICY_URL"
|
|
|
|
typedef struct {
|
|
/* These are for inline metadata */
|
|
int inline_metadata_interval;
|
|
int offset;
|
|
int interval;
|
|
char *inline_url;
|
|
int update_metadata;
|
|
|
|
refbuf_t *metadata;
|
|
refbuf_t *read_data;
|
|
int read_count;
|
|
mutex_t url_lock;
|
|
|
|
unsigned build_metadata_len;
|
|
unsigned build_metadata_offset;
|
|
char build_metadata[4081];
|
|
} mp3_state;
|
|
|
|
int format_mp3_get_plugin(struct source_tag *src);
|
|
|
|
#endif /* __FORMAT_MP3_H__ */
|