mp4.c
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:9k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. /*
  2. ** FAAD2 - Freeware Advanced Audio (AAC) Decoder including SBR decoding
  3. ** Copyright (C) 2003-2005 M. Bakker, Ahead Software AG, http://www.nero.com
  4. **  
  5. ** This program is free software; you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation; either version 2 of the License, or
  8. ** (at your option) any later version.
  9. ** 
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ** GNU General Public License for more details.
  14. ** 
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program; if not, write to the Free Software 
  17. ** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. **
  19. ** Any non-GPL usage of this software or parts of this software is strictly
  20. ** forbidden.
  21. **
  22. ** Software using this code must display the following message visibly in the
  23. ** software:
  24. ** "FAAD2 AAC/HE-AAC/HE-AACv2/DRM decoder (c) Ahead Software, www.nero.com"
  25. ** in, for example, the about-box or help/startup screen.
  26. **
  27. ** Commercial non-GPL licensing of this software is possible.
  28. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com.
  29. **
  30. ** $Id: mp4.c,v 1.3 2005/11/01 21:41:43 gabest Exp $
  31. **/
  32. #include "common.h"
  33. #include "structs.h"
  34. #include <stdlib.h>
  35. #include "bits.h"
  36. #include "mp4.h"
  37. #include "syntax.h"
  38. /* defines if an object type can be decoded by this library or not */
  39. static uint8_t ObjectTypesTable[32] = {
  40.     0, /*  0 NULL */
  41. #ifdef MAIN_DEC
  42.     1, /*  1 AAC Main */
  43. #else
  44.     0, /*  1 AAC Main */
  45. #endif
  46.     1, /*  2 AAC LC */
  47. #ifdef SSR_DEC
  48.     1, /*  3 AAC SSR */
  49. #else
  50.     0, /*  3 AAC SSR */
  51. #endif
  52. #ifdef LTP_DEC
  53.     1, /*  4 AAC LTP */
  54. #else
  55.     0, /*  4 AAC LTP */
  56. #endif
  57. #ifdef SBR_DEC
  58.     1, /*  5 SBR */
  59. #else
  60.     0, /*  5 SBR */
  61. #endif
  62.     0, /*  6 AAC Scalable */
  63.     0, /*  7 TwinVQ */
  64.     0, /*  8 CELP */
  65.     0, /*  9 HVXC */
  66.     0, /* 10 Reserved */
  67.     0, /* 11 Reserved */
  68.     0, /* 12 TTSI */
  69.     0, /* 13 Main synthetic */
  70.     0, /* 14 Wavetable synthesis */
  71.     0, /* 15 General MIDI */
  72.     0, /* 16 Algorithmic Synthesis and Audio FX */
  73.     /* MPEG-4 Version 2 */
  74. #ifdef ERROR_RESILIENCE
  75.     1, /* 17 ER AAC LC */
  76.     0, /* 18 (Reserved) */
  77. #ifdef LTP_DEC
  78.     1, /* 19 ER AAC LTP */
  79. #else
  80.     0, /* 19 ER AAC LTP */
  81. #endif
  82.     0, /* 20 ER AAC scalable */
  83.     0, /* 21 ER TwinVQ */
  84.     0, /* 22 ER BSAC */
  85. #ifdef LD_DEC
  86.     1, /* 23 ER AAC LD */
  87. #else
  88.     0, /* 23 ER AAC LD */
  89. #endif
  90.     0, /* 24 ER CELP */
  91.     0, /* 25 ER HVXC */
  92.     0, /* 26 ER HILN */
  93.     0, /* 27 ER Parametric */
  94. #else /* No ER defined */
  95.     0, /* 17 ER AAC LC */
  96.     0, /* 18 (Reserved) */
  97.     0, /* 19 ER AAC LTP */
  98.     0, /* 20 ER AAC scalable */
  99.     0, /* 21 ER TwinVQ */
  100.     0, /* 22 ER BSAC */
  101.     0, /* 23 ER AAC LD */
  102.     0, /* 24 ER CELP */
  103.     0, /* 25 ER HVXC */
  104.     0, /* 26 ER HILN */
  105.     0, /* 27 ER Parametric */
  106. #endif
  107.     0, /* 28 (Reserved) */
  108.     0, /* 29 (Reserved) */
  109.     0, /* 30 (Reserved) */
  110.     0  /* 31 (Reserved) */
  111. };
  112. /* Table 1.6.1 */
  113. int8_t NEAACDECAPI NeAACDecAudioSpecificConfig(uint8_t *pBuffer,
  114.                                                uint32_t buffer_size,
  115.                                                mp4AudioSpecificConfig *mp4ASC)
  116. {
  117.     return AudioSpecificConfig2(pBuffer, buffer_size, mp4ASC, NULL);
  118. }
  119. int8_t AudioSpecificConfig2(uint8_t *pBuffer,
  120.                             uint32_t buffer_size,
  121.                             mp4AudioSpecificConfig *mp4ASC,
  122.                             program_config *pce)
  123. {
  124.     bitfile ld;
  125.     int8_t result = 0;
  126. #ifdef SBR_DEC
  127.     int8_t bits_to_decode = 0;
  128. #endif
  129.     if (pBuffer == NULL)
  130.         return -7;
  131.     if (mp4ASC == NULL)
  132.         return -8;
  133.     memset(mp4ASC, 0, sizeof(mp4AudioSpecificConfig));
  134.     faad_initbits(&ld, pBuffer, buffer_size);
  135.     faad_byte_align(&ld);
  136.     mp4ASC->objectTypeIndex = (uint8_t)faad_getbits(&ld, 5
  137.         DEBUGVAR(1,1,"parse_audio_decoder_specific_info(): ObjectTypeIndex"));
  138.     mp4ASC->samplingFrequencyIndex = (uint8_t)faad_getbits(&ld, 4
  139.         DEBUGVAR(1,2,"parse_audio_decoder_specific_info(): SamplingFrequencyIndex"));
  140.     mp4ASC->channelsConfiguration = (uint8_t)faad_getbits(&ld, 4
  141.         DEBUGVAR(1,3,"parse_audio_decoder_specific_info(): ChannelsConfiguration"));
  142.     mp4ASC->samplingFrequency = get_sample_rate(mp4ASC->samplingFrequencyIndex);
  143.     if (ObjectTypesTable[mp4ASC->objectTypeIndex] != 1)
  144.     {
  145.         faad_endbits(&ld);
  146.         return -1;
  147.     }
  148.     if (mp4ASC->samplingFrequency == 0)
  149.     {
  150.         faad_endbits(&ld);
  151.         return -2;
  152.     }
  153.     if (mp4ASC->channelsConfiguration > 7)
  154.     {
  155.         faad_endbits(&ld);
  156.         return -3;
  157.     }
  158. #if (defined(PS_DEC) || defined(DRM_PS))
  159.     /* check if we have a mono file */
  160.     if (mp4ASC->channelsConfiguration == 1)
  161.     {
  162.         /* upMatrix to 2 channels for implicit signalling of PS */
  163.         mp4ASC->channelsConfiguration = 2;
  164.     }
  165. #endif
  166. #ifdef SBR_DEC
  167.     mp4ASC->sbr_present_flag = -1;
  168.     if (mp4ASC->objectTypeIndex == 5)
  169.     {
  170.         uint8_t tmp;
  171.         mp4ASC->sbr_present_flag = 1;
  172.         tmp = (uint8_t)faad_getbits(&ld, 4
  173.             DEBUGVAR(1,5,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex"));
  174.         /* check for downsampled SBR */
  175.         if (tmp == mp4ASC->samplingFrequencyIndex)
  176.             mp4ASC->downSampledSBR = 1;
  177.         mp4ASC->samplingFrequencyIndex = tmp;
  178.         if (mp4ASC->samplingFrequencyIndex == 15)
  179.         {
  180.             mp4ASC->samplingFrequency = (uint32_t)faad_getbits(&ld, 24
  181.                 DEBUGVAR(1,6,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex"));
  182.         } else {
  183.             mp4ASC->samplingFrequency = get_sample_rate(mp4ASC->samplingFrequencyIndex);
  184.         }
  185.         mp4ASC->objectTypeIndex = (uint8_t)faad_getbits(&ld, 5
  186.             DEBUGVAR(1,7,"parse_audio_decoder_specific_info(): ObjectTypeIndex"));
  187.     }
  188. #endif
  189.     /* get GASpecificConfig */
  190.     if (mp4ASC->objectTypeIndex == 1 || mp4ASC->objectTypeIndex == 2 ||
  191.         mp4ASC->objectTypeIndex == 3 || mp4ASC->objectTypeIndex == 4 ||
  192.         mp4ASC->objectTypeIndex == 6 || mp4ASC->objectTypeIndex == 7)
  193.     {
  194.         result = GASpecificConfig(&ld, mp4ASC, pce);
  195. #ifdef ERROR_RESILIENCE
  196.     } else if (mp4ASC->objectTypeIndex >= ER_OBJECT_START) { /* ER */
  197.         result = GASpecificConfig(&ld, mp4ASC, pce);
  198.         mp4ASC->epConfig = (uint8_t)faad_getbits(&ld, 2
  199.             DEBUGVAR(1,143,"parse_audio_decoder_specific_info(): epConfig"));
  200.         if (mp4ASC->epConfig != 0)
  201.             result = -5;
  202. #endif
  203.     } else {
  204.         result = -4;
  205.     }
  206. #ifdef SSR_DEC
  207.     /* shorter frames not allowed for SSR */
  208.     if ((mp4ASC->objectTypeIndex == 4) && mp4ASC->frameLengthFlag)
  209.         return -6;
  210. #endif
  211. #ifdef SBR_DEC
  212.     bits_to_decode = (int8_t)(buffer_size*8 - faad_get_processed_bits(&ld));
  213.     if ((mp4ASC->objectTypeIndex != 5) && (bits_to_decode >= 16))
  214.     {
  215.         int16_t syncExtensionType = (int16_t)faad_getbits(&ld, 11
  216.             DEBUGVAR(1,9,"parse_audio_decoder_specific_info(): syncExtensionType"));
  217.         if (syncExtensionType == 0x2b7)
  218.         {
  219.             mp4ASC->objectTypeIndex = (uint8_t)faad_getbits(&ld, 5
  220.                 DEBUGVAR(1,10,"parse_audio_decoder_specific_info(): extensionAudioObjectType"));
  221.             if (mp4ASC->objectTypeIndex == 5)
  222.             {
  223.                 mp4ASC->sbr_present_flag = (uint8_t)faad_get1bit(&ld
  224.                     DEBUGVAR(1,11,"parse_audio_decoder_specific_info(): sbr_present_flag"));
  225.                 if (mp4ASC->sbr_present_flag)
  226.                 {
  227.                     uint8_t tmp;
  228.                     tmp = (uint8_t)faad_getbits(&ld, 4
  229.                         DEBUGVAR(1,12,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex"));
  230.                     /* check for downsampled SBR */
  231.                     if (tmp == mp4ASC->samplingFrequencyIndex)
  232.                         mp4ASC->downSampledSBR = 1;
  233.                     mp4ASC->samplingFrequencyIndex = tmp;
  234.                     if (mp4ASC->samplingFrequencyIndex == 15)
  235.                     {
  236.                         mp4ASC->samplingFrequency = (uint32_t)faad_getbits(&ld, 24
  237.                             DEBUGVAR(1,13,"parse_audio_decoder_specific_info(): extensionSamplingFrequencyIndex"));
  238.                     } else {
  239.                         mp4ASC->samplingFrequency = get_sample_rate(mp4ASC->samplingFrequencyIndex);
  240.                     }
  241.                 }
  242.             }
  243.         }
  244.     }
  245.     /* no SBR signalled, this could mean either implicit signalling or no SBR in this file */
  246.     /* MPEG specification states: assume SBR on files with samplerate <= 24000 Hz */
  247.     if (mp4ASC->sbr_present_flag == -1)
  248.     {
  249.         if (mp4ASC->samplingFrequency <= 24000)
  250.         {
  251.             mp4ASC->samplingFrequency *= 2;
  252.             mp4ASC->forceUpSampling = 1;
  253.         } else /* > 24000*/ {
  254.             mp4ASC->downSampledSBR = 1;
  255.         }
  256.     }
  257. #endif
  258.     faad_endbits(&ld);
  259.     return result;
  260. }