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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1.  /******************************************************************************
  2.   *                                                                            *
  3.   *  This file is part of XviD, a free MPEG-4 video encoder/decoder            *
  4.   *                                                                            *
  5.   *  XviD is an implementation of a part of one or more MPEG-4 Video tools     *
  6.   *  as specified in ISO/IEC 14496-2 standard.  Those intending to use this    *
  7.   *  software module in hardware or software products are advised that its     *
  8.   *  use may infringe existing patents or copyrights, and any such use         *
  9.   *  would be at such party's own risk.  The original developer of this        *
  10.   *  software module and his/her company, and subsequent editors and their     *
  11.   *  companies, will have no liability for use of this software or             *
  12.   *  modifications or derivatives thereof.                                     *
  13.   *                                                                            *
  14.   *  XviD is free software; you can redistribute it and/or modify it           *
  15.   *  under the terms of the GNU General Public License as published by         *
  16.   *  the Free Software Foundation; either version 2 of the License, or         *
  17.   *  (at your option) any later version.                                       *
  18.   *                                                                            *
  19.   *  XviD is distributed in the hope that it will be useful, but               *
  20.   *  WITHOUT ANY WARRANTY; without even the implied warranty of                *
  21.   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *
  22.   *  GNU General Public License for more details.                              *
  23.   *                                                                            *
  24.   *  You should have received a copy of the GNU General Public License         *
  25.   *  along with this program; if not, write to the Free Software               *
  26.   *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA  *
  27.   *                                                                            *
  28.   ******************************************************************************/
  29.  /******************************************************************************
  30.   *                                                                            *
  31.   *  bitstream.h                                                               *
  32.   *                                                                            *
  33.   *  Copyright (C) 2001 - Peter Ross <pross@cs.rmit.edu.au>                    *
  34.   *                                                                            *
  35.   *  For more information visit the XviD homepage: http://www.xvid.org         *
  36.   *                                                                            *
  37.   ******************************************************************************/
  38.  /******************************************************************************
  39.   *    *
  40.   *  Revision history:                                                         *
  41.   *                                                                            *
  42.   *  26.03.2002 interlacing support - modified putvol/vopheaders paramters
  43.   *  04.03.2002 putbits speedup (Isibaar)                                      *
  44.   *  03.03.2002 merged BITREADER and BITWRITER (Isibaar)                       *
  45.   *  16.12.2001 inital version                                               *
  46.   *    *
  47.   ******************************************************************************/
  48. #ifndef _BITSTREAM_H_
  49. #define _BITSTREAM_H_
  50. #include "../portab.h"
  51. #include "../decoder.h"
  52. #include "../encoder.h"
  53. // comment any #defs we dont use
  54. #define VIDOBJ_START_CODE 0x00000100 /* ..0x0000011f  */
  55. #define VIDOBJLAY_START_CODE 0x00000120 /* ..0x0000012f */
  56. #define VISOBJSEQ_START_CODE 0x000001b0
  57. #define VISOBJSEQ_STOP_CODE 0x000001b1 /* ??? */
  58. #define USERDATA_START_CODE 0x000001b2
  59. #define GRPOFVOP_START_CODE 0x000001b3
  60. //#define VIDSESERR_ERROR_CODE 0x000001b4
  61. #define VISOBJ_START_CODE 0x000001b5
  62. //#define SLICE_START_CODE 0x000001b7
  63. //#define EXT_START_CODE 0x000001b8
  64. #define VISOBJ_TYPE_VIDEO 1
  65. //#define VISOBJ_TYPE_STILLTEXTURE 2
  66. //#define VISOBJ_TYPE_MESH 3
  67. //#define VISOBJ_TYPE_FBA 4
  68. //#define VISOBJ_TYPE_3DMESH 5
  69. #define VIDOBJLAY_TYPE_SIMPLE 1
  70. //#define VIDOBJLAY_TYPE_SIMPLE_SCALABLE 2
  71. #define VIDOBJLAY_TYPE_CORE 3
  72. #define VIDOBJLAY_TYPE_MAIN 4
  73. //#define VIDOBJLAY_AR_SQUARE 1
  74. //#define VIDOBJLAY_AR_625TYPE_43 2
  75. //#define VIDOBJLAY_AR_525TYPE_43 3
  76. //#define VIDOBJLAY_AR_625TYPE_169 8
  77. //#define VIDOBJLAY_AR_525TYPE_169 9
  78. #define VIDOBJLAY_AR_EXTPAR 15
  79. #define VIDOBJLAY_SHAPE_RECTANGULAR 0
  80. #define VIDOBJLAY_SHAPE_BINARY 1
  81. #define VIDOBJLAY_SHAPE_BINARY_ONLY 2
  82. #define VIDOBJLAY_SHAPE_GRAYSCALE 3
  83. #define VO_START_CODE 0x8
  84. #define VOL_START_CODE 0x12
  85. #define VOP_START_CODE 0x1b6
  86. #define READ_MARKER() BitstreamSkip(bs, 1)
  87. #define WRITE_MARKER() BitstreamPutBit(bs, 1)
  88. // vop coding types 
  89. // intra, prediction, backward, sprite, not_coded
  90. #define I_VOP 0
  91. #define P_VOP 1
  92. #define B_VOP 2
  93. #define S_VOP 3
  94. #define N_VOP 4
  95. // header stuff
  96. int BitstreamReadHeaders(Bitstream * bs, DECODER * dec, uint32_t * rounding,
  97.  uint32_t * quant, uint32_t * fcode, uint32_t * intra_dc_threshold,
  98.  int findvol);
  99. #ifdef MPEG4IP
  100. void BitstreamWriteVoshHeader(Bitstream * const bs);
  101. #endif
  102. void BitstreamWriteVolHeader(Bitstream * const bs,
  103. const MBParam * pParam);
  104. void BitstreamWriteVopHeader(Bitstream * const bs,
  105. const MBParam * pParam);
  106. /* initialise bitstream structure */
  107. static void __inline BitstreamInit(Bitstream * const bs,
  108.    void * const bitstream,
  109.    uint32_t length)
  110. {
  111. uint32_t tmp;
  112. bs->start = bs->tail = (uint32_t*)bitstream;
  113. tmp = *(uint32_t *)bitstream;
  114. #ifndef ARCH_IS_BIG_ENDIAN
  115. BSWAP(tmp);
  116. #endif
  117. bs->bufa = tmp;
  118. tmp = *((uint32_t *)bitstream + 1);
  119. #ifndef ARCH_IS_BIG_ENDIAN
  120. BSWAP(tmp);
  121. #endif
  122. bs->bufb = tmp;
  123. bs->buf = 0;
  124. bs->pos = 0;
  125. bs->length = length;
  126. }
  127. /* reset bitstream state */
  128. static void __inline BitstreamReset(Bitstream * const bs)
  129. {
  130. uint32_t tmp;
  131. bs->tail = bs->start;
  132. tmp = *bs->start;
  133. #ifndef ARCH_IS_BIG_ENDIAN
  134. BSWAP(tmp);
  135. #endif
  136. bs->bufa = tmp;
  137. tmp = *(bs->start + 1);
  138. #ifndef ARCH_IS_BIG_ENDIAN
  139. BSWAP(tmp);
  140. #endif
  141. bs->bufb = tmp;
  142. bs->buf = 0;
  143.     bs->pos = 0;
  144. }
  145. /* reads n bits from bitstream without changing the stream pos */
  146. static uint32_t __inline BitstreamShowBits(Bitstream * const bs,
  147.    const uint32_t bits)
  148. {
  149. int nbit = (bits + bs->pos) - 32;
  150. if (nbit > 0) 
  151. {
  152. return ((bs->bufa & (0xffffffff >> bs->pos)) << nbit) |
  153. (bs->bufb >> (32 - nbit));
  154. }
  155. else 
  156. {
  157. return (bs->bufa & (0xffffffff >> bs->pos)) >> (32 - bs->pos - bits);
  158. }
  159. }
  160. /* skip n bits forward in bitstream */
  161. static __inline void BitstreamSkip(Bitstream * const bs, const uint32_t bits)
  162. {
  163. bs->pos += bits;
  164. if (bs->pos >= 32) 
  165. {
  166. uint32_t tmp;
  167. bs->bufa = bs->bufb;
  168. tmp = *((uint32_t *)bs->tail + 2);
  169. #ifndef ARCH_IS_BIG_ENDIAN
  170. BSWAP(tmp);
  171. #endif
  172. bs->bufb = tmp;
  173. bs->tail++;
  174. bs->pos -= 32;
  175. }
  176. }
  177. /* move forward to the next byte boundary */
  178. static __inline void BitstreamByteAlign(Bitstream * const bs)
  179. {
  180. uint32_t remainder = bs->pos % 8;
  181. if (remainder)
  182. {
  183. BitstreamSkip(bs, 8 - remainder);
  184. }
  185. }
  186. /* bitstream length (unit bits) */
  187. static uint32_t __inline BitstreamPos(const Bitstream * const bs)
  188. {
  189.     return 8 * ((uint32_t)bs->tail - (uint32_t)bs->start) + bs->pos;
  190. }
  191. /* flush the bitstream & return length (unit bytes)
  192. NOTE: assumes no futher bitstream functions will be called.
  193.  */
  194. static uint32_t __inline BitstreamLength(Bitstream * const bs)
  195. {
  196. uint32_t len = (uint32_t) bs->tail - (uint32_t) bs->start;
  197.     if (bs->pos)
  198.     {
  199. uint32_t b = bs->buf;
  200. #ifndef ARCH_IS_BIG_ENDIAN
  201. BSWAP(b);
  202. #endif
  203. *bs->tail = b;
  204. len += (bs->pos + 7) / 8;
  205.     }
  206. return len;
  207. }
  208. /* move bitstream position forward by n bits and write out buffer if needed */
  209. static void __inline BitstreamForward(Bitstream * const bs, const uint32_t bits)
  210. {
  211.     bs->pos += bits;
  212.     if (bs->pos >= 32)
  213.     {
  214. uint32_t b = bs->buf;
  215. #ifndef ARCH_IS_BIG_ENDIAN
  216. BSWAP(b);
  217. #endif
  218. *bs->tail++ = b;
  219. bs->buf = 0;
  220. bs->pos -= 32;
  221.     }
  222. }
  223. #ifndef MPEG4IP
  224. /* pad bitstream to the next byte boundary */
  225. static void __inline BitstreamPad(Bitstream * const bs)
  226. {
  227. uint32_t remainder = bs->pos % 8;
  228.     if (remainder)
  229.     {
  230. BitstreamForward(bs, 8 - remainder);
  231.     }
  232. }
  233. #endif
  234. /* read n bits from bitstream */
  235. static uint32_t __inline BitstreamGetBits(Bitstream * const bs,
  236.   const uint32_t n)
  237. {
  238. uint32_t ret = BitstreamShowBits(bs, n);
  239. BitstreamSkip(bs, n);
  240. return ret;
  241. }
  242. /* read single bit from bitstream */
  243. static uint32_t __inline BitstreamGetBit(Bitstream * const bs)
  244. {
  245. return BitstreamGetBits(bs, 1);
  246. }
  247. /* write single bit to bitstream */
  248. static void __inline BitstreamPutBit(Bitstream * const bs, 
  249. const uint32_t bit)
  250. {
  251.     if (bit)
  252. bs->buf |= (0x80000000 >> bs->pos);
  253.     BitstreamForward(bs, 1);
  254. }
  255. /* write n bits to bitstream */
  256. static void __inline BitstreamPutBits(Bitstream * const bs, 
  257. const uint32_t value,
  258. const uint32_t size)
  259. {
  260. uint32_t shift = 32 - bs->pos - size;
  261. if (shift <= 32) {
  262. bs->buf |= value << shift;
  263. BitstreamForward(bs, size);
  264. } else {
  265. uint32_t remainder;
  266. shift = size - (32 - bs->pos);
  267. bs->buf |= value >> shift;
  268. BitstreamForward(bs, size - shift);
  269. remainder = shift;
  270. shift = 32 - shift;
  271. bs->buf |= value << shift;
  272. BitstreamForward(bs, remainder);
  273. }
  274. }
  275. #ifdef MPEG4IP
  276. static void __inline BitstreamPad(Bitstream * const bs)
  277. {
  278. uint32_t remainder = bs->pos % 8;
  279.     if (remainder)
  280.     {
  281. // padding rule is a 0 bit 
  282. // followed by 1's until the byte boundary
  283. uint32_t pad = 8 - remainder;
  284. BitstreamPutBit(bs, 0);
  285. pad--;
  286. if (pad > 0) {
  287. BitstreamPutBits(bs, (1 << pad) - 1, pad);
  288. }
  289.     }
  290. }
  291. #endif
  292. #endif /* _BITSTREAM_H_ */