Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
7ae5954d
Commit
7ae5954d
authored
Mar 18, 2014
by
James Zern
Committed by
Gerrit Code Review
Mar 18, 2014
Browse files
Merge "tokenize: quiet -Warray-bounds warnings"
parents
aad7b55b
90de3b01
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/tokenize.c
View file @
7ae5954d
...
...
@@ -213,6 +213,7 @@ static void tokenize1st_order_b
/* Luma */
for
(
block
=
0
;
block
<
16
;
block
++
,
b
++
)
{
const
int
eob
=
*
b
->
eob
;
tmp1
=
vp8_block2above
[
block
];
tmp2
=
vp8_block2left
[
block
];
qcoeff_ptr
=
b
->
qcoeff
;
...
...
@@ -223,7 +224,7 @@ static void tokenize1st_order_b
c
=
type
?
0
:
1
;
if
(
c
>=
*
b
->
eob
)
if
(
c
>=
eob
)
{
/* c = band for this case */
t
->
Token
=
DCT_EOB_TOKEN
;
...
...
@@ -250,7 +251,8 @@ static void tokenize1st_order_b
t
++
;
c
++
;
for
(;
c
<
*
b
->
eob
;
c
++
)
assert
(
eob
<=
16
);
for
(;
c
<
eob
;
c
++
)
{
rc
=
vp8_default_zig_zag1d
[
c
];
band
=
vp8_coef_bands
[
c
];
...
...
@@ -286,6 +288,7 @@ static void tokenize1st_order_b
/* Chroma */
for
(
block
=
16
;
block
<
24
;
block
++
,
b
++
)
{
const
int
eob
=
*
b
->
eob
;
tmp1
=
vp8_block2above
[
block
];
tmp2
=
vp8_block2left
[
block
];
qcoeff_ptr
=
b
->
qcoeff
;
...
...
@@ -294,7 +297,7 @@ static void tokenize1st_order_b
VP8_COMBINEENTROPYCONTEXTS
(
pt
,
*
a
,
*
l
);
if
(
!
(
*
b
->
eob
)
)
if
(
!
eob
)
{
/* c = band for this case */
t
->
Token
=
DCT_EOB_TOKEN
;
...
...
@@ -321,7 +324,8 @@ static void tokenize1st_order_b
t
++
;
c
=
1
;
for
(;
c
<
*
b
->
eob
;
c
++
)
assert
(
eob
<=
16
);
for
(;
c
<
eob
;
c
++
)
{
rc
=
vp8_default_zig_zag1d
[
c
];
band
=
vp8_coef_bands
[
c
];
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment