1 /* the Music Player Daemon (MPD)
2 * Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
3 * This project's homepage is: http://www.musicpd.org
5 * Common functions used for Ogg data streams (Ogg-Vorbis and OggFLAC)
6 * (c) 2005 by Eric Wong <normalperson@yhbt.net>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "../inputPlugin.h"
27 #if defined(HAVE_OGGFLAC) || defined(HAVE_OGGVORBIS)
29 typedef enum _ogg_stream_type { VORBIS, FLAC } ogg_stream_type;
31 ogg_stream_type ogg_stream_type_detect(InputStream * inStream);
33 #endif /* defined(HAVE_OGGFLAC || defined(HAVE_OGGVORBIS) */
35 #endif /* _OGG_COMMON_H */