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