88544bb141ae22caa70ee7d5e70f83e5a8de46aa
2 ** Copyright (C) 2008-2011 Erik de Castro Lopo <erikd@mega-nerd.com>
4 ** This program is free software ; you can redistribute it and/or modify
5 ** it under the terms of the GNU Lesser General Public License as published by
6 ** the Free Software Foundation ; either version 2.1 of the License, or
7 ** (at your option) any later version.
9 ** This program is distributed in the hope that it will be useful,
10 ** but WITHOUT ANY WARRANTY ; without even the implied warranty of
11 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ** GNU Lesser General Public License for more details.
14 ** You should have received a copy of the GNU Lesser General Public License
15 ** along with this program ; if not, write to the Free Software
16 ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
32 { /* Sync and verify incoming physical bitstream */
33 ogg_sync_state osync
;
34 /* Take physical pages, weld into a logical stream of packets */
35 ogg_stream_state ostream
;
36 /* One Ogg bitstream page. Vorbis packets are inside */
38 /* One raw packet of data for decode */
45 #define readint(buf, base) (((buf [base + 3] << 24) & 0xff000000) | \
46 ((buf [base + 2] <<16) & 0xff0000) | \
47 ((buf [base + 1] << 8) & 0xff00) | \
52 #endif /* SF_SRC_OGG_H */