vlc_codecs.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:15k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * codecs.h: codec related structures needed by the demuxers and decoders
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2001 the VideoLAN team
  5.  * $Id: 2a668cd7d4147bf38fc8341518665834e98f50ab $
  6.  *
  7.  * Author: Gildas Bazin <gbazin@videolan.org>
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  22.  *****************************************************************************/
  23. #ifndef VLC_CODECS_H
  24. #define VLC_CODECS_H 1
  25. /**
  26.  * file
  27.  * This file defines codec related structures needed by the demuxers and decoders
  28.  */
  29. #ifdef HAVE_ATTRIBUTE_PACKED
  30. #   define ATTR_PACKED __attribute__((__packed__))
  31. #else
  32. #   error FIXME
  33. #endif
  34. /* Structures exported to the demuxers and decoders */
  35. #if !(defined _GUID_DEFINED || defined GUID_DEFINED)
  36. #define GUID_DEFINED
  37. typedef struct _GUID
  38. {
  39.     uint32_t Data1;
  40.     uint16_t Data2;
  41.     uint16_t Data3;
  42.     uint8_t  Data4[8];
  43. } GUID, *REFGUID, *LPGUID;
  44. #endif /* GUID_DEFINED */
  45. #ifndef _WAVEFORMATEX_
  46. #define _WAVEFORMATEX_
  47. typedef struct
  48. ATTR_PACKED
  49. _WAVEFORMATEX {
  50.     uint16_t   wFormatTag;
  51.     uint16_t   nChannels;
  52.     uint32_t   nSamplesPerSec;
  53.     uint32_t   nAvgBytesPerSec;
  54.     uint16_t   nBlockAlign;
  55.     uint16_t   wBitsPerSample;
  56.     uint16_t   cbSize;
  57. } WAVEFORMATEX, *PWAVEFORMATEX, *NPWAVEFORMATEX, *LPWAVEFORMATEX;
  58. #endif /* _WAVEFORMATEX_ */
  59. #ifndef _WAVEFORMATEXTENSIBLE_
  60. #define _WAVEFORMATEXTENSIBLE_
  61. typedef struct
  62. ATTR_PACKED
  63. _WAVEFORMATEXTENSIBLE {
  64.     WAVEFORMATEX Format;
  65.     union {
  66.         uint16_t wValidBitsPerSample;
  67.         uint16_t wSamplesPerBlock;
  68.         uint16_t wReserved;
  69.     } Samples;
  70.     uint32_t     dwChannelMask;
  71.     GUID SubFormat;
  72. } WAVEFORMATEXTENSIBLE, *PWAVEFORMATEXTENSIBLE;
  73. #endif /* _WAVEFORMATEXTENSIBLE_ */
  74. #ifndef _WAVEHEADER_
  75. #define _WAVEHEADER_
  76. typedef struct
  77. ATTR_PACKED
  78. _WAVEHEADER {
  79.     uint32_t MainChunkID;
  80.     uint32_t Length;
  81.     uint32_t ChunkTypeID;
  82.     uint32_t SubChunkID;
  83.     uint32_t SubChunkLength;
  84.     uint16_t Format;
  85.     uint16_t Modus;
  86.     uint32_t SampleFreq;
  87.     uint32_t BytesPerSec;
  88.     uint16_t BytesPerSample;
  89.     uint16_t BitsPerSample;
  90.     uint32_t DataChunkID;
  91.     uint32_t DataLength;
  92. } WAVEHEADER;
  93. #endif /* _WAVEHEADER_ */
  94. #if !defined(_BITMAPINFOHEADER_) && !defined(WIN32)
  95. #define _BITMAPINFOHEADER_
  96. typedef struct
  97. ATTR_PACKED
  98. {
  99.     uint32_t   biSize;
  100.     uint32_t   biWidth;
  101.     uint32_t   biHeight;
  102.     uint16_t   biPlanes;
  103.     uint16_t   biBitCount;
  104.     uint32_t   biCompression;
  105.     uint32_t   biSizeImage;
  106.     uint32_t   biXPelsPerMeter;
  107.     uint32_t   biYPelsPerMeter;
  108.     uint32_t   biClrUsed;
  109.     uint32_t   biClrImportant;
  110. } BITMAPINFOHEADER, *PBITMAPINFOHEADER, *LPBITMAPINFOHEADER;
  111. typedef struct
  112. ATTR_PACKED
  113. {
  114.     BITMAPINFOHEADER bmiHeader;
  115.     int        bmiColors[1];
  116. } BITMAPINFO, *LPBITMAPINFO;
  117. #endif
  118. #ifndef _RECT32_
  119. #define _RECT32_
  120. typedef struct
  121. ATTR_PACKED
  122. {
  123.     int left, top, right, bottom;
  124. } RECT32;
  125. #endif
  126. #ifndef _REFERENCE_TIME_
  127. #define _REFERENCE_TIME_
  128. typedef int64_t REFERENCE_TIME;
  129. #endif
  130. #ifndef _VIDEOINFOHEADER_
  131. #define _VIDEOINFOHEADER_
  132. typedef struct
  133. ATTR_PACKED
  134. {
  135.     RECT32            rcSource;
  136.     RECT32            rcTarget;
  137.     uint32_t          dwBitRate;
  138.     uint32_t          dwBitErrorRate;
  139.     REFERENCE_TIME    AvgTimePerFrame;
  140.     BITMAPINFOHEADER  bmiHeader;
  141. } VIDEOINFOHEADER;
  142. #endif
  143. #ifndef _RGBQUAD_
  144. #define _RGBQUAD_
  145. typedef struct
  146. ATTR_PACKED
  147. {
  148.     uint8_t rgbBlue;
  149.     uint8_t rgbGreen;
  150.     uint8_t rgbRed;
  151.     uint8_t rgbReserved;
  152. } RGBQUAD1;
  153. #endif
  154. #ifndef _TRUECOLORINFO_
  155. #define _TRUECOLORINFO_
  156. typedef struct
  157. ATTR_PACKED
  158. {
  159.     uint32_t dwBitMasks[3];
  160.     RGBQUAD1 bmiColors[256];
  161. } TRUECOLORINFO;
  162. #endif
  163. #ifndef _VIDEOINFO_
  164. #define _VIDEOINFO_
  165. typedef struct
  166. ATTR_PACKED
  167. {
  168.     RECT32            rcSource;
  169.     RECT32            rcTarget;
  170.     uint32_t          dwBitRate;
  171.     uint32_t          dwBitErrorRate;
  172.     REFERENCE_TIME    AvgTimePerFrame;
  173.     BITMAPINFOHEADER  bmiHeader;
  174.     union
  175.     {
  176.         RGBQUAD1 bmiColors[256]; /* Colour palette */
  177.         uint32_t dwBitMasks[3]; /* True colour masks */
  178.         TRUECOLORINFO TrueColorInfo; /* Both of the above */
  179.     };
  180. } VIDEOINFO;
  181. #endif
  182. /* WAVE format wFormatTag IDs */
  183. #define WAVE_FORMAT_UNKNOWN             0x0000 /* Microsoft Corporation */
  184. #define WAVE_FORMAT_PCM                 0x0001 /* Microsoft Corporation */
  185. #define WAVE_FORMAT_ADPCM               0x0002 /* Microsoft Corporation */
  186. #define WAVE_FORMAT_IEEE_FLOAT          0x0003 /* Microsoft Corporation */
  187. #define WAVE_FORMAT_ALAW                0x0006 /* Microsoft Corporation */
  188. #define WAVE_FORMAT_MULAW               0x0007 /* Microsoft Corporation */
  189. #define WAVE_FORMAT_DTS_MS              0x0008 /* Microsoft Corporation */
  190. #define WAVE_FORMAT_WMAS                0x000a /* WMA 9 Speech */
  191. #define WAVE_FORMAT_IMA_ADPCM           0x0011 /* Intel Corporation */
  192. #define WAVE_FORMAT_TRUESPEECH          0x0022 /* TrueSpeech */
  193. #define WAVE_FORMAT_GSM610              0x0031 /* Microsoft Corporation */
  194. #define WAVE_FORMAT_MSNAUDIO            0x0032 /* Microsoft Corporation */
  195. #define WAVE_FORMAT_G726                0x0045 /* ITU-T standard  */
  196. #define WAVE_FORMAT_MPEG                0x0050 /* Microsoft Corporation */
  197. #define WAVE_FORMAT_MPEGLAYER3          0x0055 /* ISO/MPEG Layer3 Format Tag */
  198. #define WAVE_FORMAT_DOLBY_AC3_SPDIF     0x0092 /* Sonic Foundry */
  199. #define WAVE_FORMAT_A52                 0x2000
  200. #define WAVE_FORMAT_DTS                 0x2001
  201. #define WAVE_FORMAT_WMA1                0x0160 /* WMA version 1 */
  202. #define WAVE_FORMAT_WMA2                0x0161 /* WMA (v2) 7, 8, 9 Series */
  203. #define WAVE_FORMAT_WMAP                0x0162 /* WMA 9 Professional */
  204. #define WAVE_FORMAT_WMAL                0x0163 /* WMA 9 Lossless */
  205. #define WAVE_FORMAT_DIVIO_AAC           0x4143
  206. #define WAVE_FORMAT_AAC                 0x00FF
  207. #define WAVE_FORMAT_FFMPEG_AAC          0x706D
  208. /* Need to check these */
  209. #define WAVE_FORMAT_DK3                 0x0061
  210. #define WAVE_FORMAT_DK4                 0x0062
  211. /* At least FFmpeg use that ID: from libavformat/riff.c ('Vo' == 0x566f)
  212.  * { CODEC_ID_VORBIS, ('V'<<8)+'o' }, //HACK/FIXME, does vorbis in WAV/AVI have an (in)official id?
  213.  */
  214. #define WAVE_FORMAT_VORBIS              0x566f
  215. /* It seems that these IDs are used by braindead & obsolete VorbisACM encoder
  216.  * (Windows only)
  217.  * A few info is available except VorbisACM source (remember, Windows only)
  218.  * (available on http://svn.xiph.org), but it seems that vo3+ at least is
  219.  * made of Vorbis data encapsulated in Ogg container...
  220.  */
  221. #define WAVE_FORMAT_VORB_1              0x674f
  222. #define WAVE_FORMAT_VORB_2              0x6750
  223. #define WAVE_FORMAT_VORB_3              0x6751
  224. #define WAVE_FORMAT_VORB_1PLUS          0x676f
  225. #define WAVE_FORMAT_VORB_2PLUS          0x6770
  226. #define WAVE_FORMAT_VORB_3PLUS          0x6771
  227. #define WAVE_FORMAT_SPEEX               0xa109 /* Speex audio */
  228. #if !defined(WAVE_FORMAT_EXTENSIBLE)
  229. #define WAVE_FORMAT_EXTENSIBLE          0xFFFE /* Microsoft */
  230. #endif
  231. /* GUID SubFormat IDs */
  232. /* We need both b/c const variables are not compile-time constants in C, giving
  233.  * us an error if we use the const GUID in an enum */
  234. #ifndef _KSDATAFORMAT_SUBTYPE_PCM_
  235. #define _KSDATAFORMAT_SUBTYPE_PCM_ {0x00000001, 0x0000, 0x0010, {0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71}}
  236. static const GUID VLC_KSDATAFORMAT_SUBTYPE_PCM = {0xE923AABF, 0xCB58, 0x4471, {0xA1, 0x19, 0xFF, 0xFA, 0x01, 0xE4, 0xCE, 0x62}};
  237. #define KSDATAFORMAT_SUBTYPE_PCM VLC_KSDATAFORMAT_SUBTYPE_PCM
  238. #endif
  239. #ifndef _KSDATAFORMAT_SUBTYPE_UNKNOWN_
  240. #define _KSDATAFORMAT_SUBTYPE_UNKNOWN_ {0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}}
  241. static const GUID VLC_KSDATAFORMAT_SUBTYPE_UNKNOWN = {0x00000000, 0x0000, 0x0000, {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}};
  242. #define KSDATAFORMAT_SUBTYPE_UNKNOWN VLC_KSDATAFORMAT_SUBTYPE_UNKNOWN
  243. #endif
  244. /* Microsoft speaker definitions */
  245. #define WAVE_SPEAKER_FRONT_LEFT             0x1
  246. #define WAVE_SPEAKER_FRONT_RIGHT            0x2
  247. #define WAVE_SPEAKER_FRONT_CENTER           0x4
  248. #define WAVE_SPEAKER_LOW_FREQUENCY          0x8
  249. #define WAVE_SPEAKER_BACK_LEFT              0x10
  250. #define WAVE_SPEAKER_BACK_RIGHT             0x20
  251. #define WAVE_SPEAKER_FRONT_LEFT_OF_CENTER   0x40
  252. #define WAVE_SPEAKER_FRONT_RIGHT_OF_CENTER  0x80
  253. #define WAVE_SPEAKER_BACK_CENTER            0x100
  254. #define WAVE_SPEAKER_SIDE_LEFT              0x200
  255. #define WAVE_SPEAKER_SIDE_RIGHT             0x400
  256. #define WAVE_SPEAKER_TOP_CENTER             0x800
  257. #define WAVE_SPEAKER_TOP_FRONT_LEFT         0x1000
  258. #define WAVE_SPEAKER_TOP_FRONT_CENTER       0x2000
  259. #define WAVE_SPEAKER_TOP_FRONT_RIGHT        0x4000
  260. #define WAVE_SPEAKER_TOP_BACK_LEFT          0x8000
  261. #define WAVE_SPEAKER_TOP_BACK_CENTER        0x10000
  262. #define WAVE_SPEAKER_TOP_BACK_RIGHT         0x20000
  263. #define WAVE_SPEAKER_RESERVED               0x80000000
  264. static const struct
  265. {
  266.     uint16_t     i_tag;
  267.     vlc_fourcc_t i_fourcc;
  268.     const char  *psz_name;
  269. }
  270. wave_format_tag_to_fourcc[] =
  271. {
  272.     { WAVE_FORMAT_PCM,        VLC_FOURCC( 'a', 'r', 'a', 'w' ), "Raw audio" },
  273.     { WAVE_FORMAT_ADPCM,      VLC_FOURCC( 'm', 's', 0x00,0x02), "ADPCM" },
  274.     { WAVE_FORMAT_IEEE_FLOAT, VLC_FOURCC( 'a', 'f', 'l', 't' ), "IEEE Float audio" },
  275.     { WAVE_FORMAT_ALAW,       VLC_FOURCC( 'a', 'l', 'a', 'w' ), "A-Law" },
  276.     { WAVE_FORMAT_MULAW,      VLC_FOURCC( 'm', 'l', 'a', 'w' ), "Mu-Law" },
  277.     { WAVE_FORMAT_IMA_ADPCM,  VLC_FOURCC( 'm', 's', 0x00,0x11), "Ima-ADPCM" },
  278.     { WAVE_FORMAT_TRUESPEECH, VLC_FOURCC(0x22, 0x0, 0x0, 0x0 ), "Truespeech" },
  279.     { WAVE_FORMAT_GSM610,     VLC_FOURCC( 'a', 'g', 's', 'm' ), "Microsoft WAV GSM" },
  280.     { WAVE_FORMAT_G726,       VLC_FOURCC( 'g', '7', '2', '6' ), "G.726 ADPCM" },
  281.     { WAVE_FORMAT_MPEGLAYER3, VLC_FOURCC( 'm', 'p', 'g', 'a' ), "Mpeg Audio" },
  282.     { WAVE_FORMAT_MPEG,       VLC_FOURCC( 'm', 'p', 'g', 'a' ), "Mpeg Audio" },
  283.     { WAVE_FORMAT_A52,        VLC_FOURCC( 'a', '5', '2', ' ' ), "A/52" },
  284.     { WAVE_FORMAT_WMA1,       VLC_FOURCC( 'w', 'm', 'a', '1' ), "Window Media Audio v1" },
  285.     { WAVE_FORMAT_WMA2,       VLC_FOURCC( 'w', 'm', 'a', '2' ), "Window Media Audio v2" },
  286.     { WAVE_FORMAT_WMA2,       VLC_FOURCC( 'w', 'm', 'a', ' ' ), "Window Media Audio v2" },
  287.     { WAVE_FORMAT_WMAP,       VLC_FOURCC( 'w', 'm', 'a', 'p' ), "Window Media Audio 9 Professional" },
  288.     { WAVE_FORMAT_WMAL,       VLC_FOURCC( 'w', 'm', 'a', 'l' ), "Window Media Audio 9 Lossless" },
  289.     { WAVE_FORMAT_WMAS,       VLC_FOURCC( 'w', 'm', 'a', 's' ), "Window Media Audio 9 Speech" },
  290.     { WAVE_FORMAT_DK3,        VLC_FOURCC( 'm', 's', 0x00,0x61), "Duck DK3" },
  291.     { WAVE_FORMAT_DK4,        VLC_FOURCC( 'm', 's', 0x00,0x62), "Duck DK4" },
  292.     { WAVE_FORMAT_DTS,        VLC_FOURCC( 'd', 't', 's', ' ' ), "DTS Coherent Acoustics" },
  293.     { WAVE_FORMAT_DTS_MS,     VLC_FOURCC( 'd', 't', 's', ' ' ), "DTS Coherent Acoustics" },
  294.     { WAVE_FORMAT_DIVIO_AAC,  VLC_FOURCC( 'm', 'p', '4', 'a' ), "MPEG-4 Audio (Divio)" },
  295.     { WAVE_FORMAT_AAC,        VLC_FOURCC( 'm', 'p', '4', 'a' ), "MPEG-4 Audio" },
  296.     { WAVE_FORMAT_FFMPEG_AAC, VLC_FOURCC( 'm', 'p', '4', 'a' ), "MPEG-4 Audio" },
  297.     { WAVE_FORMAT_VORBIS,     VLC_FOURCC( 'v', 'o', 'r', 'b' ), "Vorbis Audio" },
  298.     { WAVE_FORMAT_VORB_1,     VLC_FOURCC( 'v', 'o', 'r', '1' ), "Vorbis 1 Audio" },
  299.     { WAVE_FORMAT_VORB_1PLUS, VLC_FOURCC( 'v', 'o', '1', '+' ), "Vorbis 1+ Audio" },
  300.     { WAVE_FORMAT_VORB_2,     VLC_FOURCC( 'v', 'o', 'r', '2' ), "Vorbis 2 Audio" },
  301.     { WAVE_FORMAT_VORB_2PLUS, VLC_FOURCC( 'v', 'o', '2', '+' ), "Vorbis 2+ Audio" },
  302.     { WAVE_FORMAT_VORB_3,     VLC_FOURCC( 'v', 'o', 'r', '3' ), "Vorbis 3 Audio" },
  303.     { WAVE_FORMAT_VORB_3PLUS, VLC_FOURCC( 'v', 'o', '3', '+' ), "Vorbis 3+ Audio" },
  304.     { WAVE_FORMAT_SPEEX,      VLC_FOURCC( 's', 'p', 'x', ' ' ), "Speex Audio" },
  305.     { WAVE_FORMAT_UNKNOWN,    VLC_FOURCC( 'u', 'n', 'd', 'f' ), "Unknown" }
  306. };
  307. static inline void wf_tag_to_fourcc( uint16_t i_tag, vlc_fourcc_t *fcc,
  308.                                      const char **ppsz_name )
  309. {
  310.     int i;
  311.     for( i = 0; wave_format_tag_to_fourcc[i].i_tag != 0; i++ )
  312.     {
  313.         if( wave_format_tag_to_fourcc[i].i_tag == i_tag ) break;
  314.     }
  315.     if( fcc ) *fcc = wave_format_tag_to_fourcc[i].i_fourcc;
  316.     if( ppsz_name ) *ppsz_name = wave_format_tag_to_fourcc[i].psz_name;
  317. }
  318. static inline void fourcc_to_wf_tag( vlc_fourcc_t fcc, uint16_t *pi_tag )
  319. {
  320.     int i;
  321.     for( i = 0; wave_format_tag_to_fourcc[i].i_tag != 0; i++ )
  322.     {
  323.         if( wave_format_tag_to_fourcc[i].i_fourcc == fcc ) break;
  324.     }
  325.     if( pi_tag ) *pi_tag = wave_format_tag_to_fourcc[i].i_tag;
  326. }
  327. /* If wFormatTag is WAVEFORMATEXTENSIBLE, we must look at the SubFormat tag
  328.  * to determine the actual format.  Microsoft has stopped giving out wFormatTag
  329.  * assignments in lieu of letting 3rd parties generate their own GUIDs
  330.  */
  331. static const struct
  332. {
  333.     GUID         guid_tag;
  334.     vlc_fourcc_t i_fourcc;
  335.     const char  *psz_name;
  336. }
  337. sub_format_tag_to_fourcc[] =
  338. {
  339.     { _KSDATAFORMAT_SUBTYPE_PCM_, VLC_FOURCC( 'p', 'c', 'm', ' ' ), "PCM" },
  340.     { _KSDATAFORMAT_SUBTYPE_UNKNOWN_, VLC_FOURCC( 'u', 'n', 'd', 'f' ), "Unknown" }
  341. };
  342. /* compares two GUIDs, returns 1 if identical, 0 otherwise */
  343. static inline int guidcmp( const GUID *s1, const GUID *s2 )
  344. {
  345.     return( s1->Data1 == s2->Data1 && s1->Data2 == s2->Data2 &&
  346.             s1->Data3 == s2->Data3 && !memcmp( s1->Data4, s2->Data4, 8 ) );
  347. }
  348. static inline void sf_tag_to_fourcc( GUID *guid_tag,
  349.                                      vlc_fourcc_t *fcc, const char **ppsz_name )
  350. {
  351.     int i;
  352.     for( i = 0; !guidcmp( &sub_format_tag_to_fourcc[i].guid_tag,
  353.                           &KSDATAFORMAT_SUBTYPE_UNKNOWN ); i++ )
  354.     {
  355.         if( guidcmp( &sub_format_tag_to_fourcc[i].guid_tag, guid_tag ) ) break;
  356.     }
  357.     if( fcc ) *fcc = sub_format_tag_to_fourcc[i].i_fourcc;
  358.     if( ppsz_name ) *ppsz_name = sub_format_tag_to_fourcc[i].psz_name;
  359. }
  360. /**
  361.  * Structure to hold information concerning subtitles.
  362.  * Used between demuxers and decoders of subtitles.
  363.  */
  364. typedef struct es_sys_t
  365. {
  366.     char               *psz_header; /* for 'ssa ' and 'subt' */
  367.     /* for spudec */
  368.     unsigned int        i_orig_height;
  369.     unsigned int        i_orig_width;
  370.     unsigned int        i_origin_x;
  371.     unsigned int        i_origin_y;
  372.     unsigned int        i_scale_h;
  373.     unsigned int        i_scale_v;
  374.     unsigned int        i_alpha;
  375.     bool          b_smooth;
  376.     mtime_t             i_fade_in;
  377.     mtime_t             i_fade_out;
  378.     unsigned int        i_align;
  379.     mtime_t             i_time_offset;
  380.     bool          b_forced_subs;
  381.     unsigned int        palette[16];
  382.     unsigned int        colors[4];
  383. } subtitle_data_t;
  384. #endif /* "codecs.h" */