Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Mathis Rosenhauer
libaec
Commits
0604e04b
Commit
0604e04b
authored
Sep 20, 2012
by
Mathis Rosenhauer
Committed by
Thomas Jahns
Feb 19, 2013
Browse files
Fix zero block bug
parent
fef349b5
Changes
1
Show whitespace changes
Inline
Side-by-side
src/encode.c
View file @
0604e04b
...
...
@@ -195,11 +195,11 @@ static int m_get_block(struct aec_stream *strm)
if
(
state
->
blocks_avail
==
0
)
{
state
->
ref
=
1
;
state
->
blocks_avail
=
strm
->
rsi
-
1
;
state
->
block_p
=
state
->
block_buf
;
if
(
strm
->
avail_in
>=
state
->
block_len
*
strm
->
rsi
)
{
state
->
get_block
(
strm
);
state
->
blocks_avail
=
strm
->
rsi
-
1
;
if
(
strm
->
flags
&
AEC_DATA_PREPROCESS
)
state
->
preprocess
(
strm
);
...
...
@@ -258,6 +258,7 @@ static int m_get_block_cautious(struct aec_stream *strm)
return
input_empty
(
strm
);
}
while
(
++
state
->
i
<
strm
->
rsi
*
strm
->
block_size
);
state
->
blocks_avail
=
strm
->
rsi
-
1
;
if
(
strm
->
flags
&
AEC_DATA_PREPROCESS
)
state
->
preprocess
(
strm
);
...
...
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