Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
aom-rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiph.Org
aom-rav1e
Commits
7e340614
Commit
7e340614
authored
10 years ago
by
Yunqing Wang
Committed by
Gerrit Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Remove unnecessary assertions"
parents
6298e232
978642a4
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
vp9/common/vp9_blockd.h
+2
-6
2 additions, 6 deletions
vp9/common/vp9_blockd.h
with
2 additions
and
6 deletions
vp9/common/vp9_blockd.h
+
2
−
6
View file @
7e340614
...
...
@@ -242,9 +242,7 @@ typedef struct macroblockd {
static
INLINE
BLOCK_SIZE
get_subsize
(
BLOCK_SIZE
bsize
,
PARTITION_TYPE
partition
)
{
const
BLOCK_SIZE
subsize
=
subsize_lookup
[
partition
][
bsize
];
assert
(
subsize
<
BLOCK_SIZES
);
return
subsize
;
return
subsize_lookup
[
partition
][
bsize
];
}
extern
const
TX_TYPE
intra_mode_to_tx_type_lookup
[
INTRA_MODES
];
...
...
@@ -288,9 +286,7 @@ static INLINE TX_SIZE get_uv_tx_size(const MB_MODE_INFO *mbmi,
static
INLINE
BLOCK_SIZE
get_plane_block_size
(
BLOCK_SIZE
bsize
,
const
struct
macroblockd_plane
*
pd
)
{
BLOCK_SIZE
bs
=
ss_size_lookup
[
bsize
][
pd
->
subsampling_x
][
pd
->
subsampling_y
];
assert
(
bs
<
BLOCK_SIZES
);
return
bs
;
return
ss_size_lookup
[
bsize
][
pd
->
subsampling_x
][
pd
->
subsampling_y
];
}
typedef
void
(
*
foreach_transformed_block_visitor
)(
int
plane
,
int
block
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment