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

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 "hlxclib/string.h"
  36. #include "hxtypes.h"
  37. #include "audinfo.h"
  38. CAudioInfoBase::CAudioInfoBase()
  39.  :  m_ySyncWord(0),
  40.     m_bIsInited(0)
  41. {
  42. }
  43. CAudioInfoBase::~CAudioInfoBase()
  44. {
  45. }
  46. BOOL CAudioInfoBase::IsInited()
  47. {
  48.     return m_bIsInited;
  49. }
  50. INT16 CAudioInfoBase::GetSyncWord()
  51. {
  52.     return m_ySyncWord;
  53. }
  54. UINT32 CAudioInfoBase::GetAudioRtpPacket(UINT8 *pRead,
  55.                                          UINT32 ulRead,
  56.                                          tRtpPacket *pRtp)
  57. {
  58.     UINT8   bCont = 1,
  59.             *pStart = pRead,
  60.             *pCopy = pRead,
  61.             *pLastFrame = NULL;
  62.     UINT32  ulBytes = ulRead,
  63.             ulFrameSize = 0;
  64.     pRtp->ulHeaderSize = 4;
  65.     // Finish fragmented packet
  66.     if (pRtp->bPacketFrag)
  67.     {
  68.         if (ulRead >= pRtp->ulFragBytesRem)
  69.         {
  70.             // Set offset header
  71.             pRtp->aHeader[3] = (pRtp->wFragBytes & 0xFF00)>>8;
  72.             pRtp->aHeader[4] = pRtp->wFragBytes & 0x00FF;
  73.             pRtp->bPacketReady = 1;
  74.             pRtp->bPacketFrag = 0;
  75.             pRtp->wFragBytes = 0;
  76.             
  77.             ulBytes = pRtp->ulFragBytesRem;
  78.             pRtp->ulFragBytesRem = 0;
  79.             return ulBytes;
  80.         }
  81.         else
  82.             return 0;
  83.     }
  84.     
  85.     while (bCont)
  86.     {
  87.         ulFrameSize = (UINT32)CheckValidFrame(pRead, ulRead);
  88.         // Check for space in our rtp packet
  89.         if (ulFrameSize > pRtp->ulBytesFree)
  90.         {
  91.             // The frame is bigger than our rtp packet size
  92.             if (!pRtp->ulDataChunks)
  93.             {
  94.                 pRtp->bPacketFrag = 1;
  95.                 // Set rtp packet to max size (send as much of
  96.                 // the slice as we can).
  97.                 pRead += pRtp->ulBytesFree;
  98.                 pRtp->wFragBytes = (INT16)(pRead - pStart);
  99.                 pRtp->ulFragBytesRem = ulFrameSize - pRtp->wFragBytes;
  100.             }
  101.             pRtp->bPacketReady = 1;
  102.             bCont = 0;
  103.         }
  104.         else if (ulFrameSize)
  105.         {
  106.             pLastFrame = pRead;
  107.             ++pRtp->ulDataChunks;
  108.             pRead += ulFrameSize;
  109.             ulRead -= ulFrameSize;
  110.             pRtp->ulBytesFree -= ulFrameSize;
  111.         }
  112.         else
  113.         {
  114.             if (pRtp->ulDataChunks)
  115.             {
  116.                 pRtp->bPacketReady = 1;
  117.                 bCont = 0;
  118.             }
  119.             // On a seek, we need to find an audio frame
  120.             else
  121.             {
  122.                 int nFrameSize = 0;
  123.                 INT32 lScan = 0;
  124.                 lScan = ScanForSyncWord(pRead, ulRead, nFrameSize);
  125.                 if (lScan >= 0)
  126.                 {
  127.                     pRead += lScan;
  128.                     ulRead -= lScan;
  129.                 }
  130.                 else
  131.                 {
  132.                     bCont = 0;                    
  133.                 }
  134.             }
  135.         }
  136.     }
  137.     ulBytes = (UINT32)(pRead - pStart);
  138.     // Bump scr and pts
  139.     if (!pRtp->bPacketReady)
  140.     {
  141.         memset(pRtp->aHeader, 0, sizeof(pRtp->aHeader));
  142.         pRtp->bPacketReady = 0;
  143.         pRtp->ulHeaders = 0;
  144.         pRtp->ulDataChunks = 0;
  145.         pRtp->ulBytesFree = RTP_PACKET_SIZE;
  146.     }
  147.     return ulBytes;
  148. }