adif.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /************************* MPEG-2 NBC Audio Decoder **************************
  2.  *                                                                           *
  3.  "This software module was originally developed by 
  4.  Fraunhofer Gesellschaft IIS / University of Erlangen (UER) in the course of 
  5.  development of the MPEG-2 NBC/MPEG-4 Audio standard ISO/IEC 13818-7, 
  6.  14496-1,2 and 3. This software module is an implementation of a part of one or more 
  7.  MPEG-2 NBC/MPEG-4 Audio tools as specified by the MPEG-2 NBC/MPEG-4 
  8.  Audio standard. ISO/IEC  gives users of the MPEG-2 NBC/MPEG-4 Audio 
  9.  standards free license to this software module or modifications thereof for use in 
  10.  hardware or software products claiming conformance to the MPEG-2 NBC/MPEG-4
  11.  Audio standards. Those intending to use this software module in hardware or 
  12.  software products are advised that this use may infringe existing patents. 
  13.  The original developer of this software module and his/her company, the subsequent 
  14.  editors and their companies, and ISO/IEC have no liability for use of this software 
  15.  module or modifications thereof in an implementation. Copyright is not released for 
  16.  non MPEG-2 NBC/MPEG-4 Audio conforming products.The original developer
  17.  retains full right to use the code for his/her  own purpose, assign or donate the 
  18.  code to a third party and to inhibit third party from using the code for non 
  19.  MPEG-2 NBC/MPEG-4 Audio conforming products. This copyright notice must
  20.  be included in all copies or derivative works." 
  21.  Copyright(c)1996.
  22.  *                                                                           *
  23.  ****************************************************************************/
  24. /* CREATED BY :  Eric Allamanche -- 990112  */
  25. /* ADIF header Parser for AAC raw bitstreams (only basic functionalities) */
  26. /* Note: only front channel elements are decoded */
  27. #include <stdio.h>
  28. #include <string.h>
  29. #include "buffersHandle.h"       /* handler, defines, enums */
  30. #include "bitstreamStruct.h"     /* structs */
  31. #include "adif.h"
  32. #include "common_m4a.h"
  33. static const int samplingRateTable[] = { 96000,
  34.                                          88200,
  35.                                          64000,
  36.                                          48000,
  37.                                          44100,
  38.                                          32000,
  39.                                          24000,
  40.                                          22050,
  41.                                          16000,
  42.                                          12000,
  43.                                          11025,
  44.                                           8000};
  45. static int  GetSamplingRate( int index )
  46. {
  47.   if ( (index < 0) || 
  48.        (index > (int) (sizeof(samplingRateTable)/sizeof(samplingRateTable[0]))) )
  49.     return 0;
  50.   else
  51.     return samplingRateTable[index];
  52. }
  53. static int CheckProfile( int profile )
  54. {
  55.   if ( (profile < 0) || (profile > 2))
  56.     return 1;
  57.   else
  58.     return 0;
  59. }
  60. static void GetProgConfig( BsBitStream* bitstream, ADIF_INFO* adifInfo )
  61. {
  62.   
  63.   unsigned long data;
  64.   int i, tmp;
  65.   /* Instance Tag */
  66.   BsGetBit( bitstream, &data, 4 );
  67.  
  68.  
  69.   /* profile */
  70.   BsGetBit( bitstream, &data, 2 );
  71.   tmp = (int)data;
  72.   if ( CheckProfile(tmp) )
  73.     CommonExit(1,"Illegal profile");
  74.   adifInfo->profile = tmp;
  75.   /* Sampling frequency index */
  76.   BsGetBit( bitstream, &data, 4 );
  77.   tmp = GetSamplingRate((int)data); 
  78.   if ( !tmp )
  79.     CommonExit(1,"Illegal frequency index");
  80.   adifInfo->samplingRate = tmp;
  81.   /* number of front channel elements: 
  82.      only one element (SCE or CPE) is supported */
  83.   BsGetBit( bitstream, &data, 4 );
  84.   if ( data != 1)
  85.     CommonExit(1,"Unsupported number of front channels");
  86.   /* number of side channel elements (not supported) */
  87.   BsGetBit( bitstream, &data, 4 );
  88.   if ( data )
  89.     CommonExit(1,"Unsupported channel element");    
  90.   /* number of back channel elements (not supported) */
  91.   BsGetBit( bitstream, &data, 4 );
  92.   if ( data )
  93.     CommonExit(1,"Unsupported channel element");    
  94.   
  95.   /* number of LFE channel elements (not supported) */
  96.   BsGetBit( bitstream, &data, 2 );
  97.   if ( data )
  98.     CommonExit(1,"Unsupported channel element");    
  99.   
  100.   /* number of data elements (not supported) */
  101.   BsGetBit( bitstream, &data, 3 );
  102.   if ( data )
  103.     CommonExit(1,"Unsupported channel element");    
  104.   
  105.   /* number of coupling channel elements (not supported) */
  106.   BsGetBit( bitstream, &data, 4 );
  107.   if ( data )
  108.     CommonExit(1,"Unsupported channel element");    
  109.   
  110.   /* mono mixdown present */
  111.   BsGetBit( bitstream, &data, 1 );
  112.   if ( data )
  113.     BsGetBit( bitstream, &data, 4 );
  114.   /* stereo mixdown present */
  115.   BsGetBit( bitstream, &data, 1 );
  116.   if ( data )
  117.     BsGetBit( bitstream, &data, 4 );
  118.   /* matrix mixdown index present */
  119.   BsGetBit( bitstream, &data, 1 );
  120.   if ( data ) {
  121.     BsGetBit( bitstream, &data, 2 );
  122.     BsGetBit( bitstream, &data, 1 );
  123.   }
  124.   /* we only have to parse one front channel element */
  125.   BsGetBit( bitstream, &data, 1 );
  126.   if ( !data )
  127.     adifInfo->numChannels = 1; /* single channel */
  128.   else 
  129.     adifInfo->numChannels = 2; /* channel pair */
  130.   /* instance tag */
  131.   BsGetBit( bitstream, &data, 4 );
  132.   adifInfo->elementTag = (int)data;
  133.   /* The other channel elements should be parsed here !! */
  134.   /* byte allignment */
  135.   data = BsCurrentBit( bitstream );
  136.   tmp = ((int)data)%8;
  137.   if ( tmp )
  138.     BsGetSkip( bitstream, 8 - tmp );
  139.   /* Comment field */
  140.   BsGetBit( bitstream, &data, 8 );
  141.   tmp = (int)data;
  142.   for (i=0; i<tmp; i++) {
  143.     BsGetBit( bitstream, &data, 8 );
  144.     adifInfo->commentField[i] = (char)data;
  145.   }
  146.   adifInfo->commentField[i] = '';
  147. }
  148. int GetAdifHeader( BsBitStream* bitstream, ADIF_INFO* adifInfo )
  149. {
  150.   int i;
  151.   int ADIF_present = 0;
  152.   unsigned long data;
  153.   BsBitBuffer* bitBuffer;
  154.   const char ADIF_ID[] = "ADIF";
  155.   const int ADIF_ID_LEN = 32;
  156.   bitBuffer = BsAllocBuffer( ADIF_ID_LEN );
  157.   /* Check if ADIF ID is present */
  158.   BsGetBufferAhead( bitstream, bitBuffer, ADIF_ID_LEN );
  159.   if ( !strncmp( (char*)bitBuffer->data, ADIF_ID, strlen(ADIF_ID))) {
  160.     /* skip ADIF_ID from bitstream */
  161.     BsGetSkip( bitstream, ADIF_ID_LEN );
  162.     /* copyright_id_present bit */
  163.     BsGetBit( bitstream, &data, 1);
  164.     i = 0;
  165.     if( data ) {
  166.       while (i<9) {
  167.         BsGetBit( bitstream, &data, 8 );
  168.         adifInfo->copyrightId[i++] = (char)data;
  169.       }
  170.     }
  171.     
  172.     adifInfo->copyrightId[i] = '';
  173.     /* original_copy bit */
  174.     BsGetBit( bitstream, &data, 1);
  175.     adifInfo->origCopy = (int)data;
  176.     
  177.     /* home bit */
  178.     BsGetBit( bitstream, &data, 1);
  179.     adifInfo->home = (int)data;
  180.     /* bitstream_type bit (0: constant rate, 1: variable rate) */
  181.     BsGetBit( bitstream, &data, 1);
  182.     adifInfo->varRateOn = (int)data;
  183.     /* bitrate */
  184.     BsGetBit( bitstream, &data, 23 );
  185.     adifInfo->bitrate = (int)data;
  186.     /* num_pce's */
  187.     BsGetBit( bitstream, &data, 4 );
  188.     if ( data )
  189.       CommonExit(1, "Only one PCE supported");
  190.     /* buffer fullness */
  191.     if ( !adifInfo->varRateOn ) {
  192.       BsGetBit( bitstream, &data, 20);
  193.       adifInfo->bitresFullnes = (int)data;
  194.     }
  195.     /* parse program config element */
  196.     GetProgConfig( bitstream, adifInfo );
  197.     ADIF_present = 1;
  198.   }
  199.   BsFreeBuffer( bitBuffer );
  200.   return ADIF_present;
  201. }