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

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. /**************************************************************************************
  36.  * Fixed-point MP3 decoder using Intel IPP libraries
  37.  * June 2003
  38.  *
  39.  * buffers.c - allocation and freeing of internal MP3 decoder buffers
  40.  *
  41.  * All memory allocation for the codec is done in this file, so if you don't want 
  42.  *  to use other the default system malloc() and free() for heap management this is 
  43.  *  the only file you'll need to change.
  44.  **************************************************************************************/
  45. #include <stdlib.h> /* for malloc, free */ 
  46. #include "coder.h"
  47. /**************************************************************************************
  48.  * Function:    ClearBuffer
  49.  *
  50.  * Description: fill buffer with 0's
  51.  *
  52.  * Inputs:      pointer to buffer
  53.  *              number of bytes to fill with 0
  54.  *
  55.  * Outputs:     cleared buffer
  56.  *
  57.  * Return:      none
  58.  *
  59.  * Notes:       slow, platform-independent equivalent to memset(buf, 0, nBytes)
  60.  **************************************************************************************/
  61. static void ClearBuffer(void *buf, int nBytes)
  62. {
  63. int i;
  64. unsigned char *cbuf = (unsigned char *)buf;
  65. for (i = 0; i < nBytes; i++)
  66. cbuf[i] = 0;
  67. return;
  68. }
  69. /**************************************************************************************
  70.  * Function:    AllocateBuffers
  71.  *
  72.  * Description: allocate all the memory needed for the MP3 decoder
  73.  *
  74.  * Inputs:      none
  75.  *
  76.  * Outputs:     none
  77.  *
  78.  * Return:      pointer to MP3DecInfo structure (initialized with pointers to all 
  79.  *                the internal buffers needed for decoding, all other members of 
  80.  *                MP3DecInfo structure set to 0)
  81.  *
  82.  * Notes:       if one or more mallocs fail, function frees any buffers already
  83.  *                allocated before returning
  84.  **************************************************************************************/
  85. MP3DecInfo *AllocateBuffers(void)
  86. {
  87. MP3DecInfo *mp3DecInfo;
  88. FrameHeader *fh;
  89. SideInfo *si;
  90. ScaleFactorInfo *sfi;
  91. HuffmanInfo *hi;
  92. DequantInfo *di;
  93. IMDCTInfo *mi;
  94. SubbandInfo *sbi;
  95. mp3DecInfo = (MP3DecInfo *)malloc(sizeof(MP3DecInfo));
  96. if (!mp3DecInfo)
  97. return 0;
  98. ClearBuffer(mp3DecInfo, sizeof(MP3DecInfo));
  99. fh =  (FrameHeader *)     malloc(sizeof(FrameHeader));
  100. si =  (SideInfo *)        malloc(sizeof(SideInfo));
  101. sfi = (ScaleFactorInfo *) malloc(sizeof(ScaleFactorInfo));
  102. hi =  (HuffmanInfo *)     malloc(sizeof(HuffmanInfo));
  103. di =  (DequantInfo *)     malloc(sizeof(DequantInfo));
  104. mi =  (IMDCTInfo *)       malloc(sizeof(IMDCTInfo));
  105. sbi = (SubbandInfo *)     malloc(sizeof(SubbandInfo));
  106. mp3DecInfo->FrameHeaderPS =     (void *)fh;
  107. mp3DecInfo->SideInfoPS =        (void *)si;
  108. mp3DecInfo->ScaleFactorInfoPS = (void *)sfi;
  109. mp3DecInfo->HuffmanInfoPS =     (void *)hi;
  110. mp3DecInfo->DequantInfoPS =     (void *)di;
  111. mp3DecInfo->IMDCTInfoPS =       (void *)mi;
  112. mp3DecInfo->SubbandInfoPS =     (void *)sbi;
  113. if (!fh || !si || !sfi || !hi || !di || !mi || !sbi) {
  114. FreeBuffers(mp3DecInfo); /* safe to call - only frees memory that was successfully allocated */
  115. return 0;
  116. }
  117. /* important to do this - DSP primitives assume a bunch of state variables are 0 on first use */
  118. ClearBuffer(fh,  sizeof(FrameHeader));
  119. ClearBuffer(si,  sizeof(SideInfo));
  120. ClearBuffer(sfi, sizeof(ScaleFactorInfo));
  121. ClearBuffer(hi,  sizeof(HuffmanInfo));
  122. ClearBuffer(di,  sizeof(DequantInfo));
  123. ClearBuffer(mi,  sizeof(IMDCTInfo));
  124. ClearBuffer(sbi, sizeof(SubbandInfo));
  125. return mp3DecInfo;
  126. }
  127. #define SAFE_FREE(x) {if (x) free(x); (x) = 0;} /* helper macro */
  128. /**************************************************************************************
  129.  * Function:    FreeBuffers
  130.  *
  131.  * Description: frees all the memory used by the MP3 decoder
  132.  *
  133.  * Inputs:      pointer to initialized MP3DecInfo structure
  134.  *
  135.  * Outputs:     none
  136.  *
  137.  * Return:      none
  138.  *
  139.  * Notes:       safe to call even if some buffers were not allocated (uses SAFE_FREE)
  140.  **************************************************************************************/
  141. void FreeBuffers(MP3DecInfo *mp3DecInfo)
  142. {
  143. if (!mp3DecInfo)
  144. return;
  145. SAFE_FREE(mp3DecInfo->FrameHeaderPS);
  146. SAFE_FREE(mp3DecInfo->SideInfoPS);
  147. SAFE_FREE(mp3DecInfo->ScaleFactorInfoPS);
  148. SAFE_FREE(mp3DecInfo->HuffmanInfoPS);
  149. SAFE_FREE(mp3DecInfo->DequantInfoPS);
  150. SAFE_FREE(mp3DecInfo->IMDCTInfoPS);
  151. SAFE_FREE(mp3DecInfo->SubbandInfoPS);
  152. SAFE_FREE(mp3DecInfo);
  153. }