[cvs] / xvidcore / src / image / colorspace.h Repository:
ViewVC logotype

Diff of /xvidcore/src/image/colorspace.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5, Sat Feb 15 15:22:18 2003 UTC revision 1.6, Mon Mar 22 22:36:23 2004 UTC
# Line 1  Line 1 
1    /*****************************************************************************
2     *
3     *  XVID MPEG-4 VIDEO CODEC
4     *  - Colorspace related header  -
5     *
6     *  Copyright(C) 2001-2003 Peter Ross <pross@xvid.org>
7     *
8     *  This program is free software ; you can redistribute it and/or modify
9     *  it under the terms of the GNU General Public License as published by
10     *  the Free Software Foundation ; either version 2 of the License, or
11     *  (at your option) any later version.
12     *
13     *  This program is distributed in the hope that it will be useful,
14     *  but WITHOUT ANY WARRANTY ; without even the implied warranty of
15     *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     *  GNU General Public License for more details.
17     *
18     *  You should have received a copy of the GNU General Public License
19     *  along with this program ; if not, write to the Free Software
20     *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21     *
22     * $Id$
23     *
24     ****************************************************************************/
25    
26  #ifndef _COLORSPACE_H  #ifndef _COLORSPACE_H
27  #define _COLORSPACE_H  #define _COLORSPACE_H
28    
29  #include "../portab.h"  #include "../portab.h"
 #include "../divx4.h"  
30    
31  /* initialize tables */  /* initialize tables */
32    
# Line 34  Line 58 
58  extern packedFuncPtr bgra_to_yv12;  extern packedFuncPtr bgra_to_yv12;
59  extern packedFuncPtr abgr_to_yv12;  extern packedFuncPtr abgr_to_yv12;
60  extern packedFuncPtr rgba_to_yv12;  extern packedFuncPtr rgba_to_yv12;
61    extern packedFuncPtr argb_to_yv12;
62  extern packedFuncPtr yuyv_to_yv12;  extern packedFuncPtr yuyv_to_yv12;
63  extern packedFuncPtr uyvy_to_yv12;  extern packedFuncPtr uyvy_to_yv12;
64    
# Line 43  Line 68 
68  extern packedFuncPtr bgrai_to_yv12;  extern packedFuncPtr bgrai_to_yv12;
69  extern packedFuncPtr abgri_to_yv12;  extern packedFuncPtr abgri_to_yv12;
70  extern packedFuncPtr rgbai_to_yv12;  extern packedFuncPtr rgbai_to_yv12;
71    extern packedFuncPtr argbi_to_yv12;
72  extern packedFuncPtr yuyvi_to_yv12;  extern packedFuncPtr yuyvi_to_yv12;
73  extern packedFuncPtr uyvyi_to_yv12;  extern packedFuncPtr uyvyi_to_yv12;
74    
   
