2 * Copyright (C) 2002 Michael Niedermayer <michaelni@gmx.at>
4 * This file is part of FFmpeg.
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 #include <string.h> /* for memset() */
34 #define FUNC(s,d,n) {s,d,#n,n}
38 static char *args_parse(int argc
, char *argv
[])
42 while ((o
= getopt(argc
, argv
, "m23")) != -1) {
45 cpu_caps
|= SWS_CPU_CAPS_MMX
;
48 cpu_caps
|= SWS_CPU_CAPS_MMX2
;
51 cpu_caps
|= SWS_CPU_CAPS_3DNOW
;
54 av_log(NULL
, AV_LOG_ERROR
, "Unknown option %c\n", o
);
61 int main(int argc
, char **argv
)
64 uint8_t *srcBuffer
= (uint8_t*)av_malloc(SIZE
);
65 uint8_t *dstBuffer
= (uint8_t*)av_malloc(SIZE
);
69 av_log(NULL
, AV_LOG_INFO
, "memory corruption test ...\n");
70 args_parse(argc
, argv
);
71 av_log(NULL
, AV_LOG_INFO
, "CPU capabilities forced to %x\n", cpu_caps
);
72 sws_rgb2rgb_init(cpu_caps
);
74 for(funcNum
=0; ; funcNum
++){
79 void (*func
)(const uint8_t *src
, uint8_t *dst
, long src_size
);
81 FUNC(2, 2, rgb15to16
),
82 FUNC(2, 3, rgb15to24
),
83 FUNC(2, 4, rgb15to32
),
84 FUNC(2, 3, rgb16to24
),
85 FUNC(2, 4, rgb16to32
),
86 FUNC(3, 2, rgb24to15
),
87 FUNC(3, 2, rgb24to16
),
88 FUNC(3, 4, rgb24to32
),
89 FUNC(4, 2, rgb32to15
),
90 FUNC(4, 2, rgb32to16
),
91 FUNC(4, 3, rgb32to24
),
92 FUNC(2, 2, rgb16to15
),
93 FUNC(2, 2, rgb15tobgr15
),
94 FUNC(2, 2, rgb15tobgr16
),
95 FUNC(2, 3, rgb15tobgr24
),
96 FUNC(2, 4, rgb15tobgr32
),
97 FUNC(2, 2, rgb16tobgr15
),
98 FUNC(2, 2, rgb16tobgr16
),
99 FUNC(2, 3, rgb16tobgr24
),
100 FUNC(2, 4, rgb16tobgr32
),
101 FUNC(3, 2, rgb24tobgr15
),
102 FUNC(3, 2, rgb24tobgr16
),
103 FUNC(3, 3, rgb24tobgr24
),
104 FUNC(3, 4, rgb24tobgr32
),
105 FUNC(4, 2, rgb32tobgr15
),
106 FUNC(4, 2, rgb32tobgr16
),
107 FUNC(4, 3, rgb32tobgr24
),
108 FUNC(4, 4, rgb32tobgr32
),
116 if (!func_info
[funcNum
].func
) break;
118 av_log(NULL
, AV_LOG_INFO
,".");
119 memset(srcBuffer
, srcByte
, SIZE
);
121 for(width
=63; width
>0; width
--){
123 for(dstOffset
=128; dstOffset
<196; dstOffset
+=4){
125 memset(dstBuffer
, dstByte
, SIZE
);
127 for(srcOffset
=128; srcOffset
<196; srcOffset
+=4){
128 uint8_t *src
= srcBuffer
+srcOffset
;
129 uint8_t *dst
= dstBuffer
+dstOffset
;
130 const char *name
=NULL
;
132 if(failed
) break; //don't fill the screen with shit ...
134 srcBpp
= func_info
[funcNum
].src_bpp
;
135 dstBpp
= func_info
[funcNum
].dst_bpp
;
136 name
= func_info
[funcNum
].name
;
138 func_info
[funcNum
].func(src
, dst
, width
*srcBpp
);
142 for(i
=0; i
<SIZE
; i
++){
143 if(srcBuffer
[i
]!=srcByte
){
144 av_log(NULL
, AV_LOG_INFO
, "src damaged at %d w:%d src:%d dst:%d %s\n",
145 i
, width
, srcOffset
, dstOffset
, name
);
150 for(i
=0; i
<dstOffset
; i
++){
151 if(dstBuffer
[i
]!=dstByte
){
152 av_log(NULL
, AV_LOG_INFO
, "dst damaged at %d w:%d src:%d dst:%d %s\n",
153 i
, width
, srcOffset
, dstOffset
, name
);
158 for(i
=dstOffset
+ width
*dstBpp
; i
<SIZE
; i
++){
159 if(dstBuffer
[i
]!=dstByte
){
160 av_log(NULL
, AV_LOG_INFO
, "dst damaged at %d w:%d src:%d dst:%d %s\n",
161 i
, width
, srcOffset
, dstOffset
, name
);
169 if(failed
) failedNum
++;
170 else if(srcBpp
) passedNum
++;
173 av_log(NULL
, AV_LOG_INFO
, "\n%d converters passed, %d converters randomly overwrote memory\n", passedNum
, failedNum
);