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
74ea5524
Commit
74ea5524
authored
Oct 02, 2012
by
Mathis Rosenhauer
Committed by
Thomas Jahns
Feb 19, 2013
Browse files
Fix name mismatch
parent
133e9499
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/decode.c
View file @
74ea5524
...
...
@@ -608,7 +608,7 @@ req_buffer:
return
AEC_OK
;
}
int
aec_buf_decode
(
struct
aec_stream
*
strm
)
int
aec_buf
fer
_decode
(
struct
aec_stream
*
strm
)
{
int
status
;
...
...
src/encode.c
View file @
74ea5524
...
...
@@ -740,7 +740,7 @@ int aec_encode_end(struct aec_stream *strm)
return
AEC_OK
;
}
int
aec_buf_encode
(
struct
aec_stream
*
strm
)
int
aec_buf
fer
_encode
(
struct
aec_stream
*
strm
)
{
int
status
;
...
...
src/sz_compat.c
View file @
74ea5524
...
...
@@ -19,7 +19,7 @@ int SZ_BufftoBuffCompress(void *dest, size_t *destLen,
strm
.
next_out
=
dest
;
strm
.
next_in
=
source
;
status
=
aec_buf_encode
(
&
strm
);
status
=
aec_buf
fer
_encode
(
&
strm
);
if
(
status
!=
AEC_OK
)
return
status
;
...
...
@@ -43,7 +43,7 @@ int SZ_BufftoBuffDecompress(void *dest, size_t *destLen,
strm
.
next_out
=
dest
;
strm
.
next_in
=
source
;
status
=
aec_buf_decode
(
&
strm
);
status
=
aec_buf
fer
_decode
(
&
strm
);
if
(
status
!=
AEC_OK
)
return
status
;
...
...
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