mirror of https://git.ffmpeg.org/ffmpeg.git
checkasm/vf_gblur: add test for horiz_slice simd
Signed-off-by: Ruiling Song <ruiling.song@intel.com>
This commit is contained in:
parent
83f9da7768
commit
8f4963ad25
|
@ -35,6 +35,7 @@ CHECKASMOBJS-$(CONFIG_AVCODEC) += $(AVCODECOBJS-yes)
|
||||||
AVFILTEROBJS-$(CONFIG_AFIR_FILTER) += af_afir.o
|
AVFILTEROBJS-$(CONFIG_AFIR_FILTER) += af_afir.o
|
||||||
AVFILTEROBJS-$(CONFIG_BLEND_FILTER) += vf_blend.o
|
AVFILTEROBJS-$(CONFIG_BLEND_FILTER) += vf_blend.o
|
||||||
AVFILTEROBJS-$(CONFIG_COLORSPACE_FILTER) += vf_colorspace.o
|
AVFILTEROBJS-$(CONFIG_COLORSPACE_FILTER) += vf_colorspace.o
|
||||||
|
AVFILTEROBJS-$(CONFIG_GBLUR_FILTER) += vf_gblur.o
|
||||||
AVFILTEROBJS-$(CONFIG_HFLIP_FILTER) += vf_hflip.o
|
AVFILTEROBJS-$(CONFIG_HFLIP_FILTER) += vf_hflip.o
|
||||||
AVFILTEROBJS-$(CONFIG_THRESHOLD_FILTER) += vf_threshold.o
|
AVFILTEROBJS-$(CONFIG_THRESHOLD_FILTER) += vf_threshold.o
|
||||||
AVFILTEROBJS-$(CONFIG_NLMEANS_FILTER) += vf_nlmeans.o
|
AVFILTEROBJS-$(CONFIG_NLMEANS_FILTER) += vf_nlmeans.o
|
||||||
|
|
|
@ -162,6 +162,9 @@ static const struct {
|
||||||
#if CONFIG_COLORSPACE_FILTER
|
#if CONFIG_COLORSPACE_FILTER
|
||||||
{ "vf_colorspace", checkasm_check_colorspace },
|
{ "vf_colorspace", checkasm_check_colorspace },
|
||||||
#endif
|
#endif
|
||||||
|
#if CONFIG_GBLUR_FILTER
|
||||||
|
{ "vf_gblur", checkasm_check_vf_gblur },
|
||||||
|
#endif
|
||||||
#if CONFIG_HFLIP_FILTER
|
#if CONFIG_HFLIP_FILTER
|
||||||
{ "vf_hflip", checkasm_check_vf_hflip },
|
{ "vf_hflip", checkasm_check_vf_hflip },
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -71,6 +71,7 @@ void checkasm_check_sw_rgb(void);
|
||||||
void checkasm_check_utvideodsp(void);
|
void checkasm_check_utvideodsp(void);
|
||||||
void checkasm_check_v210dec(void);
|
void checkasm_check_v210dec(void);
|
||||||
void checkasm_check_v210enc(void);
|
void checkasm_check_v210enc(void);
|
||||||
|
void checkasm_check_vf_gblur(void);
|
||||||
void checkasm_check_vf_hflip(void);
|
void checkasm_check_vf_hflip(void);
|
||||||
void checkasm_check_vf_threshold(void);
|
void checkasm_check_vf_threshold(void);
|
||||||
void checkasm_check_vp8dsp(void);
|
void checkasm_check_vp8dsp(void);
|
||||||
|
|
|
@ -0,0 +1,66 @@
|
||||||
|
/*
|
||||||
|
* This file is part of FFmpeg.
|
||||||
|
*
|
||||||
|
* FFmpeg is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* FFmpeg is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License along
|
||||||
|
* with FFmpeg; if not, write to the Free Software Foundation, Inc.,
|
||||||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <string.h>
|
||||||
|
#include "checkasm.h"
|
||||||
|
#include "libavfilter/gblur.h"
|
||||||
|
|
||||||
|
#define WIDTH 256
|
||||||
|
#define HEIGHT 256
|
||||||
|
#define PIXELS (WIDTH * HEIGHT)
|
||||||
|
#define BUF_SIZE (PIXELS * 4)
|
||||||
|
|
||||||
|
#define randomize_buffers(buf, size) \
|
||||||
|
do { \
|
||||||
|
int j; \
|
||||||
|
float *tmp_buf = (float *)buf; \
|
||||||
|
for (j = 0; j < size; j++) \
|
||||||
|
tmp_buf[j] = (float)(rnd() & 0xFF); \
|
||||||
|
} while (0)
|
||||||
|
|
||||||
|
void checkasm_check_vf_gblur(void)
|
||||||
|
{
|
||||||
|
float *dst_ref = av_malloc(BUF_SIZE);
|
||||||
|
float *dst_new = av_malloc(BUF_SIZE);
|
||||||
|
int w = WIDTH;
|
||||||
|
int h = HEIGHT;
|
||||||
|
int steps = 2;
|
||||||
|
float nu = 0.101f;
|
||||||
|
float bscale = 1.112f;
|
||||||
|
GBlurContext s;
|
||||||
|
|
||||||
|
declare_func(void, float *dst, int w, int h, int steps, float nu, float bscale);
|
||||||
|
|
||||||
|
randomize_buffers(dst_ref, PIXELS);
|
||||||
|
memcpy(dst_new, dst_ref, BUF_SIZE);
|
||||||
|
|
||||||
|
ff_gblur_init(&s);
|
||||||
|
|
||||||
|
if (check_func(s.horiz_slice, "horiz_slice")) {
|
||||||
|
call_ref(dst_ref, w, h, steps, nu, bscale);
|
||||||
|
call_new(dst_new, w, h, steps, nu, bscale);
|
||||||
|
|
||||||
|
if (!float_near_abs_eps_array(dst_ref, dst_new, 0.01f, PIXELS)) {
|
||||||
|
fail();
|
||||||
|
}
|
||||||
|
bench_new(dst_new, w, h, 1, nu, bscale);
|
||||||
|
}
|
||||||
|
report("horiz_slice");
|
||||||
|
av_freep(&dst_ref);
|
||||||
|
av_freep(&dst_new);
|
||||||
|
}
|
|
@ -27,6 +27,7 @@ FATE_CHECKASM = fate-checkasm-aacpsdsp \
|
||||||
fate-checkasm-v210enc \
|
fate-checkasm-v210enc \
|
||||||
fate-checkasm-vf_blend \
|
fate-checkasm-vf_blend \
|
||||||
fate-checkasm-vf_colorspace \
|
fate-checkasm-vf_colorspace \
|
||||||
|
fate-checkasm-vf_gblur \
|
||||||
fate-checkasm-vf_hflip \
|
fate-checkasm-vf_hflip \
|
||||||
fate-checkasm-vf_threshold \
|
fate-checkasm-vf_threshold \
|
||||||
fate-checkasm-videodsp \
|
fate-checkasm-videodsp \
|
||||||
|
|
Loading…
Reference in New Issue