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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: yuvalpha.h,v 1.1.1.1.50.1 2004/07/09 02:00:04 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. #ifndef _YUVALPHA_H_
  50. #define _YUVALPHA_H_
  51. #include "ciddefs.h"
  52. #ifdef __cplusplus
  53. extern "C" {
  54. #endif /* __cplusplus */
  55. int HXEXPORT ENTRYPOINT(I420andI420toI420) (
  56. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  57.                          int src1_startx, int src1_starty,
  58. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  59.                          int src2_startx, int src2_starty,
  60. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  61.                          int dest_startx, int dest_starty,
  62. int width,  int height,  int alpha );
  63. int HXEXPORT ENTRYPOINT(I420andYUVA) (
  64. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  65.                          int src1_startx, int src1_starty,
  66. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  67.                          int src2_startx, int src2_starty,
  68. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  69.                          int dest_startx, int dest_starty,
  70. int width,  int height,  int color_format);
  71. int I420andYUVAtoYUY2 (
  72. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  73.                          int src1_startx, int src1_starty,
  74. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  75.                          int src2_startx, int src2_starty,
  76. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  77.                          int dest_startx, int dest_starty,
  78. int width,  int height);
  79. int I420andYUVAtoUYVY (
  80. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  81.                          int src1_startx, int src1_starty,
  82. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  83.                          int src2_startx, int src2_starty,
  84. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  85.                          int dest_startx, int dest_starty,
  86. int width,  int height);
  87. int I420andYUVAtoI420 (
  88. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  89.                          int src1_startx, int src1_starty,
  90. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  91.                          int src2_startx, int src2_starty,
  92. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  93.                          int dest_startx, int dest_starty,
  94. int width,  int height);
  95. int I420andYUVAtoYV12 (
  96. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  97.                          int src1_startx, int src1_starty,
  98. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  99.                          int src2_startx, int src2_starty,
  100. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  101.                          int dest_startx, int dest_starty,
  102. int width,  int height);
  103. int I420andYUVAtoI420orYV12 (
  104. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  105.                          int src1_startx, int src1_starty,
  106. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  107.                          int src2_startx, int src2_starty,
  108. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  109.                          int dest_startx, int dest_starty,
  110. int width,  int height,  int output_format);
  111. int I420andYUVAtoI420_MMX(
  112.     unsigned char* src,  int src_pels,    int src_lines,  int src_pitch,
  113.                          int src_startx,  int src_starty,
  114.     unsigned char* yuva, int yuva_pels,   int yuva_lines, int yuva_pitch,
  115.                          int yuva_startx, int yuva_starty,
  116.     unsigned char* dst,  int dst_pels,    int dst_lines,  int dst_pitch,
  117.                          int dst_startx,  int dst_starty,
  118.     int width,  int height);
  119. int I420andYUVAtoYV12_MMX(
  120.     unsigned char* src,  int src_pels,    int src_lines,  int src_pitch,
  121.                          int src_startx,  int src_starty,
  122.     unsigned char* yuva, int yuva_pels,   int yuva_lines, int yuva_pitch,
  123.                          int yuva_startx, int yuva_starty,
  124.     unsigned char* dst,  int dst_pels,    int dst_lines,  int dst_pitch,
  125.                          int dst_startx,  int dst_starty,
  126.     int width,  int height);
  127. int I420andYUVAtoYUY2_MMX (
  128.     unsigned char* src,  int src_pels,    int src_lines,  int src_pitch,
  129.                          int src_startx,  int src_starty,
  130.     unsigned char* yuva, int yuva_pels,   int yuva_lines, int yuva_pitch,
  131.                          int yuva_startx, int yuva_starty,
  132.     unsigned char* dst,  int dst_pels,    int dst_lines,  int dst_pitch,
  133.                          int dst_startx,  int dst_starty,
  134.     int width,  int height);
  135. int I420andYUVAtoUYVY_MMX (
  136.     unsigned char* src,  int src_pels,    int src_lines,  int src_pitch,
  137.                          int src_startx,  int src_starty,
  138.     unsigned char* yuva, int yuva_pels,   int yuva_lines, int yuva_pitch,
  139.                          int yuva_startx, int yuva_starty,
  140.     unsigned char* dst,  int dst_pels,    int dst_lines,  int dst_pitch,
  141.                          int dst_startx,  int dst_starty,
  142.     int width,  int height);
  143. int I420andI420toI420_MMX_sub (
  144. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  145.                          int src1_startx, int src1_starty,
  146. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  147.                          int src2_startx, int src2_starty,
  148. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  149.                          int dest_startx, int dest_starty,
  150. int width,  int height,  int alpha );
  151. int HXEXPORT ENTRYPOINT(I420andI420toI420_MMX) (
  152. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  153.                          int src1_startx, int src1_starty,
  154. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  155.                          int src2_startx, int src2_starty,
  156. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  157.                          int dest_startx, int dest_starty,
  158. int width,  int height,  int alpha );
  159. int HXEXPORT ENTRYPOINT(I420andYUVA_MMX) (
  160. unsigned char *src1_ptr, int src1_pels,   int src1_lines,  int src1_pitch,
  161.                          int src1_startx, int src1_starty,
  162. unsigned char *src2_ptr, int src2_pels,   int src2_lines,  int src2_pitch,
  163.                          int src2_startx, int src2_starty,
  164. unsigned char *dest_ptr, int dest_pels,   int dest_lines,  int dest_pitch,
  165.                          int dest_startx, int dest_starty,
  166. int width,  int height,  int color_format);
  167. #ifdef __cplusplus
  168. }
  169. #endif /* __cplusplus */ 
  170. #endif /* _YUVALPHA_H_ */