annotate libswscale/swscale-example.c @ 18949:51aeef9ada52

Improve windows gui support
author reimar
date Sat, 08 Jul 2006 15:00:37 +0000
parents 8579acff875e
children c4dac777b44c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
1 /*
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
2 Copyright (C) 2003 Michael Niedermayer <michaelni@gmx.at>
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
3
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
4 This program is free software; you can redistribute it and/or modify
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
5 it under the terms of the GNU General Public License as published by
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
6 the Free Software Foundation; either version 2 of the License, or
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
7 (at your option) any later version.
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
8
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
9 This program is distributed in the hope that it will be useful,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
12 GNU General Public License for more details.
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
13
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
14 You should have received a copy of the GNU General Public License
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
15 along with this program; if not, write to the Free Software
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
17 */
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
18
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
19 #include <stdio.h>
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
20 #include <stdlib.h>
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
21 #include <string.h>
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
22 #include <inttypes.h>
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
23 #include <stdarg.h>
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
24
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
25 #include "config.h"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
26
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
27 #include "swscale.h"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
28 #include "libvo/img_format.h"
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
29
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
30 static int testFormat[]={
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
31 IMGFMT_YVU9,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
32 IMGFMT_YV12,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
33 //IMGFMT_IYUV,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
34 IMGFMT_I420,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
35 IMGFMT_BGR15,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
36 IMGFMT_BGR16,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
37 IMGFMT_BGR24,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
38 IMGFMT_BGR32,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
39 IMGFMT_RGB24,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
40 IMGFMT_RGB32,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
41 //IMGFMT_Y8,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
42 IMGFMT_Y800,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
43 //IMGFMT_YUY2,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
44 0
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
45 };
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
46
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
47 static uint64_t getSSD(uint8_t *src1, uint8_t *src2, int stride1, int stride2, int w, int h){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
48 int x,y;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
49 uint64_t ssd=0;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
50
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
51 //printf("%d %d\n", w, h);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
52
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
53 for(y=0; y<h; y++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
54 for(x=0; x<w; x++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
55 int d= src1[x + y*stride1] - src2[x + y*stride2];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
56 ssd+= d*d;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
57 //printf("%d", abs(src1[x + y*stride1] - src2[x + y*stride2])/26 );
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
58 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
59 //printf("\n");
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
60 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
61 return ssd;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
62 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
63
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
64 // test by ref -> src -> dst -> out & compare out against ref
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
65 // ref & out are YV12
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
66 static void doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat, int dstFormat,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
67 int srcW, int srcH, int dstW, int dstH, int flags){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
68 uint8_t *src[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
69 uint8_t *dst[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
70 uint8_t *out[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
71 int srcStride[3], dstStride[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
72 int i;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
73 uint64_t ssdY, ssdU, ssdV;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
74 struct SwsContext *srcContext, *dstContext, *outContext;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
75
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
76 for(i=0; i<3; i++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
77 // avoid stride % bpp != 0
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
78 if(srcFormat==IMGFMT_RGB24 || srcFormat==IMGFMT_BGR24)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
79 srcStride[i]= srcW*3;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
80 else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
81 srcStride[i]= srcW*4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
82
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
83 if(dstFormat==IMGFMT_RGB24 || dstFormat==IMGFMT_BGR24)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
84 dstStride[i]= dstW*3;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
85 else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
86 dstStride[i]= dstW*4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
87
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
88 src[i]= (uint8_t*) malloc(srcStride[i]*srcH);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
89 dst[i]= (uint8_t*) malloc(dstStride[i]*dstH);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
90 out[i]= (uint8_t*) malloc(refStride[i]*h);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
91 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
92
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
93 srcContext= sws_getContext(w, h, IMGFMT_YV12, srcW, srcH, srcFormat, flags, NULL, NULL, NULL);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
94 dstContext= sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat, flags, NULL, NULL, NULL);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
95 outContext= sws_getContext(dstW, dstH, dstFormat, w, h, IMGFMT_YV12, flags, NULL, NULL, NULL);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
96 if(srcContext==NULL ||dstContext==NULL ||outContext==NULL){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
97 printf("Failed allocating swsContext\n");
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
98 goto end;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
99 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
100 // printf("test %X %X %X -> %X %X %X\n", (int)ref[0], (int)ref[1], (int)ref[2],
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
101 // (int)src[0], (int)src[1], (int)src[2]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
102
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
103 sws_scale(srcContext, ref, refStride, 0, h , src, srcStride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
104 sws_scale(dstContext, src, srcStride, 0, srcH, dst, dstStride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
105 sws_scale(outContext, dst, dstStride, 0, dstH, out, refStride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
106
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
107 #if defined(ARCH_X86) || defined(ARCH_X86_64)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
108 asm volatile ("emms\n\t");
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
109 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
110
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
111 ssdY= getSSD(ref[0], out[0], refStride[0], refStride[0], w, h);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
112 ssdU= getSSD(ref[1], out[1], refStride[1], refStride[1], (w+1)>>1, (h+1)>>1);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
113 ssdV= getSSD(ref[2], out[2], refStride[2], refStride[2], (w+1)>>1, (h+1)>>1);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
114
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
115 if(srcFormat == IMGFMT_Y800 || dstFormat==IMGFMT_Y800) ssdU=ssdV=0; //FIXME check that output is really gray
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
116
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
117 ssdY/= w*h;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
118 ssdU/= w*h/4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
119 ssdV/= w*h/4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
120
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
121 if(ssdY>100 || ssdU>100 || ssdV>100){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
122 printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5lld,%5lld,%5lld\n",
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
123 vo_format_name(srcFormat), srcW, srcH,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
124 vo_format_name(dstFormat), dstW, dstH,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
125 flags,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
126 ssdY, ssdU, ssdV);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
127 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
128
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
129 end:
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
130
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
131 sws_freeContext(srcContext);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
132 sws_freeContext(dstContext);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
133 sws_freeContext(outContext);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
134
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
135 for(i=0; i<3; i++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
136 free(src[i]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
137 free(dst[i]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
138 free(out[i]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
139 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
140 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
141
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
142 void mp_msg( int x, int y, const char *format, ... ){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
143 va_list va;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
144 va_start(va, format);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
145 vfprintf(stderr, format, va);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
146 va_end(va);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
147 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
148
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
149 void fast_memcpy(void *a, void *b, int s){ //FIXME
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
150 memcpy(a, b, s);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
151 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
152
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
153 static void selfTest(uint8_t *src[3], int stride[3], int w, int h){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
154 int srcFormat, dstFormat, srcFormatIndex, dstFormatIndex;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
155 int srcW, srcH, dstW, dstH;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
156 int flags;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
157
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
158 for(srcFormatIndex=0; ;srcFormatIndex++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
159 srcFormat= testFormat[srcFormatIndex];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
160 if(!srcFormat) break;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
161 for(dstFormatIndex=0; ;dstFormatIndex++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
162 dstFormat= testFormat[dstFormatIndex];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
163 if(!dstFormat) break;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
164 // if(!isSupportedOut(dstFormat)) continue;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
165 printf("%s -> %s\n",
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
166 vo_format_name(srcFormat),
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
167 vo_format_name(dstFormat));
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
168
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
169 srcW= w;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
170 srcH= h;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
171 for(dstW=w - w/3; dstW<= 4*w/3; dstW+= w/3){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
172 for(dstH=h - h/3; dstH<= 4*h/3; dstH+= h/3){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
173 for(flags=1; flags<33; flags*=2)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
174 doTest(src, stride, w, h, srcFormat, dstFormat,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
175 srcW, srcH, dstW, dstH, flags);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
176 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
177 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
178 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
179 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
180 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
181
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
182 #define W 96
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
183 #define H 96
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
184
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
185 int main(int argc, char **argv){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
186 uint8_t rgb_data[W*H*4];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
187 uint8_t *rgb_src[3]= {rgb_data, NULL, NULL};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
188 int rgb_stride[3]={4*W, 0, 0};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
189 uint8_t data[3][W*H];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
190 uint8_t *src[3]= {data[0], data[1], data[2]};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
191 int stride[3]={W, W, W};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
192 int x, y;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
193 struct SwsContext *sws;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
194
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
195 sws= sws_getContext(W/12, H/12, IMGFMT_BGR32, W, H, IMGFMT_YV12, 2, NULL, NULL, NULL);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
196
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
197 for(y=0; y<H; y++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
198 for(x=0; x<W*4; x++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
199 rgb_data[ x + y*4*W]= random();
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
200 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
201 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
202 #if defined(ARCH_X86) || defined(ARCH_X86_64)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
203 sws_rgb2rgb_init(SWS_CPU_CAPS_MMX*0);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
204 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
205 sws_rgb2rgb_init(0);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
206 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
207 sws_scale(sws, rgb_src, rgb_stride, 0, H , src, stride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
208
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
209 #if defined(ARCH_X86) || defined(ARCH_X86_64)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
210 asm volatile ("emms\n\t");
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
211 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
212
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
213 selfTest(src, stride, W, H);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
214
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
215 return 123;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
216 }