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
18e42ddd
Commit
18e42ddd
authored
12 years ago
by
Ronald S. Bultje
Committed by
Gerrit Code Review
12 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Remove unused argument from decode_coefs() function prototype." into experimental
parents
d0b52565
3bdf302c
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/decoder/detokenize.c
+13
-19
13 additions, 19 deletions
vp9/decoder/detokenize.c
with
13 additions
and
19 deletions
vp9/decoder/detokenize.c
+
13
−
19
View file @
18e42ddd
...
...
@@ -123,7 +123,7 @@ static int decode_coefs(VP9D_COMP *dx, const MACROBLOCKD *xd,
ENTROPY_CONTEXT
*
a
,
ENTROPY_CONTEXT
*
l
,
PLANE_TYPE
type
,
TX_TYPE
tx_type
,
int
seg_eob
,
INT16
*
qcoeff_ptr
,
int
i
,
int
seg_eob
,
INT16
*
qcoeff_ptr
,
const
int
*
const
scan
,
int
block_type
,
const
int
*
coef_bands
)
{
FRAME_CONTEXT
*
const
fc
=
&
dx
->
common
.
fc
;
...
...
@@ -275,9 +275,8 @@ int vp9_decode_mb_tokens_16x16(VP9D_COMP* const pbi,
{
const
int
*
const
scan
=
vp9_default_zig_zag1d_16x16
;
c
=
decode_coefs
(
pbi
,
xd
,
bc
,
A
,
L
,
type
,
tx_type
,
seg_eob
,
qcoeff_ptr
,
0
,
scan
,
TX_16X16
,
vp9_coef_bands_16x16
);
tx_type
,
seg_eob
,
qcoeff_ptr
,
scan
,
TX_16X16
,
vp9_coef_bands_16x16
);
eobs
[
0
]
=
c
;
A
[
0
]
=
L
[
0
]
=
(
c
!=
!
type
);
A
[
1
]
=
A
[
2
]
=
A
[
3
]
=
A
[
0
];
...
...
@@ -296,9 +295,8 @@ int vp9_decode_mb_tokens_16x16(VP9D_COMP* const pbi,
const
int
*
const
scan
=
vp9_default_zig_zag1d_8x8
;
c
=
decode_coefs
(
pbi
,
xd
,
bc
,
a
,
l
,
type
,
tx_type
,
seg_eob
,
qcoeff_ptr
,
i
,
scan
,
TX_8X8
,
vp9_coef_bands_8x8
);
tx_type
,
seg_eob
,
qcoeff_ptr
,
scan
,
TX_8X8
,
vp9_coef_bands_8x8
);
a
[
0
]
=
l
[
0
]
=
((
eobs
[
i
]
=
c
)
!=
!
type
);
a
[
1
]
=
a
[
0
];
l
[
1
]
=
l
[
0
];
...
...
@@ -336,9 +334,8 @@ int vp9_decode_mb_tokens_8x8(VP9D_COMP* const pbi,
seg_eob
=
get_eob
(
xd
,
segment_id
,
4
);
c
=
decode_coefs
(
pbi
,
xd
,
bc
,
a
,
l
,
type
,
tx_type
,
seg_eob
,
qcoeff_ptr
+
24
*
16
,
24
,
scan
,
TX_8X8
,
vp9_coef_bands
);
tx_type
,
seg_eob
,
qcoeff_ptr
+
24
*
16
,
scan
,
TX_8X8
,
vp9_coef_bands
);
a
[
0
]
=
l
[
0
]
=
((
eobs
[
24
]
=
c
)
!=
!
type
);
eobtotal
+=
c
-
4
;
...
...
@@ -362,9 +359,8 @@ int vp9_decode_mb_tokens_8x8(VP9D_COMP* const pbi,
}
c
=
decode_coefs
(
pbi
,
xd
,
bc
,
a
,
l
,
type
,
tx_type
,
seg_eob
,
qcoeff_ptr
,
i
,
scan
,
TX_8X8
,
vp9_coef_bands_8x8
);
tx_type
,
seg_eob
,
qcoeff_ptr
,
scan
,
TX_8X8
,
vp9_coef_bands_8x8
);
a
[
0
]
=
l
[
0
]
=
((
eobs
[
i
]
=
c
)
!=
!
type
);
a
[
1
]
=
a
[
0
];
l
[
1
]
=
l
[
0
];
...
...
@@ -385,9 +381,8 @@ int vp9_decode_mb_tokens_8x8(VP9D_COMP* const pbi,
const
int
*
scan
=
vp9_default_zig_zag1d
;
c
=
decode_coefs
(
pbi
,
xd
,
bc
,
a
,
l
,
type
,
tx_type
,
seg_eob
,
qcoeff_ptr
,
i
,
scan
,
TX_4X4
,
vp9_coef_bands
);
tx_type
,
seg_eob
,
qcoeff_ptr
,
scan
,
TX_4X4
,
vp9_coef_bands
);
a
[
0
]
=
l
[
0
]
=
((
eobs
[
i
]
=
c
)
!=
!
type
);
eobtotal
+=
c
;
...
...
@@ -428,9 +423,8 @@ static int decode_coefs_4x4(VP9D_COMP *dx, MACROBLOCKD *xd,
break
;
}
c
=
decode_coefs
(
dx
,
xd
,
bc
,
a
,
l
,
type
,
tx_type
,
seg_eob
,
qcoeff_ptr
+
i
*
16
,
i
,
scan
,
TX_4X4
,
vp9_coef_bands
);
tx_type
,
seg_eob
,
qcoeff_ptr
+
i
*
16
,
scan
,
TX_4X4
,
vp9_coef_bands
);
a
[
0
]
=
l
[
0
]
=
((
eobs
[
i
]
=
c
)
!=
!
type
);
return
c
;
}
...
...
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