Mercurial > mplayer.hg
comparison libaf/af_format.h @ 26064:e173fde700da
Replace silly check for config.h inclusion, just include it.
author | diego |
---|---|
date | Sun, 24 Feb 2008 23:44:35 +0000 |
parents | 4129c8cfa742 |
children | 9e739bdb049c |
comparison
equal
deleted
inserted
replaced
26063:caf94e545753 | 26064:e173fde700da |
---|---|
3 resolution. */ | 3 resolution. */ |
4 | 4 |
5 #ifndef MPLAYER_AF_FORMAT_H | 5 #ifndef MPLAYER_AF_FORMAT_H |
6 #define MPLAYER_AF_FORMAT_H | 6 #define MPLAYER_AF_FORMAT_H |
7 | 7 |
8 #ifndef MPLAYER_CONFIG_H | 8 #include "config.h" |
9 #error af_format.h needs config.h | |
10 #endif | |
11 | 9 |
12 // Endianness | 10 // Endianness |
13 #define AF_FORMAT_BE (0<<0) // Big Endian | 11 #define AF_FORMAT_BE (0<<0) // Big Endian |
14 #define AF_FORMAT_LE (1<<0) // Little Endian | 12 #define AF_FORMAT_LE (1<<0) // Little Endian |
15 #define AF_FORMAT_END_MASK (1<<0) | 13 #define AF_FORMAT_END_MASK (1<<0) |