2012-05-18 13:33:17 -04:00
|
|
|
/* Icecast
|
|
|
|
*
|
2012-05-24 12:10:20 -04:00
|
|
|
* This program is distributed under the GNU General Public License,
|
2012-05-24 14:32:06 -04:00
|
|
|
* version 2. A copy of this license is included with this source.
|
|
|
|
* At your option, this specific source file can also be distributed
|
|
|
|
* under the GNU GPL version 3.
|
2012-05-18 13:33:17 -04:00
|
|
|
*
|
2012-05-24 12:10:20 -04:00
|
|
|
* Copyright 2012, David Richards, Mozilla Foundation,
|
2012-05-18 13:33:17 -04:00
|
|
|
* and others (see AUTHORS for details).
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* format_ebml.h
|
|
|
|
**
|
|
|
|
** ebml format plugin header
|
|
|
|
**
|
|
|
|
*/
|
|
|
|
#ifndef __FORMAT_EBML_H__
|
|
|
|
#define __FORMAT_EBML_H__
|
|
|
|
|
|
|
|
#include "format.h"
|
|
|
|
|
|
|
|
int format_ebml_get_plugin (source_t *source);
|
|
|
|
|
|
|
|
#endif /* __FORMAT_EBML_H__ */
|