Common.cpp
上传用户:lusi_8715
上传日期:2007-01-08
资源大小:199k
文件大小:5k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**************************************************************************************
  2.  *                                                                                    *
  3.  * This application contains code from OpenDivX and is released as a "Larger Work"    *
  4.  * under that license. Consistant with that license, this application is released     *
  5.  * under the GNU General Public License.                                              *
  6.  *                                                                                    *
  7.  * The OpenDivX license can be found at: http://www.projectmayo.com/opendivx/docs.php *
  8.  * The GPL can be found at: http://www.gnu.org/copyleft/gpl.html                      *
  9.  *                                                                                    *
  10.  * Authors: Damien Chavarria <roy204 at projectmayo.com>                              *
  11.  *                                                                                    *
  12.  **************************************************************************************/
  13. #include <stdlib.h>
  14. #include <signal.h>
  15. #include <sys/types.h>
  16. #include <sys/stat.h>
  17. #include <fcntl.h>
  18. #include "mpg123.h"
  19. struct parameter param = { 1 , 1 , 0 , 0 };
  20. int tabsel_123[2][3][16] = {
  21.    { {0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,},
  22.      {0,32,48,56, 64, 80, 96,112,128,160,192,224,256,320,384,},
  23.      {0,32,40,48, 56, 64, 80, 96,112,128,160,192,224,256,320,} },
  24.    { {0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,},
  25.      {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,},
  26.      {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,} }
  27. };
  28. long freqs[9] = { 44100, 48000, 32000,
  29.                   22050, 24000, 16000 ,
  30.                   11025 , 12000 , 8000 };
  31. int bitindex;
  32. uint8_t *wordpointer;
  33. uint8_t *pcm_sample;
  34. int pcm_point = 0;
  35. #define HDRCMPMASK 0xfffffd00
  36. /**
  37.  * decode a header and write the information
  38.  * into the frame structure
  39.  **/
  40. int head_check(unsigned long head)
  41. {
  42.   if ((head & 0xffe00000) != 0xffe00000)
  43.     return FALSE;
  44.   if (!((head >> 17) & 3))
  45.     return FALSE;
  46.   if (((head >> 12) & 0xf) == 0xf)
  47.     return FALSE;
  48.   if (!((head >> 12) & 0xf))
  49.     return FALSE;
  50.   if (((head >> 10) & 0x3) == 0x3)
  51.     return FALSE;
  52.   if (((head >> 19) & 1) == 1 && ((head >> 17) & 3) == 3 && ((head >> 16) & 1) == 1)
  53.     return FALSE;
  54.   if ((head & 0xffff0000) == 0xfffe0000)
  55.     return FALSE;
  56.   
  57.   return TRUE;
  58. }
  59. int decode_header(struct frame *fr,unsigned long newhead)
  60. {
  61. if( newhead & (1<<20) ) {
  62.   fr->lsf = (newhead & (1<<19)) ? 0x0 : 0x1;
  63.   fr->mpeg25 = 0;
  64. } else {
  65.   fr->lsf = 1;
  66.   fr->mpeg25 = 1;
  67. }
  68. fr->lay = 4-((newhead>>17)&3);
  69. if( ((newhead>>10)&0x3) == 0x3) {
  70.   
  71.   return -1;
  72. }
  73. if(fr->mpeg25) 
  74.   fr->sampling_frequency = 6 + ((newhead>>10)&0x3);
  75. else
  76.   fr->sampling_frequency = ((newhead>>10)&0x3) + (fr->lsf*3);
  77. fr->error_protection = ((newhead>>16)&0x1)^0x1;
  78. if(fr->mpeg25) /* allow Bitrate change for 2.5 ... */
  79. fr->bitrate_index = ((newhead>>12)&0xf);
  80. fr->bitrate_index = ((newhead>>12)&0xf);
  81. fr->padding   = ((newhead>>9)&0x1);
  82. fr->extension = ((newhead>>8)&0x1);
  83. fr->mode      = ((newhead>>6)&0x3);
  84. fr->mode_ext  = ((newhead>>4)&0x3);
  85. fr->copyright = ((newhead>>3)&0x1);
  86. fr->original  = ((newhead>>2)&0x1);
  87. fr->emphasis  = newhead & 0x3;
  88. fr->stereo    = (fr->mode == MPG_MD_MONO) ? 1 : 2;
  89. if(!fr->bitrate_index) {
  90.   return -1;
  91. }
  92. switch(fr->lay) {
  93. case 1:
  94. #if 0
  95. fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ? 
  96. (fr->mode_ext<<2)+4 : 32;
  97. #endif
  98. fr->framesize  = (long) tabsel_123[fr->lsf][0][fr->bitrate_index] * 12000;
  99. fr->framesize /= freqs[fr->sampling_frequency];
  100. fr->framesize  = ((fr->framesize+fr->padding)<<2)-4;
  101. break;
  102. case 2:
  103. #if 0
  104. fr->jsbound = (fr->mode == MPG_MD_JOINT_STEREO) ?
  105. (fr->mode_ext<<2)+4 : fr->II_sblimit;
  106. #endif
  107. fr->framesize = (long) tabsel_123[fr->lsf][1][fr->bitrate_index] * 144000;
  108. fr->framesize /= freqs[fr->sampling_frequency];
  109. fr->framesize += fr->padding - 4;
  110. break;
  111. case 3:
  112. #if 0
  113. fr->do_layer = do_layer3;
  114. if(fr->lsf)
  115. ssize = (fr->stereo == 1) ? 9 : 17;
  116. else
  117. ssize = (fr->stereo == 1) ? 17 : 32;
  118. #endif
  119. fr->framesize  = (long) tabsel_123[fr->lsf][2][fr->bitrate_index] * 144000;
  120. fr->framesize /= freqs[fr->sampling_frequency]<<(fr->lsf);
  121. fr->framesize = fr->framesize + fr->padding - 4;
  122. break; 
  123. default:
  124.   return -1;
  125. }
  126. return 0;
  127. }
  128. /**
  129.  *
  130.  **/
  131. uint32_t getbits (int number_of_bits)
  132. {
  133. uint32_t rval;
  134. if(!number_of_bits)
  135. return 0;
  136. rval = wordpointer[0];
  137. rval <<= 8;
  138. rval |= wordpointer[1];
  139. rval <<= 8;
  140. rval |= wordpointer[2];
  141. rval <<= bitindex;
  142. rval &= 0xffffff;
  143. bitindex += number_of_bits;
  144. rval >>= (24-number_of_bits);
  145. wordpointer += (bitindex>>3);
  146. bitindex &= 7;
  147. return rval;
  148. }
  149. /**
  150.  *
  151.  **/
  152. uint16_t getbits_fast (int number_of_bits)
  153. {
  154. uint16_t rval;
  155. rval = wordpointer[0];
  156. rval <<= 8;
  157. rval |= wordpointer[1];
  158. rval <<= bitindex;
  159. rval &= 0xffff;
  160. bitindex += number_of_bits;
  161. rval >>= (16-number_of_bits);
  162. wordpointer += (bitindex>>3);
  163. bitindex &= 7;
  164. return rval;
  165. }
  166. /**
  167.  *
  168.  **/
  169. uint8_t get1bit(void)
  170. {
  171. uint8_t rval;
  172. rval = *wordpointer << bitindex;
  173. bitindex++;
  174. wordpointer += (bitindex>>3);
  175. bitindex &= 7;
  176. return rval>>7;
  177. }