rfc2190hlpr.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:4k
源码类别:

Symbian

开发平台:

C/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 "./rfc2190hlpr.h"
  36. #include "bitpack.h"
  37. CRFC2190Helper::CRFC2190Helper() :
  38.     m_bPictureStart(FALSE),
  39.     m_ulDataSize(0),
  40.     m_pPayload(0),
  41.     m_ulStartOffset(0)
  42. {}
  43. CRFC2190Helper::~CRFC2190Helper()
  44. {}
  45.     
  46. HX_RESULT CRFC2190Helper::OnPacket(const UINT8* pBuf, ULONG32 ulBufSize)
  47. {
  48.     HX_RESULT res = HXR_FAILED;
  49.     m_bPictureStart = FALSE;
  50.     m_ulDataSize = 0;
  51.     m_pPayload = 0;
  52.     m_ulStartOffset = 0;
  53.     if (ulBufSize > 12)
  54.     {
  55. m_ulStartOffset = ((ULONG32)(pBuf[0] >> 3)) & 0x7; // SBIT
  56. ULONG32 ulEBIT = (ULONG32)pBuf[0] & 0x7;
  57. if (pBuf[0] & 0x80) // Check F bit
  58.     if (pBuf[0] & 0x40) // Check P bit
  59.     {
  60. if (((pBuf[3] & 0x3) == 0) && // Check all the reserved bits
  61.     (pBuf[8] == 0) &&
  62.     (pBuf[9] == 0) &&
  63.     ((pBuf[10] & 0xE0) == 0))
  64. {
  65.     // This is a Mode C packet (Section 5.3)
  66.     m_pPayload = pBuf + 12;
  67.     res = HXR_OK;
  68. }
  69.     }
  70.     else
  71.     {
  72. if ((pBuf[3] & 0x3) == 0) // Check for reserved bits
  73. {
  74.     // This is a Mode B packet (Section 5.2)
  75.     m_pPayload = pBuf + 8;
  76.     res = HXR_OK;
  77. }
  78.     }
  79. else if (((pBuf[1] & 0x1) == 0) && // Check for reserved bits
  80.  ((pBuf[2] & 0xe) == 0))
  81. {
  82.     // This is a Mode A packet (Section 5.1)
  83.     m_pPayload = pBuf + 4;
  84.     if ((pBuf[4] == 0x00) &&  // Check for PSC
  85. (pBuf[5] == 0x00) &&
  86. ((pBuf[6] & 0xfc) == 0x80))
  87. m_bPictureStart = TRUE;
  88. }
  89. if (SUCCEEDED(res))
  90.     m_ulDataSize = ((ulBufSize - (m_pPayload - pBuf) ) * 8 - 
  91.     (m_ulStartOffset + ulEBIT));
  92.     }
  93.     return res;
  94. }
  95. BOOL CRFC2190Helper::IsPictureStart() const
  96. {
  97.     return m_bPictureStart;
  98. }
  99. ULONG32 CRFC2190Helper::DataSize() const // in bits
  100. {
  101.     return m_ulDataSize;
  102. }
  103. HX_RESULT CRFC2190Helper::CopyPayload(BitPacker& bp)
  104. {
  105.     HX_RESULT res = HXR_FAILED;
  106.     bp.PackBits(m_pPayload, m_ulDataSize, m_ulStartOffset);
  107.     return res;
  108. }