1 /************************************************************************
2 *
3 * config.h, configuration defines for tmndecode (H.263 decoder)
4 * Copyright (C) 1995, 1996 Telenor R&D, Norway
5 *
6 * Contacts:
7 * Robert Danielsen <Robert.Danielsen@nta.no>
8 *
9 * Telenor Research and Development http://www.nta.no/brukere/DVC/
10 * P.O.Box 83 tel.: +47 63 84 84 00
11 * N-2007 Kjeller, Norway fax.: +47 63 81 00 76
12 *
13 * Copyright (C) 1997 University of BC, Canada
14 * Modified by: Michael Gallant <mikeg@ee.ubc.ca>
15 * Guy Cote <guyc@ee.ubc.ca>
16 * Berna Erol <bernae@ee.ubc.ca>
17 *
18 * Contacts:
19 * Michael Gallant <mikeg@ee.ubc.ca>
20 *
21 * UBC Image Processing Laboratory http://www.ee.ubc.ca/image
22 * 2356 Main Mall tel.: +1 604 822 4051
23 * Vancouver BC Canada V6T1Z4 fax.: +1 604 822 5949
24 *
25 ************************************************************************/
26
27 /* Disclaimer of Warranty
28 *
29 * These software programs are available to the user without any
30 * license fee or royalty on an "as is" basis. The University of
31 * British Columbia disclaims any and all warranties, whether
32 * express, implied, or statuary, including any implied warranties
33 * or merchantability or of fitness for a particular purpose. In no
34 * event shall the copyright-holder be liable for any incidental,
35 * punitive, or consequential damages of any kind whatsoever arising
36 * from the use of these programs.
37 *
38 * This disclaimer of warranty extends to the user of these programs
39 * and user's customers, employees, agents, transferees, successors,
40 * and assigns.
41 *
42 * The University of British Columbia does not represent or warrant
43 * that the programs furnished hereunder are free of infringement of
44 * any third-party patents.
45 *
46 * Commercial implementations of H.263, including shareware, are
47 * subject to royalty fees to patent holders. Many of these patents
48 * are general enough such that they are unavoidable regardless of
49 * implementation design.
50 *
51 */
52
53
54
55 /* define NON_ANSI_COMPILER for compilers without function prototyping */
56 /* #define NON_ANSI_COMPILER */
57
58 #ifdef NON_ANSI_COMPILER
59 #define _ANSI_ARGS_(x) ()
60 #else
61 #define _ANSI_ARGS_(x) x
62 #endif
63
64 #ifndef O_BINARY
65 #define O_BINARY 0
66 #endif
67
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.