mhead.cpp
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:11k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #include "hlxclib/stdlib.h"
  36. #include "hlxclib/stdio.h"
  37. #include "hlxclib/float.h"
  38. #include "hlxclib/math.h"
  39. #include "hlxclib/string.h"
  40. #include "mhead.h"     /* mpeg header structure */
  41. static const int mp_br_table[2][16]=
  42.     {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,0,
  43.      0,32,48,56,64,80,96,112,128,160,192,224,256,320,384,0};
  44. static const int mp_sr20_table[2][4]={441,480,320,-999, 882,960,640,-999};
  45. static const int mp_br_tableL1[2][16]=
  46.     {0,32,48,56,64,80,96,112,128,144,160,176,192,224,256,0,    /* mpeg2 */
  47.      0,32,64,96,128,160,192,224,256,288,320,352,384,416,448,0};
  48. static const int mp_br_tableL3[2][16]=
  49.     {0,8,16,24,32,40,48,56,64,80,96,112,128,144,160,0,    /* mpeg 2 */
  50.      0,32,40,48,56,64,80,96,112,128,160,192,224,256,320,0};
  51. static int find_sync(unsigned char *buf, int n);
  52. static int sync_scan(unsigned char *buf, int n, int i0);
  53. static int sync_test(unsigned char *buf, int n, int isync, int padbytes);
  54. /*--------------------------------------------------------------*/
  55. int head_info(unsigned char *buf, unsigned int n, MPEG_HEAD *h, int trustFrame)
  56. {
  57. int framebytes;
  58. int mpeg25_flag;
  59. h->sync = 0;
  60. if( (buf[0] == 0xFF) && ((buf[1] & 0xF0) == 0xF0) ) {
  61.     mpeg25_flag = 0;            // mpeg 1 & 2
  62. }
  63. else if( (buf[0] == 0xFF) && ((buf[1] & 0xF0) == 0xE0) ) {
  64.     mpeg25_flag = 1;            // mpeg 2.5
  65. }
  66. else return 0;      // sync fail
  67. h->sync = 1;
  68. if( mpeg25_flag ) h->sync = 2; //low bit clear signals mpeg25 (as in 0xFFE)
  69. h->id         = (buf[1] & 0x08) >> 3;
  70. h->option     = (buf[1] & 0x06) >> 1;
  71. h->prot       = (buf[1] & 0x01);
  72. h->br_index   = (buf[2] & 0xf0) >> 4;
  73. h->sr_index   = (buf[2] & 0x0c) >> 2;
  74. h->pad        = (buf[2] & 0x02) >> 1;
  75. h->private_bit   = (buf[2] & 0x01);
  76. h->mode       = (buf[3] & 0xc0) >> 6;
  77. h->mode_ext   = (buf[3] & 0x30) >> 4;
  78. h->cr         = (buf[3] & 0x08) >> 3;
  79. h->original   = (buf[3] & 0x04) >> 2;
  80. h->emphasis   = (buf[3] & 0x03);
  81. //if( mpeg25_flag ) {
  82. //    if( h->sr_index == 2 ) return 0;   // fail 8khz
  83. //}
  84. /* Found a clip with a bad emphasis value.  Let this slide for now */
  85. /*if (h->emphasis == 2)
  86.     return 0;
  87. */
  88. /* do some error checking */
  89. if (h->br_index == 0xFF ||
  90.     h->sr_index == 3 ||
  91.     h->option < 1 ||
  92.     h->option > 3)
  93. {
  94.     memset(h, 0, sizeof(*h));
  95.     return 0;
  96. }
  97. framebytes = 0;
  98. if( h->br_index > 0 )
  99. {
  100.   if( h->option == 3 ) {    /* layer I */
  101.     framebytes =
  102.     240 *  mp_br_tableL1[h->id][h->br_index]
  103.               /mp_sr20_table[h->id][h->sr_index];
  104.     framebytes = 4*framebytes;
  105.   }
  106.   else if( h->option == 2 ) {     /* layer II */
  107.     framebytes =
  108.     2880 * mp_br_table[h->id][h->br_index]
  109.           /mp_sr20_table[h->id][h->sr_index];
  110.   }
  111.   else if( h->option == 1 ) {     /* layer III */
  112.     if( h->id )  {       // mpeg1
  113.             framebytes =
  114.                 2880 * mp_br_tableL3[h->id][h->br_index]
  115.                          / mp_sr20_table[h->id][h->sr_index];
  116.     }
  117.     else  {              // mpeg2
  118.         if( mpeg25_flag ) {     // mpeg2.2
  119.             framebytes =
  120.                 2880 *  mp_br_tableL3[h->id][h->br_index]
  121.                           / mp_sr20_table[h->id][h->sr_index];
  122.         }
  123.         else {
  124.             framebytes =
  125.                 1440 *  mp_br_tableL3[h->id][h->br_index]
  126.                         / mp_sr20_table[h->id][h->sr_index];
  127.         }
  128.     }
  129.   }
  130. }
  131. else
  132. {
  133.     framebytes = find_sync(buf, n);    /* free format */
  134.     // If trustFrame != 0, that means we know that we only
  135.     // have valid frames in this buffer (i.e. - we know
  136.     // we are being called from the renderer where our
  137.     // fileformat has already parsed out the frames).
  138.     // Therefore, if find_sync() did not find any frames
  139.     // and trustFrame != 0, then accept the rest of the buffer
  140.     // as valid.
  141.     if (framebytes == 0 && trustFrame != 0)
  142.     {
  143.         // Accept the rest of the buffer as a frame
  144.         framebytes = n - h->pad;
  145.     }
  146.     // The spec states "The decoder is also not required to support bitrates
  147.     // higher than 448 kbits/s, 384 kbits/sec, 320 kbits/sec in respect to Layer I,
  148.     // II, and III when in free format mode."
  149.     if (framebytes)
  150.     {
  151.         // Compute the bitrate
  152.         int lBitrate = 0;
  153.         if(h->option == 1)
  154.         {
  155.             /* layer III */
  156.             if (h->br_index > 0)
  157.                 lBitrate = 1000 * mp_br_tableL3[h->id][h->br_index];
  158.             else
  159.             {
  160.                 if(h->id) // mpeg1
  161.                     lBitrate = 1000 * framebytes * mp_sr20_table[h->id][h->sr_index]/(144*20);
  162.                 else
  163.                 {
  164.                     // mpeg2
  165.                     if((h->sync & 1) == 0) //  flags mpeg25
  166.                         lBitrate = 500*framebytes*mp_sr20_table[h->id][h->sr_index]/(72*20);
  167.                     else
  168.                         lBitrate = 1000*framebytes*mp_sr20_table[h->id][h->sr_index]/(72*20);
  169.                 }
  170.             }
  171.             // Cap the bitrate
  172.             if (lBitrate > 320000 || lBitrate < 0) framebytes = 0;
  173.         }
  174.         if (h->option == 2)
  175.         {
  176.             /* layer II */
  177.             if (h->br_index > 0)
  178.                 lBitrate = 1000*mp_br_table[h->id][h->br_index];
  179.             else
  180.                 lBitrate = 1000*framebytes*mp_sr20_table[h->id][h->sr_index] / (144*20);
  181.             // Cap the bitrate
  182.             if (lBitrate > 384000 || lBitrate < 0) framebytes = 0;
  183.         }
  184.         if (h->option == 3)
  185.         {
  186.             /* layer I */
  187.             if(h->br_index > 0)
  188.                 lBitrate = 1000 * mp_br_tableL1[h->id][h->br_index];
  189.             else
  190.                 lBitrate = 1000*framebytes*mp_sr20_table[h->id][h->sr_index] / (48*20);
  191.             // Cap the bitrate
  192.             if (lBitrate > 448000 || lBitrate < 0) framebytes = 0;
  193.         }
  194.     }
  195. }
  196. return framebytes;
  197. }
  198. /*--------------------------------------------------------------*/
  199. int head_info2(unsigned char *buf, unsigned int n, MPEG_HEAD *h, int *br, int trustFrame)
  200. {
  201. int framebytes;
  202. /*---  return br (in bits/sec) in addition to frame bytes ---*/
  203. *br = 0;         /*-- assume fail --*/
  204. framebytes =  head_info(buf, n, h, trustFrame);
  205. if( framebytes == 0 ) return 0;
  206. if( h->option == 1 ) {     /* layer III */
  207.     if( h->br_index > 0 )
  208.              *br = 1000*mp_br_tableL3[h->id][h->br_index];
  209.     else {
  210.         if( h->id )   // mpeg1
  211.         *br = 1000*framebytes*mp_sr20_table[h->id][h->sr_index]/(144*20);
  212.         else  {        // mpeg2
  213.             if( (h->sync & 1) == 0 )    //  flags mpeg25
  214.                 *br = 500*framebytes*mp_sr20_table[h->id][h->sr_index]/(72*20);
  215.             else
  216.                 *br = 1000*framebytes*mp_sr20_table[h->id][h->sr_index]/(72*20);
  217.         }
  218.     }
  219. }
  220. if( h->option == 2 ) {     /* layer II */
  221.     if( h->br_index > 0 )
  222.              *br = 1000*mp_br_table[h->id][h->br_index];
  223.     else  *br = 1000*framebytes*mp_sr20_table[h->id][h->sr_index]
  224.                        / (144*20);
  225. }
  226. if( h->option == 3 ) {    /* layer I */
  227.     if( h->br_index > 0 )
  228.              *br = 1000*mp_br_tableL1[h->id][h->br_index];
  229.     else  *br = 1000*framebytes*mp_sr20_table[h->id][h->sr_index]
  230.                        / (48*20);
  231. }
  232. return framebytes;
  233. }
  234. /*--------------------------------------------------------------*/
  235. static int compare( unsigned char *buf, unsigned char *buf2)
  236. {
  237. if( buf[0] != buf2[0] )  return 0;
  238. if( buf[1] != buf2[1] )  return 0;
  239. return 1;
  240. }
  241. /*----------------------------------------------------------*/
  242. /*-- does not scan for initial sync, initial sync assumed --*/
  243. static int find_sync(unsigned char *buf, int n)
  244. {
  245. int i0, isync, nmatch, pad;
  246. int padbytes, option;
  247. /* mod 4/12/95 i0 change from 72, allows as low as 8kbits for mpeg1 */
  248. i0 = 24;
  249. padbytes = 1;
  250. option = (buf[1] & 0x06) >> 1;
  251. if( option == 3 )  {
  252.    padbytes = 4;
  253.    i0 = 24;            /* for shorter layer I frames */
  254.    }
  255. pad  = (buf[2] & 0x02) >> 1;
  256. n -= 3;             /*  need 3 bytes of header  */
  257. while( i0 < 2000 ) {
  258.   isync = sync_scan(buf, n, i0);
  259.   i0 = isync +1;
  260.   isync -= pad;
  261.   if( isync <= 0 ) return 0;
  262.   nmatch = sync_test(buf, n, isync, padbytes);
  263.   if( nmatch > 0 ) return isync;
  264.   }
  265. return 0;
  266. }
  267. /*------------------------------------------------------*/
  268. /*---- scan for next sync, assume start is valid -------*/
  269. /*---- return number bytes to next sync ----------------*/
  270. static int sync_scan(unsigned char *buf, int n, int i0)
  271. {
  272. int i;
  273. for(i=i0; i<n; i++)
  274.     if( compare(buf, buf+i) ) return i;
  275. return 0;
  276. }
  277. /*------------------------------------------------------*/
  278. /*- test consecutative syncs, input isync without pad --*/
  279. static int sync_test(unsigned char *buf, int n, int isync, int padbytes)
  280. {
  281. int i, nmatch, pad;
  282. nmatch = 0;
  283. for(i=0; ; ) {
  284.     pad  = padbytes*( (buf[i+2] & 0x02) >> 1);
  285.     i += (pad + isync);
  286.     if( i > n ) break;
  287.     if( !compare(buf,buf+i) ) return -nmatch;
  288.     nmatch++;
  289. }
  290. return nmatch;
  291. }