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
c26ee9b9
Commit
c26ee9b9
authored
Jul 14, 2017
by
Angie Chiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adjust the prob update order of coeff_base
Change-Id: Ief8ce2ed9f39616f0aa173bd6546b9098cc8a8ad
parent
222f9d72
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
av1/common/txb_common.c
av1/common/txb_common.c
+4
-3
No files found.
av1/common/txb_common.c
View file @
c26ee9b9
...
...
@@ -113,10 +113,11 @@ void av1_adapt_txb_probs(AV1_COMMON *cm, unsigned int count_sat,
for
(
ctx
=
0
;
ctx
<
DC_SIGN_CONTEXTS
;
++
ctx
)
fc
->
dc_sign
[
plane
][
ctx
]
=
mode_mv_merge_probs
(
pre_fc
->
dc_sign
[
plane
][
ctx
],
counts
->
dc_sign
[
plane
][
ctx
]);
// Update probability models for non-zero coefficient map and eob flag.
for
(
level
=
0
;
level
<
NUM_BASE_LEVELS
;
++
level
)
for
(
tx_size
=
0
;
tx_size
<
TX_SIZES
;
++
tx_siz
e
)
for
(
plane
=
0
;
plane
<
PLANE_TYPES
;
++
plane
)
for
(
tx_size
=
0
;
tx_size
<
TX_SIZES
;
++
tx_size
)
for
(
plane
=
0
;
plane
<
PLANE_TYPES
;
++
plan
e
)
for
(
level
=
0
;
level
<
NUM_BASE_LEVELS
;
++
level
)
for
(
ctx
=
0
;
ctx
<
COEFF_BASE_CONTEXTS
;
++
ctx
)
fc
->
coeff_base
[
tx_size
][
plane
][
level
][
ctx
]
=
merge_probs
(
pre_fc
->
coeff_base
[
tx_size
][
plane
][
level
][
ctx
],
...
...
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