Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
a9a7ed4f
Commit
a9a7ed4f
authored
Mar 24, 2018
by
Martin Vignali
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkasm/swscale : add test for rgb shuffle_bytes func
parent
1ba5ca2d
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
96 additions
and
0 deletions
+96
-0
Makefile
tests/checkasm/Makefile
+6
-0
checkasm.c
tests/checkasm/checkasm.c
+3
-0
checkasm.h
tests/checkasm/checkasm.h
+1
-0
sw_rgb.c
tests/checkasm/sw_rgb.c
+85
-0
checkasm.mak
tests/fate/checkasm.mak
+1
-0
No files found.
tests/checkasm/Makefile
View file @
a9a7ed4f
...
...
@@ -38,6 +38,12 @@ AVFILTEROBJS-$(CONFIG_THRESHOLD_FILTER) += vf_threshold.o
CHECKASMOBJS-$(CONFIG_AVFILTER)
+=
$(AVFILTEROBJS-yes)
# swscale tests
SWSCALEOBJS
+=
sw_rgb.o
CHECKASMOBJS-$(CONFIG_SWSCALE)
+=
$(SWSCALEOBJS)
# libavutil tests
AVUTILOBJS
+=
fixed_dsp.o
AVUTILOBJS
+=
float_dsp.o
...
...
tests/checkasm/checkasm.c
View file @
a9a7ed4f
...
...
@@ -163,6 +163,9 @@ static const struct {
{
"vf_threshold"
,
checkasm_check_vf_threshold
},
#endif
#endif
#if CONFIG_SWSCALE
{
"sw_rgb"
,
checkasm_check_sw_rgb
},
#endif
#if CONFIG_AVUTIL
{
"fixed_dsp"
,
checkasm_check_fixed_dsp
},
{
"float_dsp"
,
checkasm_check_float_dsp
},
...
...
tests/checkasm/checkasm.h
View file @
a9a7ed4f
...
...
@@ -65,6 +65,7 @@ void checkasm_check_llviddspenc(void);
void
checkasm_check_pixblockdsp
(
void
);
void
checkasm_check_sbrdsp
(
void
);
void
checkasm_check_synth_filter
(
void
);
void
checkasm_check_sw_rgb
(
void
);
void
checkasm_check_utvideodsp
(
void
);
void
checkasm_check_v210enc
(
void
);
void
checkasm_check_vf_hflip
(
void
);
...
...
tests/checkasm/sw_rgb.c
0 → 100644
View file @
a9a7ed4f
/*
*
* 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 "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#include "libswscale/rgb2rgb.h"
#include "checkasm.h"
#define randomize_buffers(buf, size) \
do { \
int j; \
for (j = 0; j < size; j+=4) \
AV_WN32(buf + j, rnd()); \
} while (0)
static
const
uint8_t
width
[]
=
{
12
,
16
,
20
,
32
,
36
,
128
};
#define MAX_STRIDE 128
static
void
check_shuffle_bytes
(
void
*
func
,
const
char
*
report
)
{
int
i
;
LOCAL_ALIGNED_32
(
uint8_t
,
src0
,
[
MAX_STRIDE
]);
LOCAL_ALIGNED_32
(
uint8_t
,
src1
,
[
MAX_STRIDE
]);
LOCAL_ALIGNED_32
(
uint8_t
,
dst0
,
[
MAX_STRIDE
]);
LOCAL_ALIGNED_32
(
uint8_t
,
dst1
,
[
MAX_STRIDE
]);
declare_func_emms
(
AV_CPU_FLAG_MMX
,
void
,
const
uint8_t
*
src
,
uint8_t
*
dst
,
int
src_size
);
memset
(
dst0
,
0
,
MAX_STRIDE
);
memset
(
dst1
,
0
,
MAX_STRIDE
);
randomize_buffers
(
src0
,
MAX_STRIDE
);
memcpy
(
src1
,
src0
,
MAX_STRIDE
);
if
(
check_func
(
func
,
"%s"
,
report
))
{
for
(
i
=
0
;
i
<
6
;
i
++
)
{
call_ref
(
src0
,
dst0
,
width
[
i
]);
call_new
(
src1
,
dst1
,
width
[
i
]);
if
(
memcmp
(
dst0
,
dst1
,
MAX_STRIDE
))
fail
();
}
bench_new
(
src0
,
dst0
,
width
[
5
]);
}
}
void
checkasm_check_sw_rgb
(
void
)
{
ff_sws_rgb2rgb_init
();
check_shuffle_bytes
(
shuffle_bytes_2103
,
"shuffle_bytes_2103"
);
report
(
"shuffle_bytes_2103"
);
check_shuffle_bytes
(
shuffle_bytes_0321
,
"shuffle_bytes_0321"
);
report
(
"shuffle_bytes_0321"
);
check_shuffle_bytes
(
shuffle_bytes_1230
,
"shuffle_bytes_1230"
);
report
(
"shuffle_bytes_1230"
);
check_shuffle_bytes
(
shuffle_bytes_3012
,
"shuffle_bytes_3012"
);
report
(
"shuffle_bytes_3012"
);
check_shuffle_bytes
(
shuffle_bytes_3210
,
"shuffle_bytes_3210"
);
report
(
"shuffle_bytes_3210"
);
}
tests/fate/checkasm.mak
View file @
a9a7ed4f
...
...
@@ -21,6 +21,7 @@ FATE_CHECKASM = fate-checkasm-aacpsdsp \
fate-checkasm-pixblockdsp \
fate-checkasm-sbrdsp \
fate-checkasm-synth_filter \
fate-checkasm-sw_rgb \
fate-checkasm-v210enc \
fate-checkasm-vf_blend \
fate-checkasm-vf_colorspace \
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment