Autoconf fixes suggested by Jeff Squyres
[platform/upstream/libvorbis.git] / include / vorbis / internal.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE Ogg Vorbis SOFTWARE CODEC SOURCE CODE.  *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS SOURCE IS GOVERNED BY *
5  * THE GNU PUBLIC LICENSE 2, WHICH IS INCLUDED WITH THIS SOURCE.    *
6  * PLEASE READ THESE TERMS DISTRIBUTING.                            *
7  *                                                                  *
8  * THE OggSQUISH SOURCE CODE IS (C) COPYRIGHT 1994-2000             *
9  * by Monty <monty@xiph.org> and The XIPHOPHORUS Company            *
10  * http://www.xiph.org/                                             *
11  *                                                                  *
12  ********************************************************************
13
14  function: libvorbis codec internal types.  These structures are 
15            'visible', but generally uninteresting to the developer
16  last mod: $Id: internal.h,v 1.7 2000/07/12 09:36:17 xiphmont Exp $
17
18  ********************************************************************/
19
20 #ifndef _vorbis_internal_h_
21 #define _vorbis_internal_h_
22
23 /* structures for various internal data abstractions ********************/
24
25 typedef struct {
26   long endbyte;     
27   int  endbit;      
28
29   unsigned char *buffer;
30   unsigned char *ptr;
31   long storage;
32   
33 } oggpack_buffer;
34
35 #endif
36
37
38
39
40