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

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 "hxtypes.h"
  36. #include "hxcom.h"
  37. #include "hlxclib/string.h"
  38. #include "ihxpckts.h"
  39. #include "rmfftype.h"
  40. #include "netbyte.h"
  41. #include "hxmime.h"
  42. #include "raparser.h"
  43. #include "streamcmp.h"
  44. HX_RESULT VerifyRMStreamCompatibility(IHXValues* pHdr1, IHXValues* pHdr2)
  45. {
  46.     IHXBuffer* pBuffer1 = NULL;
  47.     IHXBuffer* pBuffer2 = NULL;
  48.     BOOL bMimeTypesDiffer = TRUE;
  49.     BOOL bRuleBooksDiffer = TRUE;
  50.     BOOL bOpaqueDatasDiffer = TRUE;
  51.     IHXBuffer* pMimeType = NULL;
  52.     // Compare the Mime Types
  53.     if (HXR_OK == pHdr1->GetPropertyCString("MimeType", pBuffer1))
  54.     {
  55.         if (HXR_OK == pHdr2->GetPropertyCString("MimeType", pBuffer2))
  56.         {
  57.             if (!strcmp((const char*)pBuffer1->GetBuffer(),
  58.                         (const char*)pBuffer2->GetBuffer()))
  59.             {
  60.                 bMimeTypesDiffer = FALSE;
  61.             }
  62.         }
  63.     }
  64.     HX_RELEASE(pBuffer1);
  65.     HX_RELEASE(pBuffer2);
  66.     if (bMimeTypesDiffer)
  67.     {
  68.         return HXR_FAIL;
  69.     }
  70.     // Compare the RuleBooks
  71.     if (HXR_OK == pHdr1->GetPropertyCString("ASMRuleBook",
  72.         pBuffer1))
  73.     {
  74.         if (HXR_OK == pHdr2->GetPropertyCString("ASMRuleBook",
  75.             pBuffer2))
  76.         {
  77.             if (!strcmp((const char*)pBuffer1->GetBuffer(),
  78.                         (const char*)pBuffer2->GetBuffer()))
  79.             {
  80.                 bRuleBooksDiffer = FALSE;
  81.             }
  82.         }
  83.     }
  84.     HX_RELEASE(pBuffer1);
  85.     HX_RELEASE(pBuffer2);
  86.     // XXXDPS - For now, we will not declare these streams incompatible
  87.     // just because the ASMRuleBooks differ
  88.     if (FALSE/*bRuleBooksDiffer*/)
  89.     {
  90.         return HXR_FAIL;
  91.     }
  92.     // Compare the Opaque Data
  93.     if (HXR_OK == pHdr1->GetPropertyBuffer("OpaqueData",
  94.         pBuffer1))
  95.     {
  96.         if (HXR_OK == pHdr2->GetPropertyBuffer("OpaqueData",
  97.             pBuffer2))
  98.         {
  99.             pHdr1->GetPropertyCString("MimeType", pMimeType);
  100.             if (HXR_OK == CompareRMOpaqueData(pBuffer1, pBuffer2, pMimeType))
  101.             {
  102.                 bOpaqueDatasDiffer = FALSE;
  103.             }
  104.             HX_RELEASE(pMimeType);
  105.         }
  106.     }
  107.     else if (HXR_OK != pHdr2->GetPropertyBuffer("OpaqueData",
  108.         pBuffer2))
  109.     {
  110.         // If neither stream has any Opaque Data, that's fine too
  111.         bOpaqueDatasDiffer = FALSE;
  112.     }
  113.     HX_RELEASE(pBuffer1);
  114.     HX_RELEASE(pBuffer2);
  115.     if (bOpaqueDatasDiffer)
  116.     {
  117.         return HXR_FAIL;
  118.     }
  119.     return HXR_OK;
  120. }
  121. HX_RESULT CompareRMOpaqueData(IHXBuffer* pOp1, IHXBuffer* pOp2, IHXBuffer* pMimeType)
  122. {
  123.     BOOL bCompatible = TRUE;
  124.     UINT32 uID1 = 0;
  125.     UINT32 uID2 = 0;
  126.     UCHAR* pCursor1 = NULL;
  127.     UCHAR* pCursor2 = NULL;
  128.     UINT32 ulHeaderSize1 = 0;
  129.     UINT32 ulHeaderSize2 = 0;
  130.     MultiStreamHeader msHeader1;
  131.     MultiStreamHeader msHeader2;
  132.     VideoTypeSpecificData v1;
  133.     VideoTypeSpecificData v2;
  134.     UINT32 ulBytesRead = 0;
  135.     HX_RESULT hResult1 = HXR_OK;
  136.     HX_RESULT hResult2 = HXR_OK;
  137.     msHeader1.rule_to_header_map = NULL;
  138.     msHeader2.rule_to_header_map = NULL;
  139.     // Find out if these are multistream headers
  140.     memcpy((char*)&uID1, (const char*)pOp1->GetBuffer(), sizeof(UINT32)); /* Flawfinder: ignore */
  141.     uID1 = DwToHost(uID1);
  142.     memcpy((char*)&uID2, (const char*)pOp2->GetBuffer(), sizeof(UINT32)); /* Flawfinder: ignore */
  143.     uID2 = DwToHost(uID2);
  144.     if (uID1 != uID2)
  145.     {
  146.         bCompatible = FALSE;
  147.         goto exit;
  148.     }
  149.     // Compare Audio Type Specific Data
  150.     if (!strcasecmp((const char*)pMimeType->GetBuffer(), REALAUDIO_MIME_TYPE) ||
  151.         !strcasecmp((const char*)pMimeType->GetBuffer(), REALAUDIO_ENCRYPTED_MIME_TYPE))
  152.     {
  153.         if (RM_MULTIHEADER_OBJECT == uID1)
  154.         {
  155.             // Unpack the multistream headers
  156.             pCursor1 = msHeader1.unpack(pOp1->GetBuffer(),
  157.                 pOp1->GetSize());
  158.             pCursor2 = msHeader2.unpack(pOp2->GetBuffer(),
  159.                 pOp2->GetSize());
  160.             if (msHeader1.num_headers != msHeader2.num_headers)
  161.             {
  162.                 bCompatible = FALSE;
  163.                 goto exit;
  164.             }
  165.             for (UINT16 i = 0; i < msHeader1.num_headers; i++)
  166.             {
  167.                 CStreamParam StreamParam1;
  168.                 CStreamParam StreamParam2;
  169.                 // Get the 1st type specific data for this physical stream
  170.                 memcpy((char*)&ulHeaderSize1, (char*)pCursor1, sizeof(UINT32)); /* Flawfinder: ignore */
  171.                 ulHeaderSize1 = DwToHost(ulHeaderSize1);
  172.                 pCursor1 += sizeof(UINT32);
  173.                 // Unpack the audio header
  174.                 hResult1 = StreamParam1.ReadOneRAHeader(pCursor1,
  175.                                            ulHeaderSize1,
  176.                                            &ulBytesRead);
  177.                 pCursor1 += ulHeaderSize1;
  178.                 // Get the 2nd type specific data for this physical stream
  179.                 memcpy((char*)&ulHeaderSize2, (char*)pCursor2, sizeof(UINT32)); /* Flawfinder: ignore */
  180.                 ulHeaderSize2 = DwToHost(ulHeaderSize2);
  181.                 pCursor2 += sizeof(UINT32);
  182.                 // Unpack the audio header
  183.                 hResult2 = StreamParam2.ReadOneRAHeader(pCursor2,
  184.                                            ulHeaderSize2,
  185.                                            &ulBytesRead);
  186.                 pCursor2 += ulHeaderSize2;
  187.                 if (hResult1 != hResult2)
  188.                 {
  189.                     bCompatible = FALSE;
  190.                     goto exit;
  191.                 }
  192.                 if (HXR_OK == hResult1)
  193.                 {
  194.                     // Compare all of the relevant details...
  195.                     if ((StreamParam1.uFlavorIndex != StreamParam2.uFlavorIndex)   ||
  196.                         (StreamParam1.ulGranularity != StreamParam2.ulGranularity) ||
  197.                         (strcmp(StreamParam1.codecID, StreamParam2.codecID))       ||
  198.                         (StreamParam1.IsInterleaved != StreamParam2.IsInterleaved) ||
  199.                         (StreamParam1.uChannels != StreamParam2.uChannels)         ||
  200.                         (StreamParam1.ulSampleRate != StreamParam2.ulSampleRate)   ||
  201.                         (StreamParam1.ulOpaqueDataSize !=
  202.                             StreamParam2.ulOpaqueDataSize)                         ||
  203.                         (memcmp(StreamParam1.opaqueData,
  204.                                 StreamParam2.opaqueData,
  205.                                 StreamParam1.ulOpaqueDataSize)))
  206.                     {
  207.                         bCompatible = FALSE;
  208.                         goto exit;
  209.                     }
  210.                 }
  211.             }
  212.         }
  213.         else
  214.         {
  215.             CStreamParam StreamParam1;
  216.             CStreamParam StreamParam2;
  217.             // Unpack the audio header
  218.             hResult1 = StreamParam1.ReadOneRAHeader(pOp1->GetBuffer(),
  219.                                        pOp1->GetSize(),
  220.                                        &ulBytesRead);
  221.             // Unpack the audio header
  222.             hResult2 = StreamParam2.ReadOneRAHeader(pOp2->GetBuffer(),
  223.                                        pOp2->GetSize(),
  224.                                        &ulBytesRead);
  225.             if (hResult1 != hResult2)
  226.             {
  227.                 bCompatible = FALSE;
  228.                 goto exit;
  229.             }
  230.             if (HXR_OK == hResult1)
  231.             {
  232.                 // Compare all of the relevant details...
  233.                 if ((StreamParam1.uFlavorIndex != StreamParam2.uFlavorIndex)   ||
  234.                     (StreamParam1.ulGranularity != StreamParam2.ulGranularity) ||
  235.                     (strcmp(StreamParam1.codecID, StreamParam2.codecID))       ||
  236.                     (StreamParam1.IsInterleaved != StreamParam2.IsInterleaved) ||
  237.                     (StreamParam1.uChannels != StreamParam2.uChannels)         ||
  238.                     (StreamParam1.ulSampleRate != StreamParam2.ulSampleRate)   ||
  239.                     (StreamParam1.ulOpaqueDataSize !=
  240.                         StreamParam2.ulOpaqueDataSize)                         ||
  241.                     (memcmp(StreamParam1.opaqueData,
  242.                             StreamParam2.opaqueData,
  243.                             StreamParam1.ulOpaqueDataSize)))
  244.                 {
  245.                     bCompatible = FALSE;
  246.                     goto exit;
  247.                 }
  248.             }
  249.         }
  250.     }
  251.     // Compare Video Type Specific Data
  252.     else if (!strcasecmp((const char*)pMimeType->GetBuffer(), REALVIDEO_MIME_TYPE) ||
  253.              !strcasecmp((const char*)pMimeType->GetBuffer(), REALVIDEO_ENCRYPTED_MIME_TYPE))
  254.     {
  255.         if (RM_MULTIHEADER_OBJECT == uID1)
  256.         {
  257.             // Unpack the multistream header
  258.             pCursor1 = msHeader1.unpack(pOp1->GetBuffer(),
  259.                 pOp1->GetSize());
  260.             pCursor2 = msHeader2.unpack(pOp2->GetBuffer(),
  261.                 pOp2->GetSize());
  262.             if (msHeader1.num_headers != msHeader2.num_headers)
  263.             {
  264.                 bCompatible = FALSE;
  265.                 goto exit;
  266.             }
  267.             for (UINT16 i = 0; i < msHeader1.num_headers; i++)
  268.             {
  269.                 // Get the 1st type specific data for this physical stream
  270.                 memcpy((char*)&ulHeaderSize1, (char*)pCursor1, sizeof(UINT32)); /* Flawfinder: ignore */
  271.                 ulHeaderSize1 = DwToHost(ulHeaderSize1);
  272.                 pCursor1 += sizeof(UINT32);
  273.                 // Unpack it
  274.                 v1.unpack(pCursor1, ulHeaderSize1);
  275.                 pCursor1 += ulHeaderSize1;
  276.                 // Get the 2nd type specific data for this physical stream
  277.                 memcpy((char*)&ulHeaderSize2, (char*)pCursor2, sizeof(UINT32)); /* Flawfinder: ignore */
  278.                 ulHeaderSize2 = DwToHost(ulHeaderSize2);
  279.                 pCursor2 += sizeof(UINT32);
  280.                 // Unpack it
  281.                 v2.unpack(pCursor2, ulHeaderSize2);
  282.                 pCursor2 += ulHeaderSize2;
  283.                 if ((v1.moftag != v2.moftag)           ||
  284.                     (v1.submoftag != v2.submoftag)     ||
  285.                     (v1.uiHeight != v2.uiHeight)       ||
  286.                     (v1.uiWidth != v2.uiWidth)         ||
  287.                     (v1.uiBitCount != v2.uiBitCount)   ||
  288.                     (v1.uiPadWidth != v2.uiPadWidth)   ||
  289.                     (v1.uiPadHeight != v2.uiPadHeight) ||
  290.                     (v1.framesPerSecond != v2.framesPerSecond))
  291.                 {
  292.                     bCompatible = FALSE;
  293.                     goto exit;
  294.                 }
  295.             }
  296.         }
  297.         else
  298.         {
  299.             // Unpack the type specific data
  300.             v1.unpack(pOp1->GetBuffer(), pOp1->GetSize());
  301.             v2.unpack(pOp2->GetBuffer(), pOp2->GetSize());
  302.             if ((v1.moftag != v2.moftag)           ||
  303.                 (v1.submoftag != v2.submoftag)     ||
  304.                 (v1.uiHeight != v2.uiHeight)       ||
  305.                 (v1.uiWidth != v2.uiWidth)         ||
  306.                 (v1.uiBitCount != v2.uiBitCount)   ||
  307.                 (v1.uiPadWidth != v2.uiPadWidth)   ||
  308.                 (v1.uiPadHeight != v2.uiPadHeight) ||
  309.                 (v1.framesPerSecond != v2.framesPerSecond))
  310.             {
  311.                 bCompatible = FALSE;
  312.                 goto exit;
  313.             }
  314.         }
  315.     }
  316.     // All other data types
  317.     else
  318.     {
  319.         // The opaque datas must match exactly
  320.         if (pOp1->GetSize() != pOp2->GetSize() ||
  321.             (memcmp((char*)pOp1->GetBuffer(),
  322.                     (char*)pOp2->GetBuffer(),
  323.                     pOp1->GetSize())))
  324.         {
  325.             bCompatible = FALSE;
  326.             goto exit;
  327.         }
  328.     }
  329. exit:
  330.     // Must delete this since PMC doesn't generate distructors
  331.     HX_VECTOR_DELETE(msHeader1.rule_to_header_map);
  332.     HX_VECTOR_DELETE(msHeader2.rule_to_header_map);
  333.     return (bCompatible ? HXR_OK : HXR_FAIL);
  334. }