Skip to content
Snippets Groups Projects
Commit aa64e83e authored by Mathis Rosenhauer's avatar Mathis Rosenhauer Committed by Thomas Jahns
Browse files

clean up

parent 8cdce0ad
No related branches found
No related tags found
No related merge requests found
......@@ -492,7 +492,7 @@ static int m_zero_block(struct aec_stream *strm)
return M_CONTINUE;
}
strm->state->i = i;
state->i = i;
state->mode = m_zero_output;
return M_CONTINUE;
}
......@@ -735,7 +735,7 @@ int aec_decode(struct aec_stream *strm, int flush)
of the states are called. Inspired by zlib.
*/
struct internal_state *state= strm->state;
struct internal_state *state = strm->state;
strm->total_in += strm->avail_in;
strm->total_out += strm->avail_out;
......@@ -751,7 +751,7 @@ int aec_decode(struct aec_stream *strm, int flush)
int aec_decode_end(struct aec_stream *strm)
{
struct internal_state *state= strm->state;
struct internal_state *state = strm->state;
free(state->id_table);
free(state->se_table);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment