]> git.sesse.net Git - vlc/blob - include/codecs.h
* configure.ac: Added a compiler check for __attribute__((__packed__)).
[vlc] / include / codecs.h
1 /*****************************************************************************
2  * codecs.h: codec related structures needed by the demuxers and decoders
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: codecs.h,v 1.4 2003/07/01 17:14:58 sam Exp $
6  *
7  * Authors: Gildas Bazin <gbazin@netcourrier.com>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 #ifndef _VLC_CODECS_H
25 #define _VLC_CODECS_H 1
26
27 /* Structures exported to the demuxers and decoders */
28
29 #ifndef _WAVEFORMATEX_
30 #define _WAVEFORMATEX_
31 typedef struct
32 #ifdef HAVE_ATTRIBUTE_PACKED
33     __attribute__((__packed__))
34 #endif
35 _WAVEFORMATEX {
36     uint16_t   wFormatTag;
37     uint16_t   nChannels;
38     uint32_t   nSamplesPerSec;
39     uint32_t   nAvgBytesPerSec;
40     uint16_t   nBlockAlign;
41     uint16_t   wBitsPerSample;
42     uint16_t   cbSize;
43 } WAVEFORMATEX, *PWAVEFORMATEX, *NPWAVEFORMATEX, *LPWAVEFORMATEX;
44 #endif /* _WAVEFORMATEX_ */
45
46 #if !defined(_BITMAPINFOHEADER_) && !defined(WIN32)
47 #define _BITMAPINFOHEADER_
48 typedef struct
49 #ifdef HAVE_ATTRIBUTE_PACKED
50     __attribute__((__packed__))
51 #endif
52 {
53     uint32_t   biSize;
54     uint32_t   biWidth;
55     uint32_t   biHeight;
56     uint16_t   biPlanes;
57     uint16_t   biBitCount;
58     uint32_t   biCompression;
59     uint32_t   biSizeImage;
60     uint32_t   biXPelsPerMeter;
61     uint32_t   biYPelsPerMeter;
62     uint32_t   biClrUsed;
63     uint32_t   biClrImportant;
64 } BITMAPINFOHEADER, *PBITMAPINFOHEADER, *LPBITMAPINFOHEADER;
65 typedef struct {
66     BITMAPINFOHEADER bmiHeader;
67     int        bmiColors[1];
68 } BITMAPINFO, *LPBITMAPINFO;
69 #endif
70
71 /* WAVE form wFormatTag IDs */
72
73 #define  WAVE_FORMAT_UNKNOWN            0x0000 /* Microsoft Corporation */
74 #define  WAVE_FORMAT_PCM                0x0001 /* Microsoft Corporation */
75 #define  WAVE_FORMAT_ADPCM              0x0002 /* Microsoft Corporation */
76 #define  WAVE_FORMAT_IEEE_FLOAT         0x0003 /* Microsoft Corporation */
77 #define  WAVE_FORMAT_ALAW               0x0006 /* Microsoft Corporation */
78 #define  WAVE_FORMAT_MULAW              0x0007 /* Microsoft Corporation */
79 #define  WAVE_FORMAT_DTS                0x0008 /* Microsoft Corporation */
80 #define  WAVE_FORMAT_IMA_ADPCM          0x0011
81 #define  WAVE_FORMAT_MPEG               0x0050 /* Microsoft Corporation */
82 #define  WAVE_FORMAT_MPEGLAYER3         0x0055 /* ISO/MPEG Layer3 Format Tag */
83 #define  WAVE_FORMAT_DOLBY_AC3_SPDIF    0x0092 /* Sonic Foundry */
84
85 /* Need to check these */
86 #define WAVE_FORMAT_A52             0x2000
87 #define WAVE_FORMAT_WMA1            0x0160
88 #define WAVE_FORMAT_WMA2            0x0161
89 #define WAVE_FORMAT_WMA3            0x0162
90
91 #if !defined(WAVE_FORMAT_EXTENSIBLE)
92 #define  WAVE_FORMAT_EXTENSIBLE                 0xFFFE /* Microsoft */
93 #endif
94
95 #endif /* "codecs.h" */