You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

261 lines
8.3KB

  1. /*
  2. * Copyright (C) 2003 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  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.
  10. *
  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.
  15. *
  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
  19. */
  20. #include <stdio.h>
  21. #include <stdlib.h>
  22. #include <string.h>
  23. #include <inttypes.h>
  24. #include <stdarg.h>
  25. #undef HAVE_AV_CONFIG_H
  26. #include "libavutil/mem.h"
  27. #include "libavutil/avutil.h"
  28. #include "libavutil/lfg.h"
  29. #include "swscale.h"
  30. /* HACK Duplicated from swscale_internal.h.
  31. * Should be removed when a cleaner pixel format system exists. */
  32. const char *sws_format_name(enum PixelFormat format);
  33. #define isGray(x) ( \
  34. (x)==PIX_FMT_GRAY8 \
  35. || (x)==PIX_FMT_GRAY16BE \
  36. || (x)==PIX_FMT_GRAY16LE \
  37. )
  38. #define hasChroma(x) (!( \
  39. isGray(x) \
  40. || (x)==PIX_FMT_MONOBLACK \
  41. || (x)==PIX_FMT_MONOWHITE \
  42. ))
  43. #define isALPHA(x) ( \
  44. (x)==PIX_FMT_BGR32 \
  45. || (x)==PIX_FMT_BGR32_1 \
  46. || (x)==PIX_FMT_RGB32 \
  47. || (x)==PIX_FMT_RGB32_1 \
  48. || (x)==PIX_FMT_YUVA420P \
  49. )
  50. static uint64_t getSSD(uint8_t *src1, uint8_t *src2, int stride1, int stride2, int w, int h)
  51. {
  52. int x,y;
  53. uint64_t ssd=0;
  54. //printf("%d %d\n", w, h);
  55. for (y=0; y<h; y++) {
  56. for (x=0; x<w; x++) {
  57. int d= src1[x + y*stride1] - src2[x + y*stride2];
  58. ssd+= d*d;
  59. //printf("%d", abs(src1[x + y*stride1] - src2[x + y*stride2])/26 );
  60. }
  61. //printf("\n");
  62. }
  63. return ssd;
  64. }
  65. // test by ref -> src -> dst -> out & compare out against ref
  66. // ref & out are YV12
  67. static int doTest(uint8_t *ref[4], int refStride[4], int w, int h,
  68. enum PixelFormat srcFormat, enum PixelFormat dstFormat,
  69. int srcW, int srcH, int dstW, int dstH, int flags)
  70. {
  71. uint8_t *src[4] = {0};
  72. uint8_t *dst[4] = {0};
  73. uint8_t *out[4] = {0};
  74. int srcStride[4], dstStride[4];
  75. int i;
  76. uint64_t ssdY, ssdU=0, ssdV=0, ssdA=0;
  77. struct SwsContext *srcContext = NULL, *dstContext = NULL,
  78. *outContext = NULL;
  79. int res;
  80. res = 0;
  81. for (i=0; i<4; i++) {
  82. // avoid stride % bpp != 0
  83. if (srcFormat==PIX_FMT_RGB24 || srcFormat==PIX_FMT_BGR24)
  84. srcStride[i]= srcW*3;
  85. else if (srcFormat==PIX_FMT_RGB48BE || srcFormat==PIX_FMT_RGB48LE)
  86. srcStride[i]= srcW*6;
  87. else
  88. srcStride[i]= srcW*4;
  89. if (dstFormat==PIX_FMT_RGB24 || dstFormat==PIX_FMT_BGR24)
  90. dstStride[i]= dstW*3;
  91. else if (dstFormat==PIX_FMT_RGB48BE || dstFormat==PIX_FMT_RGB48LE)
  92. dstStride[i]= dstW*6;
  93. else
  94. dstStride[i]= dstW*4;
  95. /* Image buffers passed into libswscale can be allocated any way you
  96. * prefer, as long as they're aligned enough for the architecture, and
  97. * they're freed appropriately (such as using av_free for buffers
  98. * allocated with av_malloc). */
  99. src[i]= av_mallocz(srcStride[i]*srcH);
  100. dst[i]= av_mallocz(dstStride[i]*dstH);
  101. out[i]= av_mallocz(refStride[i]*h);
  102. if (!src[i] || !dst[i] || !out[i]) {
  103. perror("Malloc");
  104. res = -1;
  105. goto end;
  106. }
  107. }
  108. srcContext= sws_getContext(w, h, PIX_FMT_YUVA420P, srcW, srcH, srcFormat, flags, NULL, NULL, NULL);
  109. if (!srcContext) {
  110. fprintf(stderr, "Failed to get %s ---> %s\n",
  111. sws_format_name(PIX_FMT_YUVA420P),
  112. sws_format_name(srcFormat));
  113. res = -1;
  114. goto end;
  115. }
  116. dstContext= sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat, flags, NULL, NULL, NULL);
  117. if (!dstContext) {
  118. fprintf(stderr, "Failed to get %s ---> %s\n",
  119. sws_format_name(srcFormat),
  120. sws_format_name(dstFormat));
  121. res = -1;
  122. goto end;
  123. }
  124. outContext= sws_getContext(dstW, dstH, dstFormat, w, h, PIX_FMT_YUVA420P, flags, NULL, NULL, NULL);
  125. if (!outContext) {
  126. fprintf(stderr, "Failed to get %s ---> %s\n",
  127. sws_format_name(dstFormat),
  128. sws_format_name(PIX_FMT_YUVA420P));
  129. res = -1;
  130. goto end;
  131. }
  132. // printf("test %X %X %X -> %X %X %X\n", (int)ref[0], (int)ref[1], (int)ref[2],
  133. // (int)src[0], (int)src[1], (int)src[2]);
  134. sws_scale(srcContext, ref, refStride, 0, h , src, srcStride);
  135. sws_scale(dstContext, src, srcStride, 0, srcH, dst, dstStride);
  136. sws_scale(outContext, dst, dstStride, 0, dstH, out, refStride);
  137. ssdY= getSSD(ref[0], out[0], refStride[0], refStride[0], w, h);
  138. if (hasChroma(srcFormat) && hasChroma(dstFormat)) {
  139. //FIXME check that output is really gray
  140. ssdU= getSSD(ref[1], out[1], refStride[1], refStride[1], (w+1)>>1, (h+1)>>1);
  141. ssdV= getSSD(ref[2], out[2], refStride[2], refStride[2], (w+1)>>1, (h+1)>>1);
  142. }
  143. if (isALPHA(srcFormat) && isALPHA(dstFormat))
  144. ssdA= getSSD(ref[3], out[3], refStride[3], refStride[3], w, h);
  145. ssdY/= w*h;
  146. ssdU/= w*h/4;
  147. ssdV/= w*h/4;
  148. ssdA/= w*h;
  149. printf(" %s %dx%d -> %s %4dx%4d flags=%2d SSD=%5"PRId64",%5"PRId64",%5"PRId64",%5"PRId64"\n",
  150. sws_format_name(srcFormat), srcW, srcH,
  151. sws_format_name(dstFormat), dstW, dstH,
  152. flags, ssdY, ssdU, ssdV, ssdA);
  153. fflush(stdout);
  154. end:
  155. sws_freeContext(srcContext);
  156. sws_freeContext(dstContext);
  157. sws_freeContext(outContext);
  158. for (i=0; i<4; i++) {
  159. av_free(src[i]);
  160. av_free(dst[i]);
  161. av_free(out[i]);
  162. }
  163. return res;
  164. }
  165. static void selfTest(uint8_t *ref[4], int refStride[4], int w, int h)
  166. {
  167. const int flags[] = { SWS_FAST_BILINEAR,
  168. SWS_BILINEAR, SWS_BICUBIC,
  169. SWS_X , SWS_POINT , SWS_AREA, 0 };
  170. const int srcW = w;
  171. const int srcH = h;
  172. const int dstW[] = { srcW - srcW/3, srcW, srcW + srcW/3, 0 };
  173. const int dstH[] = { srcH - srcH/3, srcH, srcH + srcH/3, 0 };
  174. enum PixelFormat srcFormat, dstFormat;
  175. for (srcFormat = 0; srcFormat < PIX_FMT_NB; srcFormat++) {
  176. if (!sws_isSupportedInput(srcFormat) || !sws_isSupportedOutput(srcFormat))
  177. continue;
  178. for (dstFormat = 0; dstFormat < PIX_FMT_NB; dstFormat++) {
  179. int i, j, k;
  180. int res = 0;
  181. if (!sws_isSupportedInput(dstFormat) || !sws_isSupportedOutput(dstFormat))
  182. continue;
  183. printf("%s -> %s\n",
  184. sws_format_name(srcFormat),
  185. sws_format_name(dstFormat));
  186. fflush(stdout);
  187. for (i = 0; dstW[i] && !res; i++)
  188. for (j = 0; dstH[j] && !res; j++)
  189. for (k = 0; flags[k] && !res; k++)
  190. res = doTest(ref, refStride, w, h, srcFormat, dstFormat,
  191. srcW, srcH, dstW[i], dstH[j], flags[k]);
  192. }
  193. }
  194. }
  195. #define W 96
  196. #define H 96
  197. int main(int argc, char **argv)
  198. {
  199. uint8_t *rgb_data = av_malloc (W*H*4);
  200. uint8_t *rgb_src[3]= {rgb_data, NULL, NULL};
  201. int rgb_stride[3]={4*W, 0, 0};
  202. uint8_t *data = av_malloc (4*W*H);
  203. uint8_t *src[4]= {data, data+W*H, data+W*H*2, data+W*H*3};
  204. int stride[4]={W, W, W, W};
  205. int x, y;
  206. struct SwsContext *sws;
  207. AVLFG rand;
  208. if (!rgb_data || !data)
  209. return -1;
  210. sws= sws_getContext(W/12, H/12, PIX_FMT_RGB32, W, H, PIX_FMT_YUVA420P, SWS_BILINEAR, NULL, NULL, NULL);
  211. av_lfg_init(&rand, 1);
  212. for (y=0; y<H; y++) {
  213. for (x=0; x<W*4; x++) {
  214. rgb_data[ x + y*4*W]= av_lfg_get(&rand);
  215. }
  216. }
  217. sws_scale(sws, rgb_src, rgb_stride, 0, H, src, stride);
  218. sws_freeContext(sws);
  219. av_free(rgb_data);
  220. selfTest(src, stride, W, H);
  221. av_free(data);
  222. return 0;
  223. }