mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-11-03 04:17:17 -05:00
93194594f7
svn path=/icecast/trunk/icecast/; revision=19376
21 lines
559 B
C
21 lines
559 B
C
/* Icecast
|
|
*
|
|
* This program is distributed under the GNU General Public License,
|
|
* 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.
|
|
*
|
|
* Copyright 2012, David Richards, Mozilla Foundation,
|
|
* and others (see AUTHORS for details).
|
|
*/
|
|
|
|
|
|
#ifndef __FORMAT_OPUS_H
|
|
#define __FORMAT_OPUS_H
|
|
|
|
#include "format_ogg.h"
|
|
|
|
ogg_codec_t *initial_opus_page(format_plugin_t *plugin, ogg_page *page);
|
|
|
|
#endif /* __FORMAT_OPUS_H */
|