~ubuntu-branches/ubuntu/hardy/avidemux/hardy

« back to all changes in this revision

Viewing changes to avidemux/ADM_libswscale/swscale-example.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2006-12-15 17:13:20 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061215171320-w79pvpehxx2fr217
Tags: 1:2.3.0-0.0ubuntu1
* Merge from debian-multimedia.org, remaining Ubuntu change:
  - desktop file,
  - no support for ccache and make -j.
* Closes Ubuntu: #69614.

Show diffs side-by-side

added added

removed removed

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