mono modes
[platform/upstream/libvorbis.git] / lib / modes / modes.h
1 /********************************************************************
2  *                                                                  *
3  * THIS FILE IS PART OF THE OggVorbis SOFTWARE CODEC SOURCE CODE.   *
4  * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS     *
5  * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6  * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING.       *
7  *                                                                  *
8  * THE OggVorbis SOURCE CODE IS (C) COPYRIGHT 1994-2001             *
9  * by the XIPHOPHORUS Company http://www.xiph.org/                  *
10
11  ********************************************************************
12
13  function: predefined encoding modes
14  last mod: $Id: modes.h,v 1.13 2001/08/13 11:30:59 xiphmont Exp $
15
16  ********************************************************************/
17
18 #ifndef _V_MODES_H_
19 #define _V_MODES_H_
20
21 #include "masking.h"
22 /* stereo (coupled) */
23 #include "modes/mode_44c_Z.h"
24 #include "modes/mode_44c_Y.h"
25 #include "modes/mode_44c_X.h"
26 #include "modes/mode_44c_A.h"
27 #include "modes/mode_44c_B.h"
28 #include "modes/mode_44c_C.h"
29 #include "modes/mode_44c_D.h"
30 #include "modes/mode_44c_E.h"
31
32 /* mono/dual/multi */
33 #include "modes/mode_44_Z.h"
34 #include "modes/mode_44_Y.h"
35 #include "modes/mode_44_X.h"
36 #include "modes/mode_44_A.h"
37 #include "modes/mode_44_B.h"
38 #include "modes/mode_44_C.h"
39
40 #endif