codecs.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:10k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * codecs.h: codec related structures needed by the demuxers and decoders
  3.  *****************************************************************************
  4.  * Copyright (C) 1999-2001 VideoLAN
  5.  * $Id: codecs.h 8401 2004-08-08 01:36:56Z fenrir $
  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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #ifndef _VLC_CODECS_H
  24. #define _VLC_CODECS_H 1
  25. /* Structures exported to the demuxers and decoders */
  26. #if !(defined _GUID_DEFINED || defined GUID_DEFINED)
  27. #define GUID_DEFINED
  28. typedef struct _GUID
  29. {
  30.     uint32_t Data1;
  31.     uint16_t Data2;
  32.     uint16_t Data3;
  33.     uint8_t  Data4[8];
  34. } GUID, *REFGUID, *LPGUID;
  35. #endif /* GUID_DEFINED */
  36. #ifndef _WAVEFORMATEX_
  37. #define _WAVEFORMATEX_
  38. typedef struct
  39. #ifdef HAVE_ATTRIBUTE_PACKED
  40.     __attribute__((__packed__))
  41. #endif
  42. _WAVEFORMATEX {
  43.     uint16_t   wFormatTag;
  44.     uint16_t   nChannels;
  45.     uint32_t   nSamplesPerSec;
  46.     uint32_t   nAvgBytesPerSec;
  47.     uint16_t   nBlockAlign;
  48.     uint16_t   wBitsPerSample;
  49.     uint16_t   cbSize;
  50. } WAVEFORMATEX, *PWAVEFORMATEX, *NPWAVEFORMATEX, *LPWAVEFORMATEX;
  51. #endif /* _WAVEFORMATEX_ */
  52. #ifndef _WAVEFORMATEXTENSIBLE_
  53. #define _WAVEFORMATEXTENSIBLE_
  54. typedef struct
  55. #ifdef HAVE_ATTRIBUTE_PACKED
  56.     __attribute__((__packed__))
  57. #endif
  58. _WAVEFORMATEXTENSIBLE {
  59.     WAVEFORMATEX Format;
  60.     union {
  61.         uint16_t wValidBitsPerSample;
  62.         uint16_t wSamplesPerBlock;
  63.         uint16_t wReserved;
  64.     } Samples;
  65.     uint32_t     dwChannelMask;
  66.     GUID SubFormat;
  67. } WAVEFORMATEXTENSIBLE, *PWAVEFORMATEXTENSIBLE;
  68. #endif /* _WAVEFORMATEXTENSIBLE_ */
  69. #ifndef _WAVEHEADER_
  70. #define _WAVEHEADER_
  71. typedef struct
  72. #ifdef HAVE_ATTRIBUTE_PACKED
  73.     __attribute__((__packed__))
  74. #endif
  75. _WAVEHEADER {
  76.     uint32_t MainChunkID;
  77.     uint32_t Length;
  78.     uint32_t ChunkTypeID;
  79.     uint32_t SubChunkID;
  80.     uint32_t SubChunkLength;
  81.     uint16_t Format;
  82.     uint16_t Modus;
  83.     uint32_t SampleFreq;
  84.     uint32_t BytesPerSec;
  85.     uint16_t BytesPerSample;
  86.     uint16_t BitsPerSample;
  87.     uint32_t DataChunkID;
  88.     uint32_t DataLength;
  89. } WAVEHEADER;
  90. #endif /* _WAVEHEADER_ */
  91. #if !defined(_BITMAPINFOHEADER_) && !defined(WIN32)
  92. #define _BITMAPINFOHEADER_
  93. typedef struct
  94. #ifdef HAVE_ATTRIBUTE_PACKED
  95.     __attribute__((__packed__))
  96. #endif
  97. {
  98.     uint32_t   biSize;
  99.     uint32_t   biWidth;
  100.     uint32_t   biHeight;
  101.     uint16_t   biPlanes;
  102.     uint16_t   biBitCount;
  103.     uint32_t   biCompression;
  104.     uint32_t   biSizeImage;
  105.     uint32_t   biXPelsPerMeter;
  106.     uint32_t   biYPelsPerMeter;
  107.     uint32_t   biClrUsed;
  108.     uint32_t   biClrImportant;
  109. } BITMAPINFOHEADER, *PBITMAPINFOHEADER, *LPBITMAPINFOHEADER;
  110. typedef struct {
  111.     BITMAPINFOHEADER bmiHeader;
  112.     int        bmiColors[1];
  113. } BITMAPINFO, *LPBITMAPINFO;
  114. #endif
  115. #ifndef _RECT32_
  116. #define _RECT32_
  117. typedef struct
  118. #ifdef HAVE_ATTRIBUTE_PACKED
  119.     __attribute__((__packed__))
  120. #endif
  121. {
  122.     int left, top, right, bottom;
  123. } RECT32;
  124. #endif
  125. #ifndef _REFERENCE_TIME_
  126. #define _REFERENCE_TIME_
  127. typedef int64_t REFERENCE_TIME;
  128. #endif
  129. #ifndef _VIDEOINFOHEADER_
  130. #define _VIDEOINFOHEADER_
  131. typedef struct
  132. #ifdef HAVE_ATTRIBUTE_PACKED
  133.     __attribute__((__packed__))
  134. #endif
  135. {
  136.     RECT32            rcSource;
  137.     RECT32            rcTarget;
  138.     uint32_t          dwBitRate;
  139.     uint32_t          dwBitErrorRate;
  140.     REFERENCE_TIME    AvgTimePerFrame;
  141.     BITMAPINFOHEADER  bmiHeader;
  142.     //int               reserved[3];
  143. } VIDEOINFOHEADER;
  144. #endif
  145. /* WAVE format wFormatTag IDs */
  146. #define WAVE_FORMAT_UNKNOWN             0x0000 /* Microsoft Corporation */
  147. #define WAVE_FORMAT_PCM                 0x0001 /* Microsoft Corporation */
  148. #define WAVE_FORMAT_ADPCM               0x0002 /* Microsoft Corporation */
  149. #define WAVE_FORMAT_IEEE_FLOAT          0x0003 /* Microsoft Corporation */
  150. #define WAVE_FORMAT_ALAW                0x0006 /* Microsoft Corporation */
  151. #define WAVE_FORMAT_MULAW               0x0007 /* Microsoft Corporation */
  152. #define WAVE_FORMAT_DTS_MS              0x0008 /* Microsoft Corporation */
  153. #define WAVE_FORMAT_IMA_ADPCM           0x0011 /* Intel Corporation */
  154. #define WAVE_FORMAT_GSM610              0x0031 /* Microsoft Corporation */
  155. #define WAVE_FORMAT_MSNAUDIO            0x0032 /* Microsoft Corporation */
  156. #define WAVE_FORMAT_G726                0x0045 /* ITU-T standard  */
  157. #define WAVE_FORMAT_MPEG                0x0050 /* Microsoft Corporation */
  158. #define WAVE_FORMAT_MPEGLAYER3          0x0055 /* ISO/MPEG Layer3 Format Tag */
  159. #define WAVE_FORMAT_DOLBY_AC3_SPDIF     0x0092 /* Sonic Foundry */
  160. #define WAVE_FORMAT_A52                 0x2000
  161. #define WAVE_FORMAT_DTS                 0x2001
  162. #define WAVE_FORMAT_WMA1                0x0160
  163. #define WAVE_FORMAT_WMA2                0x0161
  164. #define WAVE_FORMAT_WMA3                0x0162
  165. #define WAVE_FORMAT_DIVIO_AAC           0x4143
  166. /* Need to check these */
  167. #define WAVE_FORMAT_DK3                 0x0061
  168. #define WAVE_FORMAT_DK4                 0x0062
  169. #if !defined(WAVE_FORMAT_EXTENSIBLE)
  170. #define WAVE_FORMAT_EXTENSIBLE          0xFFFE /* Microsoft */
  171. #endif
  172. /* Microsoft speaker definitions */
  173. #define WAVE_SPEAKER_FRONT_LEFT             0x1
  174. #define WAVE_SPEAKER_FRONT_RIGHT            0x2
  175. #define WAVE_SPEAKER_FRONT_CENTER           0x4
  176. #define WAVE_SPEAKER_LOW_FREQUENCY          0x8
  177. #define WAVE_SPEAKER_BACK_LEFT              0x10
  178. #define WAVE_SPEAKER_BACK_RIGHT             0x20
  179. #define WAVE_SPEAKER_FRONT_LEFT_OF_CENTER   0x40
  180. #define WAVE_SPEAKER_FRONT_RIGHT_OF_CENTER  0x80
  181. #define WAVE_SPEAKER_BACK_CENTER            0x100
  182. #define WAVE_SPEAKER_SIDE_LEFT              0x200
  183. #define WAVE_SPEAKER_SIDE_RIGHT             0x400
  184. #define WAVE_SPEAKER_TOP_CENTER             0x800
  185. #define WAVE_SPEAKER_TOP_FRONT_LEFT         0x1000
  186. #define WAVE_SPEAKER_TOP_FRONT_CENTER       0x2000
  187. #define WAVE_SPEAKER_TOP_FRONT_RIGHT        0x4000
  188. #define WAVE_SPEAKER_TOP_BACK_LEFT          0x8000
  189. #define WAVE_SPEAKER_TOP_BACK_CENTER        0x10000
  190. #define WAVE_SPEAKER_TOP_BACK_RIGHT         0x20000
  191. #define WAVE_SPEAKER_RESERVED               0x80000000
  192. static struct
  193. {
  194.     uint16_t     i_tag;
  195.     vlc_fourcc_t i_fourcc;
  196.     char         *psz_name;
  197. }
  198. wave_format_tag_to_fourcc[] =
  199. {
  200.     { WAVE_FORMAT_PCM,      VLC_FOURCC( 'a', 'r', 'a', 'w' ), "Raw audio" },
  201.     { WAVE_FORMAT_ADPCM,    VLC_FOURCC( 'm', 's', 0x00,0x02), "Adpcm" },
  202.     { WAVE_FORMAT_IEEE_FLOAT, VLC_FOURCC( 'a', 'f', 'l', 't' ), "IEEE Float audio" },
  203.     { WAVE_FORMAT_ALAW,     VLC_FOURCC( 'a', 'l', 'a', 'w' ), "A-Law" },
  204.     { WAVE_FORMAT_MULAW,    VLC_FOURCC( 'm', 'l', 'a', 'w' ), "Mu-Law" },
  205.     { WAVE_FORMAT_IMA_ADPCM,VLC_FOURCC( 'm', 's', 0x00,0x11), "Ima-Adpcm" },
  206.     { WAVE_FORMAT_G726,     VLC_FOURCC( 'g', '7', '2', '6' ), "G.726 Adpcm" },
  207.     { WAVE_FORMAT_MPEGLAYER3,VLC_FOURCC('m', 'p', 'g', 'a' ), "Mpeg Audio" },
  208.     { WAVE_FORMAT_MPEG,     VLC_FOURCC( 'm', 'p', 'g', 'a' ), "Mpeg Audio" },
  209.     { WAVE_FORMAT_A52,      VLC_FOURCC( 'a', '5', '2', ' ' ), "A/52" },
  210.     { WAVE_FORMAT_WMA1,     VLC_FOURCC( 'w', 'm', 'a', '1' ), "Window Media Audio 1" },
  211.     { WAVE_FORMAT_WMA2,     VLC_FOURCC( 'w', 'm', 'a', '2' ), "Window Media Audio 2" },
  212.     { WAVE_FORMAT_WMA3,     VLC_FOURCC( 'w', 'm', 'a', '3' ), "Window Media Audio 3" },
  213.     { WAVE_FORMAT_DK3,      VLC_FOURCC( 'm', 's', 0x00,0x61), "Duck DK3" },
  214.     { WAVE_FORMAT_DK4,      VLC_FOURCC( 'm', 's', 0x00,0x62), "Duck DK4" },
  215.     { WAVE_FORMAT_DTS,      VLC_FOURCC( 'd', 't', 's', ' ' ), "DTS Coherent Acoustics" },
  216.     { WAVE_FORMAT_DTS_MS,   VLC_FOURCC( 'd', 't', 's', ' ' ), "DTS Coherent Acoustics" },
  217.     { WAVE_FORMAT_DIVIO_AAC,VLC_FOURCC( 'm', 'p', '4', 'a' ), "MPEG-4 Audio (Divio)" },
  218.     { WAVE_FORMAT_UNKNOWN,  VLC_FOURCC( 'u', 'n', 'd', 'f' ), "Unknown" }
  219. };
  220. static inline void wf_tag_to_fourcc( uint16_t i_tag, vlc_fourcc_t *fcc,
  221.                                      char **ppsz_name )
  222. {
  223.     int i;
  224.     for( i = 0; wave_format_tag_to_fourcc[i].i_tag != 0; i++ )
  225.     {
  226.         if( wave_format_tag_to_fourcc[i].i_tag == i_tag ) break;
  227.     }
  228.     if( fcc ) *fcc = wave_format_tag_to_fourcc[i].i_fourcc;
  229.     if( ppsz_name ) *ppsz_name = wave_format_tag_to_fourcc[i].psz_name;
  230. }
  231. static inline void fourcc_to_wf_tag( vlc_fourcc_t fcc, uint16_t *pi_tag )
  232. {
  233.     int i;
  234.     for( i = 0; wave_format_tag_to_fourcc[i].i_tag != 0; i++ )
  235.     {
  236.         if( wave_format_tag_to_fourcc[i].i_fourcc == fcc ) break;
  237.     }
  238.     if( pi_tag ) *pi_tag = wave_format_tag_to_fourcc[i].i_tag;
  239. }
  240. /**
  241.  * Structure to hold information concerning subtitles.
  242.  * Used between demuxers and decoders of subtitles.
  243.  */
  244. typedef struct es_sys_t
  245. {
  246.     char        *psz_header; /* for 'ssa ' and 'subt' */
  247.     /* for spudec */
  248.     unsigned int        i_orig_height;
  249.     unsigned int        i_orig_width;
  250.     unsigned int        i_origin_x;
  251.     unsigned int        i_origin_y;
  252.     unsigned int        i_scale_h;
  253.     unsigned int        i_scale_v;
  254.     unsigned int        i_alpha;
  255.     vlc_bool_t          b_smooth;
  256.     mtime_t             i_fade_in;
  257.     mtime_t             i_fade_out;
  258.     unsigned int        i_align;
  259.     mtime_t             i_time_offset;
  260.     vlc_bool_t          b_forced_subs;
  261.     unsigned int        palette[16];
  262.     unsigned int        colors[4];
  263. } subtitle_data_t;
  264. #endif /* "codecs.h" */