Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Yushin Cho
aom-rav1e
Commits
96276f97
Commit
96276f97
authored
Oct 18, 2012
by
Deb Mukherjee
Browse files
A fix for crashes when #macroblock rows is odd.
Change-Id: If9fc2df4051ccfb8d804dae9d1be08d12d0f81ce
parent
13d69d40
Changes
1
Hide whitespace changes
Inline
Side-by-side
vp8/encoder/encodeframe.c
View file @
96276f97
...
...
@@ -1064,7 +1064,7 @@ static void encode_sb(VP8_COMP *cpi,
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
++
;
cpi
->
tplist
[
mb_row
].
stop
=
*
tp
;
if
(
mb_row
<
cm
->
mb_rows
)
cpi
->
tplist
[
mb_row
].
stop
=
*
tp
;
break
;
}
#endif
...
...
@@ -1088,7 +1088,7 @@ static void encode_sb(VP8_COMP *cpi,
#endif
(
*
tp
)
->
Token
=
EOSB_TOKEN
;
(
*
tp
)
++
;
cpi
->
tplist
[
mb_row
].
stop
=
*
tp
;
if
(
mb_row
<
cm
->
mb_rows
)
cpi
->
tplist
[
mb_row
].
stop
=
*
tp
;
}
// debug output
...
...
Write
Preview
Supports
Markdown
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