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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: rfc2190hlpr.cpp,v 1.1.1.1.42.1 2004/07/09 01:56:41 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #include "./rfc2190hlpr.h"
  50. #include "bitpack.h"
  51. CRFC2190Helper::CRFC2190Helper() :
  52.     m_bPictureStart(FALSE),
  53.     m_ulDataSize(0),
  54.     m_pPayload(0),
  55.     m_ulStartOffset(0)
  56. {}
  57. CRFC2190Helper::~CRFC2190Helper()
  58. {}
  59.     
  60. HX_RESULT CRFC2190Helper::OnPacket(const UINT8* pBuf, ULONG32 ulBufSize)
  61. {
  62.     HX_RESULT res = HXR_FAILED;
  63.     m_bPictureStart = FALSE;
  64.     m_ulDataSize = 0;
  65.     m_pPayload = 0;
  66.     m_ulStartOffset = 0;
  67.     if (ulBufSize > 12)
  68.     {
  69. m_ulStartOffset = ((ULONG32)(pBuf[0] >> 3)) & 0x7; // SBIT
  70. ULONG32 ulEBIT = (ULONG32)pBuf[0] & 0x7;
  71. if (pBuf[0] & 0x80) // Check F bit
  72.     if (pBuf[0] & 0x40) // Check P bit
  73.     {
  74. if (((pBuf[3] & 0x3) == 0) && // Check all the reserved bits
  75.     (pBuf[8] == 0) &&
  76.     (pBuf[9] == 0) &&
  77.     ((pBuf[10] & 0xE0) == 0))
  78. {
  79.     // This is a Mode C packet (Section 5.3)
  80.     m_pPayload = pBuf + 12;
  81.     res = HXR_OK;
  82. }
  83.     }
  84.     else
  85.     {
  86. if ((pBuf[3] & 0x3) == 0) // Check for reserved bits
  87. {
  88.     // This is a Mode B packet (Section 5.2)
  89.     m_pPayload = pBuf + 8;
  90.     res = HXR_OK;
  91. }
  92.     }
  93. else if (((pBuf[1] & 0x1) == 0) && // Check for reserved bits
  94.  ((pBuf[2] & 0xe) == 0))
  95. {
  96.     // This is a Mode A packet (Section 5.1)
  97.     m_pPayload = pBuf + 4;
  98.     if ((pBuf[4] == 0x00) &&  // Check for PSC
  99. (pBuf[5] == 0x00) &&
  100. ((pBuf[6] & 0xfc) == 0x80))
  101. m_bPictureStart = TRUE;
  102. }
  103. if (SUCCEEDED(res))
  104.     m_ulDataSize = ((ulBufSize - (m_pPayload - pBuf) ) * 8 - 
  105.     (m_ulStartOffset + ulEBIT));
  106.     }
  107.     return res;
  108. }
  109. BOOL CRFC2190Helper::IsPictureStart() const
  110. {
  111.     return m_bPictureStart;
  112. }
  113. ULONG32 CRFC2190Helper::DataSize() const // in bits
  114. {
  115.     return m_ulDataSize;
  116. }
  117. HX_RESULT CRFC2190Helper::CopyPayload(BitPacker& bp)
  118. {
  119.     HX_RESULT res = HXR_FAILED;
  120.     bp.PackBits(m_pPayload, m_ulDataSize, m_ulStartOffset);
  121.     return res;
  122. }