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
e3f941cb
Commit
e3f941cb
authored
Sep 18, 2016
by
Alexandra Hájková
Committed by
Anton Khirnov
Oct 11, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkasm: add a test for HEVC IDCT
Signed-off-by:
Anton Khirnov
<
anton@khirnov.net
>
parent
9b2ccafb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
1 deletion
+33
-1
hevc_idct.c
tests/checkasm/hevc_idct.c
+33
-1
No files found.
tests/checkasm/hevc_idct.c
View file @
e3f941cb
...
@@ -35,6 +35,30 @@
...
@@ -35,6 +35,30 @@
} \
} \
} while (0)
} while (0)
static
void
check_idct
(
HEVCDSPContext
h
,
int
bit_depth
)
{
int
i
;
LOCAL_ALIGNED
(
32
,
int16_t
,
coeffs0
,
[
32
*
32
]);
LOCAL_ALIGNED
(
32
,
int16_t
,
coeffs1
,
[
32
*
32
]);
for
(
i
=
2
;
i
<=
5
;
i
++
)
{
int
block_size
=
1
<<
i
;
int
size
=
block_size
*
block_size
;
int
col_limit
=
block_size
;
declare_func
(
void
,
int16_t
*
coeffs
,
int
col_limit
);
randomize_buffers
(
coeffs0
,
size
);
memcpy
(
coeffs1
,
coeffs0
,
sizeof
(
*
coeffs0
)
*
size
);
if
(
check_func
(
h
.
idct
[
i
-
2
],
"hevc_idct_%dx%d_%d"
,
block_size
,
block_size
,
bit_depth
))
{
call_ref
(
coeffs0
,
col_limit
);
call_new
(
coeffs1
,
col_limit
);
if
(
memcmp
(
coeffs0
,
coeffs1
,
sizeof
(
*
coeffs0
)
*
size
))
fail
();
bench_new
(
coeffs1
,
col_limit
);
}
}
}
static
void
check_idct_dc
(
HEVCDSPContext
h
,
int
bit_depth
)
static
void
check_idct_dc
(
HEVCDSPContext
h
,
int
bit_depth
)
{
{
int
i
;
int
i
;
...
@@ -49,7 +73,7 @@ static void check_idct_dc(HEVCDSPContext h, int bit_depth)
...
@@ -49,7 +73,7 @@ static void check_idct_dc(HEVCDSPContext h, int bit_depth)
randomize_buffers
(
coeffs0
,
size
);
randomize_buffers
(
coeffs0
,
size
);
memcpy
(
coeffs1
,
coeffs0
,
sizeof
(
*
coeffs0
)
*
size
);
memcpy
(
coeffs1
,
coeffs0
,
sizeof
(
*
coeffs0
)
*
size
);
if
(
check_func
(
h
.
idct_dc
[
i
-
2
],
"idct_%dx%d_dc_%d"
,
block_size
,
block_size
,
bit_depth
))
{
if
(
check_func
(
h
.
idct_dc
[
i
-
2
],
"
hevc_
idct_%dx%d_dc_%d"
,
block_size
,
block_size
,
bit_depth
))
{
call_ref
(
coeffs0
);
call_ref
(
coeffs0
);
call_new
(
coeffs1
);
call_new
(
coeffs1
);
if
(
memcmp
(
coeffs0
,
coeffs1
,
sizeof
(
*
coeffs0
)
*
size
))
if
(
memcmp
(
coeffs0
,
coeffs1
,
sizeof
(
*
coeffs0
)
*
size
))
...
@@ -70,4 +94,12 @@ void checkasm_check_hevc_idct(void)
...
@@ -70,4 +94,12 @@ void checkasm_check_hevc_idct(void)
check_idct_dc
(
h
,
bit_depth
);
check_idct_dc
(
h
,
bit_depth
);
}
}
report
(
"idct_dc"
);
report
(
"idct_dc"
);
for
(
bit_depth
=
8
;
bit_depth
<=
10
;
bit_depth
++
)
{
HEVCDSPContext
h
;
ff_hevc_dsp_init
(
&
h
,
bit_depth
);
check_idct
(
h
,
bit_depth
);
}
report
(
"idct"
);
}
}
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