qtatoms_inline.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

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. #ifndef QTATOMS_INLINE_H
  36. #define QTATOMS_INLINE_H
  37. /****************************************************************************
  38.  *  stts Atom Class
  39.  */
  40. ULONG32 CQT_stts_Atom::Get_SampleDuration(ULONG32 ulEntryIdx)
  41. {
  42.     UINT8* pData = m_pData;
  43.     HX_ASSERT(m_pData);
  44.     
  45.     if (m_pMemPager)
  46.     { 
  47. m_lastStatus = m_pMemPager->PageIn(
  48.     ((Data*) pData)->pTable[ulEntryIdx].pSampleDuration, 
  49.     sizeof(((Data*) pData)->pTable[ulEntryIdx].pSampleDuration),
  50.     pData);
  51.     }
  52.     
  53.     if (m_lastStatus == HXR_OK)
  54.     {
  55. return GetUL32(((Data*) pData)->pTable[ulEntryIdx].pSampleDuration);
  56.     }
  57.     
  58.     return 0;
  59. }
  60.  
  61. /****************************************************************************
  62.  *  stss Atom Class
  63.  */
  64. ULONG32 CQT_stss_Atom::Get_NumEntries(void)
  65. {
  66.     UINT8* pData;
  67.     
  68.     if (m_ulNumEntries != 0)
  69.     {
  70. return m_ulNumEntries;
  71.     }
  72.     
  73.     pData = m_pData;
  74.     HX_ASSERT(m_pData);
  75.     
  76.     if (m_pMemPager)
  77.     { 
  78. m_lastStatus = m_pMemPager->PageIn(
  79.     ((Data*) pData)->pNumEntries, 
  80.     sizeof(((Data*) pData)->pNumEntries),
  81.     pData);
  82.     }
  83.     
  84.     if (m_lastStatus == HXR_OK)
  85.     {
  86. m_ulNumEntries = GetUL32(((Data*) pData)->pNumEntries);
  87. return m_ulNumEntries;
  88.     }
  89.     
  90.     return 0;
  91. }
  92. ULONG32 CQT_stss_Atom::Get_SampleNum(ULONG32 ulEntryIdx)
  93. {
  94.     UINT8* pData = m_pData;
  95.     HX_ASSERT(m_pData);
  96.     
  97.     if (m_pMemPager)
  98.     { 
  99. m_lastStatus = m_pMemPager->PageIn(
  100.     ((Data*) pData)->pTable[ulEntryIdx].pSampleNum, 
  101.     sizeof(((Data*) pData)->pTable[ulEntryIdx].pSampleNum),
  102.     pData);
  103.     }
  104.     
  105.     if (m_lastStatus == HXR_OK)
  106.     {
  107. return GetUL32(((Data*) pData)->pTable[ulEntryIdx].pSampleNum);
  108.     }
  109.     
  110.     return 0;
  111. }
  112. /****************************************************************************
  113.  *  stsc Atom Class
  114.  */
  115. ULONG32 CQT_stsc_Atom::Get_FirstChunk(ULONG32 ulEntryIdx)
  116. {
  117.     UINT8* pData = m_pData;
  118.     HX_ASSERT(m_pData);
  119.     
  120.     if (m_pMemPager)
  121.     { 
  122. m_lastStatus = m_pMemPager->PageIn(
  123.     ((Data*) pData)->pTable[ulEntryIdx].pFirstChunk, 
  124.     sizeof(((Data*) pData)->pTable[ulEntryIdx].pFirstChunk),
  125.     pData);
  126.     }
  127.     
  128.     if (m_lastStatus == HXR_OK)
  129.     {
  130. return GetUL32(((Data*) pData)->pTable[ulEntryIdx].pFirstChunk);
  131.     }
  132.     
  133.     return 0;
  134. }
  135. ULONG32 CQT_stsc_Atom::Get_SamplesPerChunk(ULONG32 ulEntryIdx)
  136. {
  137.     UINT8* pData = m_pData;
  138.     HX_ASSERT(m_pData);
  139.     
  140.     if (m_pMemPager)
  141.     { 
  142. m_lastStatus = m_pMemPager->PageIn(
  143.     ((Data*) pData)->pTable[ulEntryIdx].pSamplesPerChunk, 
  144.     sizeof(((Data*) pData)->pTable[ulEntryIdx].pSamplesPerChunk),
  145.     pData);
  146.     }
  147.     
  148.     if (m_lastStatus == HXR_OK)
  149.     {
  150. return GetUL32(((Data*) pData)->pTable[ulEntryIdx].pSamplesPerChunk);
  151.     }
  152.     
  153.     return 0;
  154. }
  155. ULONG32 CQT_stsc_Atom::Get_SampleDescID(ULONG32 ulEntryIdx)
  156. {
  157.     UINT8* pData = m_pData;
  158.     HX_ASSERT(m_pData);
  159.     
  160.     if (m_pMemPager)
  161.     { 
  162. m_lastStatus = m_pMemPager->PageIn(
  163.     ((Data*) pData)->pTable[ulEntryIdx].pSampleDescID, 
  164.     sizeof(((Data*) pData)->pTable[ulEntryIdx].pSampleDescID),
  165.     pData);
  166.     }
  167.     
  168.     if (m_lastStatus == HXR_OK)
  169.     {
  170. return GetUL32(((Data*) pData)->pTable[ulEntryIdx].pSampleDescID);
  171.     }
  172.     
  173.     return 0;
  174. }
  175. /****************************************************************************
  176.  *  stsz Atom Class
  177.  */
  178. ULONG32 CQT_stsz_Atom::Get_SampleSize(void)
  179. {
  180.     UINT8* pData;
  181.     
  182.     if (m_ulSampleSize != QT_BAD_SAMPLE_SIZE)
  183.     {
  184. return m_ulSampleSize;
  185.     }
  186.     
  187.     pData = m_pData;
  188.     HX_ASSERT(m_pData);
  189.     
  190.     if (m_pMemPager)
  191.     { 
  192. m_lastStatus = m_pMemPager->PageIn(
  193.     ((Data*) pData)->pSampleSize, 
  194.     sizeof(((Data*) pData)->pSampleSize),
  195.     pData);
  196.     }
  197.     
  198.     if (m_lastStatus == HXR_OK)
  199.     {
  200. m_ulSampleSize = GetUL32(((Data*) pData)->pSampleSize);
  201. return m_ulSampleSize;
  202.     }
  203.     
  204.     return 0;
  205. }
  206. ULONG32 CQT_stsz_Atom::Get_SampleSize(ULONG32 ulEntryIdx)
  207. {
  208.     UINT8* pData = m_pData;
  209.     HX_ASSERT(m_pData);
  210.     
  211.     if (m_pMemPager)
  212.     { 
  213. m_lastStatus = m_pMemPager->PageIn(
  214.     ((Data*) pData)->pTable[ulEntryIdx].pSampleSize, 
  215.     sizeof(((Data*) pData)->pTable[ulEntryIdx].pSampleSize),
  216.     pData);
  217.     }
  218.     
  219.     if (m_lastStatus == HXR_OK)
  220.     {
  221. return GetUL32(((Data*) pData)->pTable[ulEntryIdx].pSampleSize);
  222.     }
  223.     
  224.     return 0;
  225. }
  226. #endif // QTATOMS_INLINE_H