bitstream.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * FAAC - Freeware Advanced Audio Coder
  3.  * Copyright (C) 2001 Menno Bakker
  4.  *
  5.  * This library is free software; you can redistribute it and/or
  6.  * modify it under the terms of the GNU Lesser General Public
  7.  * License as published by the Free Software Foundation; either
  8.  * version 2.1 of the License, or (at your option) any later version.
  9.  *
  10.  * This library is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  * Lesser General Public License for more details.
  14.  * You should have received a copy of the GNU Lesser General Public
  15.  * License along with this library; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17.  *
  18.  * $Id: bitstream.h,v 1.5 2001/06/04 23:02:24 wmay Exp $
  19.  */
  20. #ifndef BITSTREAM_H
  21. #define BITSTREAM_H
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif /* __cplusplus */
  25. #include "frame.h"
  26. #include "coder.h"
  27. #include "channels.h"
  28. /* 
  29.  * Raw bitstream constants
  30.  */
  31. #define LEN_SE_ID 3
  32. #define LEN_TAG 4
  33. #define LEN_GLOB_GAIN 8
  34. #define LEN_COM_WIN 1
  35. #define LEN_ICS_RESERV 1
  36. #define LEN_WIN_SEQ 2
  37. #define LEN_WIN_SH 1
  38. #define LEN_MAX_SFBL 6 
  39. #define LEN_MAX_SFBS 4 
  40. #define LEN_CB 4
  41. #define LEN_SCL_PCM 8
  42. #define LEN_PRED_PRES 1
  43. #define LEN_PRED_RST 1
  44. #define LEN_PRED_RSTGRP 5
  45. #define LEN_PRED_ENAB 1
  46. #define LEN_MASK_PRES 2
  47. #define LEN_MASK 1
  48. #define LEN_PULSE_PRES 1
  49. #define LEN_TNS_PRES 1
  50. #define LEN_TNS_NFILTL 2
  51. #define LEN_TNS_NFILTS 1
  52. #define LEN_TNS_COEFF_RES 1
  53. #define LEN_TNS_LENGTHL 6
  54. #define LEN_TNS_LENGTHS 4
  55. #define LEN_TNS_ORDERL 5
  56. #define LEN_TNS_ORDERS 3
  57. #define LEN_TNS_DIRECTION 1
  58. #define LEN_TNS_COMPRESS 1
  59. #define LEN_GAIN_PRES 1
  60. #define LEN_NEC_NPULSE 2 
  61. #define LEN_NEC_ST_SFB 6 
  62. #define LEN_NEC_POFF 5 
  63. #define LEN_NEC_PAMP 4 
  64. #define NUM_NEC_LINES 4 
  65. #define NEC_OFFSET_AMP 4 
  66. #define LEN_NCC 3
  67. #define LEN_IS_CPE 1
  68. #define LEN_CC_LR 1
  69. #define LEN_CC_DOM 1
  70. #define LEN_CC_SGN 1
  71. #define LEN_CCH_GES 2
  72. #define LEN_CCH_CGP 1
  73. #define LEN_D_CNT 4
  74. #define LEN_D_ESC 12
  75. #define LEN_F_CNT 4
  76. #define LEN_F_ESC 8
  77. #define LEN_BYTE 8
  78. #define LEN_PAD_DATA 8
  79. #define LEN_PC_COMM 8 
  80. #define ID_SCE 0
  81. #define ID_CPE 1
  82. #define ID_CCE 2
  83. #define ID_LFE 3
  84. #define ID_DSE 4
  85. #define ID_PCE 5
  86. #define ID_FIL 6
  87. #define ID_END 7
  88. /* MPEG ID's */
  89. #define MPEG2 1
  90. #define MPEG4 0
  91. /* AAC object types */
  92. #define MAIN 0
  93. #define LOW  1
  94. #define SSR  2
  95. #define LTP  3
  96. #define BYTE_NUMBIT 8 /* bits in byte (char) */
  97. #define LONG_NUMBIT 32 /* bits in unsigned long */
  98. #define bit2byte(a) (((a)+BYTE_NUMBIT-1)/BYTE_NUMBIT)
  99. typedef struct
  100. {
  101.   unsigned char *data; /* data bits */
  102.   long numBit; /* number of bits in buffer */
  103.   long size; /* buffer size in bytes */
  104.   long currentBit; /* current bit position in bit stream */
  105.   long numByte; /* number of bytes read/written (only file) */
  106. } BitStream;
  107. int WriteBitstream(faacEncHandle hEncoder,
  108.    CoderInfo *coderInfo,
  109.    ChannelInfo *channelInfo,
  110.    BitStream *bitStream,
  111.    int numChannels);
  112. static int CountBitstream(faacEncHandle hEncoder,
  113.   CoderInfo *coderInfo,
  114.   ChannelInfo *channelInfo,
  115.   BitStream *bitStream,
  116.   int numChannels);
  117. static int WriteADTSHeader(faacEncHandle hEncoder,
  118.    BitStream *bitStream,
  119.    int writeFlag);
  120. static int WriteCPE(CoderInfo *coderInfoL,
  121. CoderInfo *coderInfoR,
  122. ChannelInfo *channelInfo,
  123. BitStream* bitStream,
  124. int objectType,
  125. int writeFlag);
  126. static int WriteSCE(CoderInfo *coderInfo,
  127. ChannelInfo *channelInfo,
  128. BitStream *bitStream,
  129. int objectType,
  130. int writeFlag);
  131. static int WriteLFE(CoderInfo *coderInfo,
  132. ChannelInfo *channelInfo,
  133. BitStream *bitStream,
  134. int objectType,
  135. int writeFlag);
  136. static int WriteICSInfo(CoderInfo *coderInfo,
  137. BitStream *bitStream,
  138. int objectType,
  139. int writeFlag);
  140. static int WriteICS(CoderInfo *coderInfo,
  141. BitStream *bitStream,
  142. int commonWindow,
  143. int objectType,
  144. int writeFlag);
  145. static int WriteLTPPredictorData(CoderInfo *coderInfo,
  146.  BitStream *bitStream,
  147.  int writeFlag);
  148. static int WritePredictorData(CoderInfo *coderInfo,
  149.   BitStream *bitStream,
  150.   int writeFlag);
  151. static int WritePulseData(CoderInfo *coderInfo,
  152.   BitStream *bitStream,
  153.   int writeFlag);
  154. static int WriteTNSData(CoderInfo *coderInfo,
  155. BitStream *bitStream,
  156. int writeFlag);
  157. static int WriteGainControlData(CoderInfo *coderInfo,
  158. BitStream *bitStream,
  159. int writeFlag);
  160. static int WriteSpectralData(CoderInfo *coderInfo,
  161.  BitStream *bitStream,
  162.  int writeFlag);
  163. static int WriteAACFillBits(BitStream* bitStream,
  164. int numBits,
  165. int writeFlag);
  166. static int FindGroupingBits(CoderInfo *coderInfo);
  167. BitStream *OpenBitStream(int size, unsigned char *buffer);
  168. int CloseBitStream(BitStream *bitStream);
  169. static long BufferNumBit(BitStream *bitStream);
  170. static int WriteByte(BitStream *bitStream,
  171.  unsigned long data,
  172.  int numBit);
  173. int PutBit(BitStream *bitStream,
  174.    unsigned long data,
  175.    int numBit);
  176. static int ByteAlign(BitStream* bitStream,
  177.  int writeFlag,
  178.  int offset);
  179. #ifdef __cplusplus
  180. }
  181. #endif /* __cplusplus */
  182. #endif /* BITSTREAM_H */