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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxh263d.cpp,v 1.2.40.1 2004/07/09 01:56:11 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. #define INITGUID
  50. #include "hxtypes.h"
  51. #include "ihxpckts.h"
  52. #include "hxvamain.h"
  53. #include "h263vdec.h"
  54. #include "hxcinst.h"
  55. #include "hvviddec.h"
  56. //#define DEBUG_WRITEIO
  57. #ifdef DEBUG_WRITEIO // writes the input packets and output yuv
  58. #include "iowriter.h"
  59. YUVFileWriter  *writer = 0;
  60. #endif
  61. HX_RESULT HXEXPORT
  62. HXVtoYUV420Init(HXV10_INIT *pHxvInit, void **decoderState)
  63. {
  64.     HX_RESULT                   result;
  65.     HX_RESULT                  ps = HXR_OK;
  66. VvVideoDecoderFilter * decFlt=0;
  67. HXVA_Image_Format            in_format;
  68. HXVA_Image_Format            out_format;
  69.     if (!pHxvInit || !decoderState)
  70.         return HXR_POINTER;
  71. in_format.fid = HXVA_FID_H263PLUS;
  72.     in_format.dimensions.width = pHxvInit->pels;
  73.     in_format.dimensions.height = pHxvInit->lines;
  74.     in_format.Complete();
  75.     out_format.fid = HXVA_FID_YUV12;
  76.     out_format.dimensions = in_format.dimensions;
  77.     out_format.Complete();
  78.     
  79.     // CreateInstance
  80. decFlt = VvVideoDecoderFilter::CreateInstance(ps);
  81. if(!decFlt || ps!=HXR_OK)
  82. return HXR_OUTOFMEMORY;
  83. ps = HXR_OK;
  84. ps = decFlt->StartStreaming(in_format, out_format);
  85.     if(ps != HXR_OK) 
  86. {
  87. decFlt->StopStreaming();
  88. delete decFlt;
  89. return HXR_INVALID_PARAMETER;
  90. }
  91. *decoderState = decFlt;
  92. #ifdef DEBUG_WRITEIO
  93. BOOL failed;
  94. if(!writer)
  95. {
  96. writer = new YUVFileWriter("c:\out.yuv", out_format, failed);
  97. if(!failed)
  98. writer->Open();
  99. }
  100. #endif
  101.     return HXR_OK;
  102. }
  103. HX_RESULT HXEXPORT
  104. HXVtoYUV420Free(void *global)
  105. {
  106. ((VvVideoDecoderFilter *)(global))->StopStreaming();
  107. delete (VvVideoDecoderFilter *)(global);
  108. #ifdef DEBUG_WRITEIO
  109. if(writer)
  110. {
  111. writer->Close();
  112. delete writer;
  113. }
  114. #endif
  115. return HXR_OK;
  116. }
  117. HX_RESULT HXEXPORT
  118. HXVtoYUV420Transform
  119.     (
  120.     UCHAR     *pH263Packets,
  121.     UCHAR     *pDecodedFrameBuffer,
  122.     void      *pInputParams,
  123.     void      *pOutputParams,
  124.     void      *global
  125.     )
  126. {
  127.     HX_RESULT       result;
  128.     HX_RESULT      ps;
  129.     HXVA_Image       src;
  130.     HXVA_Image       dst;
  131.     INT32             temporal_offset = 0;
  132.     ULONG32 flags = 0;
  133.     ULONG32 notes = 0;
  134. VvVideoDecoderFilter *decFlt;
  135. decFlt = (VvVideoDecoderFilter *)(global);
  136.     H263DecoderInParams  * pH263In  = (H263DecoderInParams *)pInputParams;
  137.     H263DecoderOutParams * pH263Out = (H263DecoderOutParams *)pOutputParams;
  138.     if (decFlt==0 || !pH263In || !pH263Out)
  139.         return HXR_POINTER;
  140.     pH263Out->numFrames = 0;  // Until we learn otherwise
  141.     pH263Out->notes = 0;
  142.     pH263Out->timestamp = 0;
  143.     
  144.     src.format = decFlt->m_input_format;
  145.     src.size = pH263In->dataLength;
  146.     src.sequence_number = pH263In->timestamp;  // presentation time
  147.     src.SetBasePointer(pH263Packets);
  148.     dst.format = decFlt->m_output_format;
  149.     dst.size = 0;
  150.     dst.sequence_number = src.sequence_number;
  151.     dst.SetBasePointer(pDecodedFrameBuffer);
  152. ps = decFlt->Receive( src, dst);
  153. if(ps!=HXR_OK)
  154. {
  155. pH263Out->numFrames = 1;
  156. pH263Out->notes |= RV_DECODE_DONT_DRAW;
  157. pH263Out->width = decFlt->m_output_format.dimensions.width;
  158. pH263Out->height = decFlt->m_output_format.dimensions.height;
  159. if(dst.size == 0) 
  160. {
  161. dst.size = (pH263Out->width * pH263Out->height);
  162. dst.size += (dst.size >> 1);
  163. }
  164. // Assign the presentation time for the display frame
  165. pH263Out->timestamp = dst.sequence_number++;
  166. return HXR_OK;
  167. }
  168. // Assign the number of frames out
  169.     pH263Out->numFrames = 1;
  170.     pH263Out->notes = 0;
  171. pH263Out->width = decFlt->m_output_format.dimensions.width;
  172. pH263Out->height = decFlt->m_output_format.dimensions.height;
  173. if(dst.size == 0) 
  174.     {
  175.         dst.size = (pH263Out->width * pH263Out->height);
  176.         dst.size += (dst.size >> 1);
  177.     }
  178. // Assign the presentation time for the display frame
  179.     pH263Out->timestamp = dst.sequence_number++;
  180. #ifdef DEBUG_WRITEIO
  181. if (writer && !(notes & RV_DECODE_DONT_DRAW))
  182.     {
  183. writer->Write(dst);
  184.     }
  185. #endif
  186.     return HXR_OK;
  187. }