Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
aom-rav1e
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
aom-rav1e
Commits
bdad3689
Commit
bdad3689
authored
Feb 11, 2016
by
James Zern
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9_error_block_test: prefer EXPECT over assert()
Change-Id: Id523448bac903999934370f7b06a5c316f11a966
parent
153ef3d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
test/vp9_error_block_test.cc
test/vp9_error_block_test.cc
+3
-3
No files found.
test/vp9_error_block_test.cc
View file @
bdad3689
...
...
@@ -164,7 +164,7 @@ int64_t wrap_vp9_highbd_block_error_8bit_c(const tran_low_t *coeff,
const
tran_low_t
*
dqcoeff
,
intptr_t
block_size
,
int64_t
*
ssz
,
int
bps
)
{
assert
(
bps
==
8
);
EXPECT_EQ
(
8
,
bps
);
return
vp9_highbd_block_error_8bit_c
(
coeff
,
dqcoeff
,
block_size
,
ssz
);
}
...
...
@@ -173,7 +173,7 @@ int64_t wrap_vp9_highbd_block_error_8bit_sse2(const tran_low_t *coeff,
const
tran_low_t
*
dqcoeff
,
intptr_t
block_size
,
int64_t
*
ssz
,
int
bps
)
{
assert
(
bps
==
8
);
EXPECT_EQ
(
8
,
bps
);
return
vp9_highbd_block_error_8bit_sse2
(
coeff
,
dqcoeff
,
block_size
,
ssz
);
}
...
...
@@ -195,7 +195,7 @@ int64_t wrap_vp9_highbd_block_error_8bit_avx(const tran_low_t *coeff,
const
tran_low_t
*
dqcoeff
,
intptr_t
block_size
,
int64_t
*
ssz
,
int
bps
)
{
assert
(
bps
==
8
);
EXPECT_EQ
(
8
,
bps
);
return
vp9_highbd_block_error_8bit_avx
(
coeff
,
dqcoeff
,
block_size
,
ssz
);
}
...
...
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