75  /* plain c */  /* plain c */
76  packedFunc rgb555_to_yv12_c;  packedFunc rgb555_to_yv12_c;
77  packedFunc rgb565_to_yv12_c;  packedFunc rgb565_to_yv12_c;
# Line 54  Line 79 
79  packedFunc bgra_to_yv12_c;  packedFunc bgra_to_yv12_c;
80  packedFunc abgr_to_yv12_c;  packedFunc abgr_to_yv12_c;
81  packedFunc rgba_to_yv12_c;  packedFunc rgba_to_yv12_c;
82    packedFunc argb_to_yv12_c;
83  packedFunc yuyv_to_yv12_c;  packedFunc yuyv_to_yv12_c;
84  packedFunc uyvy_to_yv12_c;  packedFunc uyvy_to_yv12_c;
85    
# Line 63  Line 89 
89  packedFunc bgrai_to_yv12_c;  packedFunc bgrai_to_yv12_c;
90  packedFunc abgri_to_yv12_c;  packedFunc abgri_to_yv12_c;
91  packedFunc rgbai_to_yv12_c;  packedFunc rgbai_to_yv12_c;
92    packedFunc argbi_to_yv12_c;
93  packedFunc yuyvi_to_yv12_c;  packedFunc yuyvi_to_yv12_c;
94  packedFunc uyvyi_to_yv12_c;  packedFunc uyvyi_to_yv12_c;
95    
96    #ifdef ARCH_IS_IA32
97  /* mmx */  /* mmx */
98  packedFunc bgr_to_yv12_mmx;  packedFunc bgr_to_yv12_mmx;
99  packedFunc bgra_to_yv12_mmx;  packedFunc bgra_to_yv12_mmx;
# Line 80  Line 107 
107  /* xmm */  /* xmm */
108  packedFunc yuyv_to_yv12_xmm;  packedFunc yuyv_to_yv12_xmm;
109  packedFunc uyvy_to_yv12_xmm;  packedFunc uyvy_to_yv12_xmm;
110    #endif
111    
112    
113  /* yv12_to_xxx colorspace conversion functions (decoder) */  /* yv12_to_xxx colorspace conversion functions (decoder) */
# Line 90  Line 118 
118  extern packedFuncPtr yv12_to_bgra;  extern packedFuncPtr yv12_to_bgra;
119  extern packedFuncPtr yv12_to_abgr;  extern packedFuncPtr yv12_to_abgr;
120  extern packedFuncPtr yv12_to_rgba;  extern packedFuncPtr yv12_to_rgba;
121    extern packedFuncPtr yv12_to_argb;
122  extern packedFuncPtr yv12_to_yuyv;  extern packedFuncPtr yv12_to_yuyv;
123  extern packedFuncPtr yv12_to_uyvy;  extern packedFuncPtr yv12_to_uyvy;
124    
# Line 99  Line 128 
128  extern packedFuncPtr yv12_to_bgrai;  extern packedFuncPtr yv12_to_bgrai;
129  extern packedFuncPtr yv12_to_abgri;  extern packedFuncPtr yv12_to_abgri;
130  extern packedFuncPtr yv12_to_rgbai;  extern packedFuncPtr yv12_to_rgbai;
131    extern packedFuncPtr yv12_to_argbi;
132  extern packedFuncPtr yv12_to_yuyvi;  extern packedFuncPtr yv12_to_yuyvi;
133  extern packedFuncPtr yv12_to_uyvyi;  extern packedFuncPtr yv12_to_uyvyi;
134    
# Line 109  Line 139 
139  packedFunc yv12_to_bgra_c;  packedFunc yv12_to_bgra_c;
140  packedFunc yv12_to_abgr_c;  packedFunc yv12_to_abgr_c;
141  packedFunc yv12_to_rgba_c;  packedFunc yv12_to_rgba_c;
142    packedFunc yv12_to_argb_c;
143  packedFunc yv12_to_yuyv_c;  packedFunc yv12_to_yuyv_c;
144  packedFunc yv12_to_uyvy_c;  packedFunc yv12_to_uyvy_c;
145    
# Line 118  Line 149 
149  packedFunc yv12_to_bgrai_c;  packedFunc yv12_to_bgrai_c;
150  packedFunc yv12_to_abgri_c;  packedFunc yv12_to_abgri_c;
151  packedFunc yv12_to_rgbai_c;  packedFunc yv12_to_rgbai_c;
152    packedFunc yv12_to_argbi_c;
153  packedFunc yv12_to_yuyvi_c;  packedFunc yv12_to_yuyvi_c;
154  packedFunc yv12_to_uyvyi_c;  packedFunc yv12_to_uyvyi_c;
155    
156    #ifdef ARCH_IS_IA32
157  /* mmx */  /* mmx */
158  packedFunc yv12_to_bgr_mmx;  packedFunc yv12_to_bgr_mmx;
159  packedFunc yv12_to_bgra_mmx;  packedFunc yv12_to_bgra_mmx;
# Line 129  Line 162 
162    
163  packedFunc yv12_to_yuyvi_mmx;  packedFunc yv12_to_yuyvi_mmx;
164  packedFunc yv12_to_uyvyi_mmx;  packedFunc yv12_to_uyvyi_mmx;
165    #endif
166    
167    
168  typedef void (planarFunc) (  typedef void (planarFunc) (
# Line 142  Line 176 
176  extern planarFuncPtr yv12_to_yv12;  extern planarFuncPtr yv12_to_yv12;
177    
178  planarFunc yv12_to_yv12_c;  planarFunc yv12_to_yv12_c;
179    
180    #ifdef ARCH_IS_IA32
181  planarFunc yv12_to_yv12_mmx;  planarFunc yv12_to_yv12_mmx;
182  planarFunc yv12_to_yv12_xmm;  planarFunc yv12_to_yv12_xmm;
183    #endif
184    
185    
186  #endif                                                  /* _COLORSPACE_H_ */  #endif                                                  /* _COLORSPACE_H_ */

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4