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
48876390
Commit
48876390
authored
Dec 01, 2016
by
Jingning Han
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make get_entropy_context() support 2x2 transform block
Change-Id: Icbb4e686b4a5e7fdd1de76d412f43fdf1bf8830a
parent
9c405d4f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
av1/common/entropy.h
av1/common/entropy.h
+6
-0
No files found.
av1/common/entropy.h
View file @
48876390
...
...
@@ -219,6 +219,12 @@ static INLINE int get_entropy_context(TX_SIZE tx_size, const ENTROPY_CONTEXT *a,
ENTROPY_CONTEXT
above_ec
=
0
,
left_ec
=
0
;
switch
(
tx_size
)
{
#if CONFIG_CB4X4
case
TX_2X2
:
above_ec
=
a
[
0
]
!=
0
;
left_ec
=
l
[
0
]
!=
0
;
break
;
#endif
case
TX_4X4
:
above_ec
=
a
[
0
]
!=
0
;
left_ec
=
l
[
0
]
!=
0
;
...
...
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