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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*====================================================================*/
  2. /*         MPEG-4 Audio (ISO/IEC 14496-3) Copyright Header            */
  3. /*====================================================================*/
  4. /*
  5. This software module was originally developed by Rakesh Taori and Andy
  6. Gerrits (Philips Research Laboratories, Eindhoven, The Netherlands) in
  7. the course of development of the MPEG-4 Audio (ISO/IEC 14496-3). This
  8. software module is an implementation of a part of one or more MPEG-4
  9. Audio (ISO/IEC 14496-3) tools as specified by the MPEG-4 Audio
  10. (ISO/IEC 14496-3). ISO/IEC gives users of the MPEG-4 Audio (ISO/IEC
  11. 14496-3) free license to this software module or modifications thereof
  12. for use in hardware or software products claiming conformance to the
  13. MPEG-4 Audio (ISO/IEC 14496-3). Those intending to use this software
  14. module in hardware or software products are advised that its use may
  15. infringe existing patents. The original developer of this software
  16. module and his/her company, the subsequent editors and their
  17. companies, and ISO/IEC have no liability for use of this software
  18. module or modifications thereof in an implementation. Copyright is not
  19. released for non MPEG-4 Audio (ISO/IEC 14496-3) conforming products.
  20. CN1 retains full right to use the code for his/her own purpose, assign
  21. or donate the code to a third party and to inhibit third parties from
  22. using the code for non MPEG-4 Audio (ISO/IEC 14496-3) conforming
  23. products.  This copyright notice must be included in all copies or
  24. derivative works. Copyright 1996.
  25. */
  26. /*====================================================================*/
  27. /*======================================================================*/
  28. /*                                                                      */
  29. /*      INCLUDE_FILE:   PHI_FBIT.C                                      */
  30. /*      PACKAGE:        WDBxx                                           */
  31. /*      COMPONENT:      Frame bit allocation table                      */
  32. /*                                                                      */
  33. /*======================================================================*/
  34. #include <stdio.h>
  35. #include <stdlib.h>
  36. #include <malloc.h> 
  37. #include "buffersHandle.h"       /* handler, defines, enums */
  38. #include "phi_fbit.h"
  39. #include "phi_cons.h"
  40. #include "bitstream.h"
  41. #include "lpc_common.h"
  42. #include "nec_abs_const.h"
  43. #include "pan_celp_const.h"
  44. /*======================================================================*/
  45. /* Function Definition: PHI_init_bit_allocation                         */
  46. /*======================================================================*/
  47. long  * PHI_init_bit_allocation(
  48.     const long SampleRateMode,        /* In: SampleRate Mode           */
  49.     const long RPE_configuration,     /* In: Bit Rate Configuration    */
  50.     const long QuantizationMode,      /* In: Type of Quantization      */
  51.     const long LosslessCodingMode,    /* In: Lossless Coding Mode      */   
  52.     const long FineRateControl,       /* In: FRC flag                  */
  53.     const long num_lpc_indices,       /* In: Number of LPC indices     */  
  54.     const long n_subframes,           /* In: Number of subframes       */
  55.     const long num_shape_cbks,        /* In: Number of Shape Codebooks */
  56.     const long num_gain_cbks          /* In: Number of Gain Codebooks  */
  57. )
  58. {
  59.     long *frame_bit_allocation;
  60.     long allocation_length = 2 + num_lpc_indices + (num_shape_cbks + num_gain_cbks) *n_subframes;
  61.     long k;
  62.     long index = 0;
  63.     
  64.     /* -----------------------------------------------------------------*/
  65.     /* Create bit allocation                                            */
  66.     /* -----------------------------------------------------------------*/
  67.     if
  68.     (
  69.      (( frame_bit_allocation = (long *)malloc((unsigned int)allocation_length * sizeof(long))) == NULL ) 
  70.     )
  71.     {
  72.         fprintf(stderr, "MALLOC FAILURE in PHI_init_bit_allocationn");
  73.         exit(1);
  74.     }
  75.     /* -----------------------------------------------------------------*/
  76.     /* Allocate header                                                  */
  77.     /* -----------------------------------------------------------------*/
  78.     if (FineRateControl == ON)
  79.     {
  80. frame_bit_allocation[index++] = 1;   /* Interpolation flag */
  81. frame_bit_allocation[index++] = 1;   /* send_lpc_flag */
  82.     }
  83.     else
  84.     {
  85. frame_bit_allocation[index++] = 0;   /* Interpolation flag */
  86. frame_bit_allocation[index++] = 0;   /* send_lpc_flag */
  87.     }
  88.     
  89.     /* -----------------------------------------------------------------*/
  90.     /* Allocate LPC_codes                                               */
  91.     /* -----------------------------------------------------------------*/
  92.     if (SampleRateMode == fs8kHz)
  93.     {
  94. frame_bit_allocation[index++] = PAN_BIT_LSP22_0;
  95. frame_bit_allocation[index++] = PAN_BIT_LSP22_1;
  96. frame_bit_allocation[index++] = PAN_BIT_LSP22_2;
  97. frame_bit_allocation[index++] = PAN_BIT_LSP22_3;
  98. frame_bit_allocation[index++] = PAN_BIT_LSP22_4;                    
  99.     }
  100.     if (SampleRateMode == fs16kHz)
  101.     {
  102. frame_bit_allocation[index++] = PAN_BIT_LSP_WL_0;
  103. frame_bit_allocation[index++] = PAN_BIT_LSP_WL_1;
  104. frame_bit_allocation[index++] = PAN_BIT_LSP_WL_2;
  105. frame_bit_allocation[index++] = PAN_BIT_LSP_WL_3;
  106. frame_bit_allocation[index++] = PAN_BIT_LSP_WL_4;
  107. frame_bit_allocation[index++] = PAN_BIT_LSP_WU_0;
  108. frame_bit_allocation[index++] = PAN_BIT_LSP_WU_1;
  109. frame_bit_allocation[index++] = PAN_BIT_LSP_WU_2;
  110. frame_bit_allocation[index++] = PAN_BIT_LSP_WU_3;
  111. frame_bit_allocation[index++] = PAN_BIT_LSP_WU_4;
  112.     }
  113.     /* -----------------------------------------------------------------*/
  114.     /* Allocate Excitation parameters                                   */
  115.     /* -----------------------------------------------------------------*/
  116.     /* -----------------------------------------------------------------*/
  117.     /* Allocate Anchor                                                  */
  118.     /* -----------------------------------------------------------------*/
  119.     if ((RPE_configuration == 0) || (RPE_configuration == 1))
  120.     {
  121.      frame_bit_allocation[index++] = 8;
  122.      frame_bit_allocation[index++] = 11;
  123.      frame_bit_allocation[index++] = 6;
  124.      frame_bit_allocation[index++] = 5;
  125.     }
  126.     
  127.     if ((RPE_configuration == 2) || (RPE_configuration == 3))
  128.     {
  129.      frame_bit_allocation[index++] = 8;
  130.      frame_bit_allocation[index++] = 12;
  131.      frame_bit_allocation[index++] = 6;
  132.      frame_bit_allocation[index++] = 5;
  133.     }
  134.     
  135.     /* -----------------------------------------------------------------*/
  136.     /* Allocate Update                                                  */
  137.     /* -----------------------------------------------------------------*/
  138.     for (k = 1; k < n_subframes; k++)
  139.     {
  140. if ((RPE_configuration == 0) || (RPE_configuration == 1))
  141.      {
  142.      frame_bit_allocation[index++] = 8;
  143.      frame_bit_allocation[index++] = 11;
  144.      frame_bit_allocation[index++] = 6;
  145.      frame_bit_allocation[index++] = 3;
  146. }
  147. if ((RPE_configuration == 2) || (RPE_configuration == 3))
  148. {
  149. frame_bit_allocation[index++] = 8;
  150. frame_bit_allocation[index++] = 12;
  151. frame_bit_allocation[index++] = 6;
  152. frame_bit_allocation[index++] = 3;
  153. }
  154.     }
  155.     /* -----------------------------------------------------------------*/
  156.     /* Check if allocation table has the correct length                 */
  157.     /* -----------------------------------------------------------------*/
  158.     if (index != allocation_length)
  159.     {
  160.         fprintf(stderr, "Unable to create the correct allocation bit map %ld %ldn", index, allocation_length);
  161.         exit(0);
  162.     }
  163.         
  164.     return (frame_bit_allocation);
  165. }
  166. /*======================================================================*/
  167. /* Function Definition: PHI_free_bit_allocation                         */
  168. /*======================================================================*/
  169. void PHI_free_bit_allocation(
  170.     long  *frame_bit_allocation
  171. )
  172. {
  173.     free(frame_bit_allocation);
  174. }