annotate postproc/swscale-example.c @ 10019:0ea7b9c6c27f

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