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

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 "hxcom.h"
  36. #include "hxtypes.h"
  37. #include "hxresult.h"
  38. #include "hlxclib/string.h"
  39. #include "racodec.h"
  40. #include "gcd.h"
  41. #include "cra2ihxaenc.h"
  42. /* heap, memory debugging */
  43. #include "hxheap.h"
  44. #ifdef _DEBUG
  45. #undef HX_THIS_FILE
  46. static const char HX_THIS_FILE[] = __FILE__;
  47. #endif
  48. static ULONG32 getULONG32Prop(RACODEC codecRef,UINT16 flvIndex, UINT16 propIndex)
  49. {
  50.     UINT16 pSize ;
  51.     ULONG32 *x = (ULONG32*)ENTRYPOINT(RAGetFlavorProperty)(codecRef, flvIndex, propIndex, &pSize) ;
  52.     if (!x || !pSize)
  53. return -1 ; // should really fault. XXX TODO wschildbach
  54.     else
  55. return *x ;
  56. }
  57. HX_RESULT HXAudioEncoder::retrieveProperties(void)
  58. {
  59.     int i, n = GetNumberOfFlavors() ;
  60.     mpPropTable = new struct tag_propTable[n] ;
  61.     for (i = 0 ; i < n ; i++)
  62.     {
  63. int t ;
  64. mpPropTable[i].bytesPerEncode = getULONG32Prop(mpCodecRef, i, ::FLV_PROP_GRANULARITY) ;
  65. if (mpPropTable[i].bytesPerEncode == -1)
  66.     return HXR_NOTIMPL ; // we absolutely need this number.
  67. // tried to outsmart the broken sipro codec here, but to no avail.
  68. #if 1
  69. t = mpPropTable[i].bytesPerEncode ;
  70. #else
  71. t = getULONG32Prop(mpCodecRef, i, ::FLV_PROP_BITS_PER_FRAME) ;
  72. if (t == -1)
  73. {
  74.     // FLV_PROP_BITS_PER_FRAME does not exist -> try FLV_PROP_FRAME_SIZE
  75.     t = getULONG32Prop(mpCodecRef, i, ::FLV_PROP_FRAME_SIZE) ;
  76. }
  77. else if (t & 0x7)
  78. {
  79.     // number of bits per frame is not a whole number. In that case, just go with the codec's
  80.     // idea of how to bundle frames.
  81.     t = mpPropTable[i].bytesPerEncode ;
  82. }
  83. else
  84. {
  85.     t = t / 8 ;
  86. }
  87. if (t == -1) // ouch. Could not determine how many bytes per encode.
  88.     return HXR_NOTIMPL ;
  89. #endif
  90. mpPropTable[i].bytesPerFrame = t ;
  91. mpPropTable[i].framesPerBlock = mpPropTable[i].bytesPerEncode / mpPropTable[i].bytesPerFrame ;
  92. mpPropTable[i].samplesPerFrame = getULONG32Prop(mpCodecRef, i, ::FLV_PROP_SAMPLES_IN) ;
  93. if (mpPropTable[i].samplesPerFrame == -1)
  94.     return HXR_NOTIMPL ; // we absolutely need this number
  95. mpPropTable[i].samplesPerFrame /= mpPropTable[i].framesPerBlock ;
  96.     }
  97.     return HXR_OK ;
  98. }
  99. STDMETHODIMP_(UINT32) HXAudioEncoder::GetNumberOfFlavors() CONSTMETHOD
  100. {
  101.     return ENTRYPOINT(RAGetNumberOfFlavors2)(mpCodecRef) ;
  102. }
  103. STDMETHODIMP HXAudioEncoder::SetFlavor(INT32 nFlavor)
  104. {
  105.     return ENTRYPOINT(RASetFlavor)(mpCodecRef, mCurrentFlavorIndex = nFlavor) ;
  106. }
  107. STDMETHODIMP HXAudioEncoder::GetFlavorProperty(INT32 flvIndex, PROPERTY_LONG p, INT32&  l) CONSTMETHOD
  108. {
  109.     UINT16 pSize ;
  110.     UINT32* x ;
  111.     int code ;
  112.     if (flvIndex >= (INT32)GetNumberOfFlavors())
  113. return HXR_INVALID_PARAMETER ;
  114.     if (flvIndex == FLV_CURRENT)
  115. flvIndex = mCurrentFlavorIndex ;
  116.     code = -1 ;
  117.     switch (p)
  118.     {
  119.     case FLV_PROP_MIN_SAMPLES_IN:
  120. l = mnSamplesIn ; break ;
  121. //        l = mpPropTable[flvIndex].minSamplesIn ; break ;
  122.     case FLV_PROP_MAX_BYTES_OUT:
  123. l = mpPropTable[flvIndex].bytesPerFrame ; break ;
  124.     case FLV_PROP_PREDATA:
  125. l = 0; break ;
  126.     case FLV_PROP_OBSOLETE_BITSPERFRAME:
  127. if (code < 0) code = ::FLV_PROP_BITS_PER_FRAME ; // no break by intention
  128.     case FLV_PROP_OBSOLETE_GRANULARITY:
  129. if (code < 0) code = ::FLV_PROP_GRANULARITY ; // no break by intention
  130.     case FLV_PROP_OBSOLETE_INTERLEAVE_FACTOR:
  131. if (code < 0) code = ::FLV_PROP_INTERLEAVE_FACTOR ; // no break by intention
  132. x = (UINT32*)ENTRYPOINT(RAGetFlavorProperty)(mpCodecRef, flvIndex, code, &pSize) ;
  133. if (!x || pSize != sizeof(*x))
  134.     return HXR_NOTIMPL ;
  135. else
  136.     l = *x ;
  137. break ;
  138.     default:
  139. return HXR_NOTIMPL ;
  140.     }
  141.     return HXR_OK ;
  142. }
  143. STDMETHODIMP HXAudioEncoder::GetFlavorProperty(INT32 flvIndex, PROPERTY_FLOAT p, float& l) CONSTMETHOD
  144. {
  145.     HX_RESULT res ;
  146.     struct {long n,d;} x ;
  147.     UINT32 buflen ;
  148.     if (flvIndex >= (INT32)GetNumberOfFlavors())
  149. return HXR_INVALID_PARAMETER ;
  150.     if (flvIndex == FLV_CURRENT)
  151. flvIndex = mCurrentFlavorIndex ;
  152.     switch (p)
  153.     {
  154.     case FLV_PROP_BIT_RATE_APPROX:
  155.         res = GetFlavorProperty(flvIndex, FLV_PROP_BITS_PER_SECOND, (void*)&x, buflen = sizeof(x)) ;
  156. if (FAILED(res))
  157.     return HXR_NOTIMPL ;
  158. l = (float)((double)x.n / (double)x.d) ;
  159. break ;
  160.     default:
  161.         return HXR_NOTIMPL;
  162.     }
  163.     return HXR_OK ;
  164. }
  165. static void RemoveCommonFactors(long &n, long &d)
  166. {
  167.     long g = gcd(n,d) ;
  168.     n /= g ;
  169.     d /= g ;
  170. }
  171. STDMETHODIMP HXAudioEncoder::GetFlavorProperty(INT32 flvIndex, PROPERTY_VOID p, void *v, UINT32& buflen) CONSTMETHOD
  172. {
  173.     UINT16 pSize ;
  174.     HX_AUDIO_FORMAT *pFmt ;
  175.     int code ;
  176.     if (flvIndex >= (INT32)GetNumberOfFlavors())
  177. return HXR_INVALID_PARAMETER ;
  178.     if (flvIndex == FLV_CURRENT)
  179. flvIndex = mCurrentFlavorIndex ;
  180.     pFmt = (HX_AUDIO_FORMAT *)ENTRYPOINT(RAGetFlavorProperty)(mpCodecRef, flvIndex, ::FLV_PROP_INPUT_AUDIO_FORMAT, &pSize) ;
  181.     if (!pFmt || pSize != sizeof(*pFmt))
  182. return HXR_NOTIMPL ;
  183.     code = -1 ;
  184.     switch (p)
  185.     {
  186.     case FLV_PROP_BITS_PER_SAMPLE: {
  187.         struct tagX {long n,d;} *x = (struct tagX *)v ;
  188. /* 8*bytesperframe / samplesPerFrame */
  189.         if (x && buflen >= sizeof(*x))
  190.         {
  191.             x->n = 8*mpPropTable[flvIndex].bytesPerFrame ;
  192.     x->d = mpPropTable[flvIndex].samplesPerFrame ;
  193.     RemoveCommonFactors(x->n, x->d) ;
  194.         }
  195.         buflen = sizeof(*x) ;
  196.                                    } break ;
  197.     case FLV_PROP_BITS_PER_SECOND: {
  198.         struct tagX {long n,d;} *x = (struct tagX *)v ;
  199. /* 8*bytesperframe * sampleRate * nChannels /samplesPerFrame */
  200.         if (x && buflen >= sizeof(*x))
  201.         {
  202.             x->n = 8 * mpPropTable[flvIndex].bytesPerFrame ;
  203.     x->d = mpPropTable[flvIndex].samplesPerFrame ;
  204.     RemoveCommonFactors(x->n, x->d) ;
  205.     x->n *= pFmt->SamplesPerSec ;
  206.     RemoveCommonFactors(x->n, x->d) ;
  207.     x->n *= pFmt->Channels ;
  208.     RemoveCommonFactors(x->n, x->d) ;
  209.         }
  210.         buflen = sizeof(*x) ;
  211.                                    } break ;
  212.     case FLV_PROP_INPUT_AUDIO_FORMAT:
  213. if (code < 0) code = ::FLV_PROP_INPUT_AUDIO_FORMAT ; // no break by intention
  214.     case FLV_PROP_FLAVOR_NAME:
  215. if (code < 0) code = ::FLV_PROP_NAME ; // no break by intention
  216.     case FLV_PROP_CODEC_NAME:
  217. if (code < 0) code = ::FLV_PROP_STATUS_TEXT ; // no break by intention
  218.     case FLV_PROP_FLAVOR_DESCRIPTION:
  219. if (code < 0) code = ::FLV_PROP_DESCRIPTION ; // no break by intention
  220.     case FLV_PROP_OPAQUE_DATA:
  221. if (code < 0) code = ::FLV_PROP_OPAQUE_DATA ; // no break by intention
  222. {
  223.          void *x = ENTRYPOINT(RAGetFlavorProperty)(mpCodecRef, flvIndex, code, &pSize) ;
  224.     if (x && v && pSize <= buflen)
  225.     {
  226. memcpy(v, x, pSize) ; /* Flawfinder: ignore */
  227.     }
  228.     buflen = pSize;
  229. } break ;
  230.     default:
  231.         return HXR_NOTIMPL;
  232.     }
  233.     return HXR_OK ;
  234. }