27 #undef HAVE_AV_CONFIG_H
40 ((x) == AV_PIX_FMT_GRAY8 || \
41 (x) == AV_PIX_FMT_YA8 || \
42 (x) == AV_PIX_FMT_GRAY16BE || \
43 (x) == AV_PIX_FMT_GRAY16LE || \
44 (x) == AV_PIX_FMT_YA16BE || \
45 (x) == AV_PIX_FMT_YA16LE)
46 #define hasChroma(x) \
48 (x) == AV_PIX_FMT_MONOBLACK || \
49 (x) == AV_PIX_FMT_MONOWHITE))
51 ((x) == AV_PIX_FMT_BGR32 || \
52 (x) == AV_PIX_FMT_BGR32_1 || \
53 (x) == AV_PIX_FMT_RGB32 || \
54 (x) == AV_PIX_FMT_RGB32_1 || \
55 (x) == AV_PIX_FMT_YUVA420P)
58 int stride2,
int w,
int h)
63 for (y = 0; y <
h; y++) {
64 for (x = 0; x < w; x++) {
65 int d = src1[x + y * stride1] - src2[x + y * stride2];
84 int srcW,
int srcH,
int dstW,
int dstH,
int flags,
91 static int cur_srcW, cur_srcH;
93 static int srcStride[4];
96 int dstStride[4] = {0};
98 uint64_t ssdY, ssdU = 0, ssdV = 0, ssdA = 0;
103 if (cur_srcFormat != srcFormat || cur_srcW != srcW || cur_srcH != srcH) {
107 for (p = 0; p < 4; p++)
112 fprintf(stderr,
"av_image_fill_linesizes failed\n");
115 for (p = 0; p < 4; p++) {
116 srcStride[p] =
FFALIGN(srcStride[p], 16);
118 src[p] =
av_mallocz(srcStride[p] * srcH + 16);
119 if (srcStride[p] && !src[p]) {
128 fprintf(stderr,
"Failed to get %s ---> %s\n",
134 sws_scale(srcContext, (
const uint8_t *
const*)ref, refStride, 0, h, src, srcStride);
144 fprintf(stderr,
"av_image_fill_linesizes failed\n");
148 for (i = 0; i < 4; i++) {
155 dstStride[i] =
FFALIGN(dstStride[i], 16);
157 dst[i] =
av_mallocz(dstStride[i] * dstH + 16);
158 if (dstStride[i] && !dst[i]) {
166 dstContext =
sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat,
169 fprintf(stderr,
"Failed to get %s ---> %s\n",
175 printf(
" %s %dx%d -> %s %3dx%3d flags=%2d",
176 desc_src->
name, srcW, srcH,
177 desc_dst->
name, dstW, dstH,
181 sws_scale(dstContext, (
const uint8_t *
const*)src, srcStride, 0, srcH, dst, dstStride);
183 for (i = 0; i < 4 && dstStride[i]; i++)
185 dstStride[i] * dstH);
187 if (r && crc == r->
crc) {
193 for (i = 0; i < 4; i++) {
194 refStride[i] =
FFALIGN(refStride[i], 16);
197 if (refStride[i] && !out[i]) {
207 fprintf(stderr,
"Failed to get %s ---> %s\n",
209 desc_yuva420p->
name);
213 sws_scale(outContext, (
const uint8_t *
const*)dst, dstStride, 0, dstH, out, refStride);
215 ssdY =
getSSD(ref[0], out[0], refStride[0], refStride[0], w, h);
218 ssdU =
getSSD(ref[1], out[1], refStride[1], refStride[1],
219 (w + 1) >> 1, (h + 1) >> 1);
220 ssdV =
getSSD(ref[2], out[2], refStride[2], refStride[2],
221 (w + 1) >> 1, (h + 1) >> 1);
224 ssdA =
getSSD(ref[3], out[3], refStride[3], refStride[3], w, h);
233 for (i = 0; i < 4; i++)
238 printf(
" CRC=%08x SSD=%5"PRId64
",%5"PRId64
",%5"PRId64
",%5"PRId64
"\n",
239 crc, ssdY, ssdU, ssdV, ssdA);
244 for (i = 0; i < 4; i++)
259 const int dstW[] = { srcW - srcW / 3,
srcW, srcW + srcW / 3, 0 };
260 const int dstH[] = { srcH - srcH / 3,
srcH, srcH + srcH / 3, 0 };
283 printf(
"%s -> %s\n", desc_src->
name, desc_dst->
name);
286 for (k = 0; flags[k] && !res; k++)
287 for (i = 0; dstW[i] && !res; i++)
288 for (j = 0; dstH[j] && !res; j++)
289 res =
doTest(ref, refStride, w, h,
290 srcFormat, dstFormat,
291 srcW, srcH, dstW[i], dstH[j], flags[k],
307 while (fgets(buf,
sizeof(buf), fp)) {
319 " %12s %dx%d -> %12s %dx%d flags=%d CRC=%x"
320 " SSD=%"SCNd64
", %"SCNd64
", %"SCNd64
", %"SCNd64
"\n",
321 srcStr, &srcW, &srcH, dstStr, &dstW, &dstH,
324 srcStr[0] = dstStr[0] = 0;
325 ret = sscanf(buf,
"%12s -> %12s\n", srcStr, dstStr);
332 srcW > 8192
U || srcH > 8192
U || dstW > 8192
U || dstH > 8192
U) {
333 fprintf(stderr,
"malformed input file\n");
344 doTest(ref, refStride, w, h,
345 srcFormat, dstFormat,
346 srcW, srcH, dstW, dstH, flags,
356 int main(
int argc,
char **argv)
362 int rgb_stride[4] = { 4 *
W, 0, 0, 0 };
373 if (!rgb_data || !data)
376 for (i = 1; i < argc; i += 2) {
377 if (argv[i][0] !=
'-' || i + 1 == argc)
379 if (!strcmp(argv[i],
"-ref")) {
380 fp = fopen(argv[i + 1],
"r");
382 fprintf(stderr,
"could not open '%s'\n", argv[i + 1]);
385 }
else if (!strcmp(argv[i],
"-src")) {
388 fprintf(stderr,
"invalid pixel format %s\n", argv[i + 1]);
391 }
else if (!strcmp(argv[i],
"-dst")) {
394 fprintf(stderr,
"invalid pixel format %s\n", argv[i + 1]);
399 fprintf(stderr,
"bad option or argument missing (%s)\n", argv[i]);
409 for (y = 0; y <
H; y++)
410 for (x = 0; x <
W * 4; x++)
412 sws_scale(sws, rgb_src, rgb_stride, 0, H / 12, src, stride);
417 res =
fileTest(src, stride, W, H, fp, srcFormat, dstFormat);
420 selfTest(src, stride, W, H, srcFormat, dstFormat);
const AVPixFmtDescriptor * av_pix_fmt_desc_get(enum AVPixelFormat pix_fmt)
ptrdiff_t const GLvoid * data
memory handling functions
static uint64_t getSSD(const uint8_t *src1, const uint8_t *src2, int stride1, int stride2, int w, int h)
static int doTest(uint8_t *ref[4], int refStride[4], int w, int h, enum AVPixelFormat srcFormat, enum AVPixelFormat dstFormat, int srcW, int srcH, int dstW, int dstH, int flags, struct Results *r)
int main(int argc, char **argv)
int srcH
Height of source luma/alpha planes.
planar YUV 4:2:0, 20bpp, (1 Cr & Cb sample per 2x2 Y & A samples)
static av_cold int end(AVCodecContext *avctx)
#define SWS_FAST_BILINEAR
struct SwsContext * sws_getContext(int srcW, int srcH, enum AVPixelFormat srcFormat, int dstW, int dstH, enum AVPixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param)
Allocate and return an SwsContext.
enum AVPixelFormat dstFormat
Destination pixel format.
int dstH
Height of destination luma/alpha planes.
#define sws_isSupportedOutput(x)
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
void sws_freeContext(struct SwsContext *swsContext)
Free the swscaler context swsContext.
#define sws_isSupportedInput(x)
int dstW
Width of destination luma/alpha planes.
Descriptor that unambiguously describes how the bits of a pixel are stored in the up to 4 data planes...
static int fileTest(uint8_t *ref[4], int refStride[4], int w, int h, FILE *fp, enum AVPixelFormat srcFormat_in, enum AVPixelFormat dstFormat_in)
int attribute_align_arg sws_scale(struct SwsContext *c, const uint8_t *const srcSlice[], const int srcStride[], int srcSliceY, int srcSliceH, uint8_t *const dst[], const int dstStride[])
swscale wrapper, so we don't need to export the SwsContext.
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
int av_image_fill_linesizes(int linesizes[4], enum AVPixelFormat pix_fmt, int width)
Fill plane linesizes for an image with pixel format pix_fmt and width width.
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
static void selfTest(uint8_t *ref[4], int refStride[4], int w, int h, enum AVPixelFormat srcFormat_in, enum AVPixelFormat dstFormat_in)
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
GLint GLenum GLboolean GLsizei stride
static int ref[MAX_W *MAX_W]
enum AVPixelFormat srcFormat
Source pixel format.
number of pixel formats, DO NOT USE THIS if you want to link with shared libav* because the number of...
enum AVPixelFormat av_get_pix_fmt(const char *name)
Return the pixel format corresponding to name.
int srcW
Width of source luma/alpha planes.
AVPixelFormat
Pixel format.
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...