annotate libswscale/swscale-example.c @ 20040:fa421226cfc7

r20041: Add IDs to some examples/tables. r20043: (Fix hz with Hz typo) no real change was needed Also fixed some small typos and translation errors
author voroshil
date Wed, 04 Oct 2006 17:52:55 +0000
parents d7cf54666334
children aca9e9783f67
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
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
25 #undef HAVE_AV_CONFIG_H
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
26 #include "avutil.h"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
27 #include "swscale.h"
20031
d7cf54666334 Fix warnings:
diego
parents: 19959
diff changeset
28 #include "swscale_internal.h"
d7cf54666334 Fix warnings:
diego
parents: 19959
diff changeset
29 #include "rgb2rgb.h"
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
30
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
31 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
32 int x,y;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
33 uint64_t ssd=0;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
34
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
35 //printf("%d %d\n", w, h);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
36
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
37 for(y=0; y<h; y++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
38 for(x=0; x<w; x++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
39 int d= src1[x + y*stride1] - src2[x + y*stride2];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
40 ssd+= d*d;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
41 //printf("%d", abs(src1[x + y*stride1] - src2[x + y*stride2])/26 );
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
42 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
43 //printf("\n");
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
44 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
45 return ssd;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
46 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
47
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
48 // test by ref -> src -> dst -> out & compare out against ref
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
49 // ref & out are YV12
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
50 static int doTest(uint8_t *ref[3], int refStride[3], int w, int h, int srcFormat, int dstFormat,
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
51 int srcW, int srcH, int dstW, int dstH, int flags){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
52 uint8_t *src[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
53 uint8_t *dst[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
54 uint8_t *out[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
55 int srcStride[3], dstStride[3];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
56 int i;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
57 uint64_t ssdY, ssdU, ssdV;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
58 struct SwsContext *srcContext, *dstContext, *outContext;
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
59 int res;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
60
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
61 res = 0;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
62 for(i=0; i<3; i++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
63 // avoid stride % bpp != 0
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
64 if(srcFormat==PIX_FMT_RGB24 || srcFormat==PIX_FMT_BGR24)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
65 srcStride[i]= srcW*3;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
66 else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
67 srcStride[i]= srcW*4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
68
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
69 if(dstFormat==PIX_FMT_RGB24 || dstFormat==PIX_FMT_BGR24)
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
70 dstStride[i]= dstW*3;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
71 else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
72 dstStride[i]= dstW*4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
73
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
74 src[i]= (uint8_t*) malloc(srcStride[i]*srcH);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
75 dst[i]= (uint8_t*) malloc(dstStride[i]*dstH);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
76 out[i]= (uint8_t*) malloc(refStride[i]*h);
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
77 if ((src[i] == NULL) || (dst[i] == NULL) || (out[i] == NULL)) {
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
78 perror("Malloc");
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
79 res = -1;
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
80
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
81 goto end;
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
82 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
83 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
84
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
85 dstContext = outContext = NULL;
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
86 srcContext= sws_getContext(w, h, PIX_FMT_YUV420P, srcW, srcH, srcFormat, flags, NULL, NULL, NULL);
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
87 if (srcContext == NULL) {
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
88 fprintf(stderr, "Failed to get %s ---> %s\n",
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
89 sws_format_name(PIX_FMT_YUV420P),
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
90 sws_format_name(srcFormat));
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
91 res = -1;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
92
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
93 goto end;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
94 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
95 dstContext= sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat, flags, NULL, NULL, NULL);
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
96 if (dstContext == NULL) {
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
97 fprintf(stderr, "Failed to get %s ---> %s\n",
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
98 sws_format_name(srcFormat),
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
99 sws_format_name(dstFormat));
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
100 res = -1;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
101
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
102 goto end;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
103 }
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
104 outContext= sws_getContext(dstW, dstH, dstFormat, w, h, PIX_FMT_YUV420P, flags, NULL, NULL, NULL);
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
105 if (outContext == NULL) {
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
106 fprintf(stderr, "Failed to get %s ---> %s\n",
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
107 sws_format_name(dstFormat),
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
108 sws_format_name(PIX_FMT_YUV420P));
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
109 res = -1;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
110
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
111 goto end;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
112 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
113 // 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
114 // (int)src[0], (int)src[1], (int)src[2]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
115
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
116 sws_scale(srcContext, ref, refStride, 0, h , src, srcStride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
117 sws_scale(dstContext, src, srcStride, 0, srcH, dst, dstStride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
118 sws_scale(outContext, dst, dstStride, 0, dstH, out, refStride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
119
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
120 #if defined(ARCH_X86) || defined(ARCH_X86_64)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
121 asm volatile ("emms\n\t");
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
122 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
123
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
124 ssdY= getSSD(ref[0], out[0], refStride[0], refStride[0], w, h);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
125 ssdU= getSSD(ref[1], out[1], refStride[1], refStride[1], (w+1)>>1, (h+1)>>1);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
126 ssdV= getSSD(ref[2], out[2], refStride[2], refStride[2], (w+1)>>1, (h+1)>>1);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
127
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
128 if(srcFormat == PIX_FMT_GRAY8 || dstFormat==PIX_FMT_GRAY8) ssdU=ssdV=0; //FIXME check that output is really gray
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
129
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
130 ssdY/= w*h;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
131 ssdU/= w*h/4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
132 ssdV/= w*h/4;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
133
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
134 if(ssdY>100 || ssdU>100 || ssdV>100){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
135 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
136 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
137 sws_format_name(dstFormat), dstW, dstH,
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
138 flags,
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
139 ssdY, ssdU, ssdV);
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 end:
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
143
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
144 sws_freeContext(srcContext);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
145 sws_freeContext(dstContext);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
146 sws_freeContext(outContext);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
147
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
148 for(i=0; i<3; i++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
149 free(src[i]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
150 free(dst[i]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
151 free(out[i]);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
152 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
153
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
154 return res;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
155 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
156
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
157 void fast_memcpy(void *a, void *b, int s){ //FIXME
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
158 memcpy(a, b, s);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
159 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
160
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
161 static void selfTest(uint8_t *src[3], int stride[3], int w, int h){
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
162 enum PixelFormat srcFormat, dstFormat;
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
163 int srcW, srcH, dstW, dstH;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
164 int flags;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
165
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
166 for(srcFormat = 0; srcFormat < PIX_FMT_NB; srcFormat++) {
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
167 for(dstFormat = 0; dstFormat < PIX_FMT_NB; dstFormat++) {
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
168 printf("%s -> %s\n",
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
169 sws_format_name(srcFormat),
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
170 sws_format_name(dstFormat));
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
171
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
172 srcW= w;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
173 srcH= h;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
174 for(dstW=w - w/3; dstW<= 4*w/3; dstW+= w/3){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
175 for(dstH=h - h/3; dstH<= 4*h/3; dstH+= h/3){
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
176 for(flags=1; flags<33; flags*=2) {
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
177 int res;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
178
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
179 res = doTest(src, stride, w, h, srcFormat, dstFormat,
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
180 srcW, srcH, dstW, dstH, flags);
19959
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
181 if (res < 0) {
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
182 dstW = 4 * w / 3;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
183 dstH = 4 * h / 3;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
184 flags = 33;
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
185 }
8ae8ee951284 Improve swscale-example to test conversions between all the possible
lucabe
parents: 19872
diff changeset
186 }
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
187 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
188 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
189 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
190 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
191 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
192
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
193 #define W 96
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
194 #define H 96
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
195
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
196 int main(int argc, char **argv){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
197 uint8_t rgb_data[W*H*4];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
198 uint8_t *rgb_src[3]= {rgb_data, NULL, NULL};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
199 int rgb_stride[3]={4*W, 0, 0};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
200 uint8_t data[3][W*H];
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
201 uint8_t *src[3]= {data[0], data[1], data[2]};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
202 int stride[3]={W, W, W};
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
203 int x, y;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
204 struct SwsContext *sws;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
205
19872
8e50cba9fe03 Remove the dependency of libswscale on img_format.h
lucabe
parents: 19431
diff changeset
206 sws= sws_getContext(W/12, H/12, PIX_FMT_RGB32, W, H, PIX_FMT_YUV420P, 2, NULL, NULL, NULL);
18861
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
207
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
208 for(y=0; y<H; y++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
209 for(x=0; x<W*4; x++){
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
210 rgb_data[ x + y*4*W]= random();
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
211 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
212 }
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
213 #if defined(ARCH_X86) || defined(ARCH_X86_64)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
214 sws_rgb2rgb_init(SWS_CPU_CAPS_MMX*0);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
215 #else
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
216 sws_rgb2rgb_init(0);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
217 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
218 sws_scale(sws, rgb_src, rgb_stride, 0, H , src, stride);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
219
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
220 #if defined(ARCH_X86) || defined(ARCH_X86_64)
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
221 asm volatile ("emms\n\t");
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
222 #endif
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
223
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
224 selfTest(src, stride, W, H);
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
225
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
226 return 123;
8579acff875e Move postproc ---> libswscale
lucabe
parents:
diff changeset
227 }