summaryrefslogtreecommitdiff
path: root/src/decode.h
diff options
context:
space:
mode:
authorMathis Rosenhauer <rosenhauer@dkrz.de>2012-11-12 17:07:08 +0100
committerThomas Jahns <jahns@dkrz.de>2013-02-19 11:33:00 +0100
commit9d97007dc8ae752fe0a21417a63c71590a9bfa78 (patch)
treeeb0af603fe9f3fd449311fbe96c4a4ed47b9a3fd /src/decode.h
parent4f9895014e589422d4efad2af8e4f5f70a9a4a00 (diff)
downloadlibaec-9d97007dc8ae752fe0a21417a63c71590a9bfa78.tar.gz
libaec-9d97007dc8ae752fe0a21417a63c71590a9bfa78.tar.bz2
libaec-9d97007dc8ae752fe0a21417a63c71590a9bfa78.zip
Renaming and redundant variable removal
Diffstat (limited to 'src/decode.h')
-rw-r--r--src/decode.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/decode.h b/src/decode.h
index 7277399..a1fd3cd 100644
--- a/src/decode.h
+++ b/src/decode.h
@@ -41,11 +41,10 @@ struct internal_state {
int pp; /* 1 if postprocessor has to be used */
int byte_per_sample;
int *se_table;
- uint32_t *buf_out;
- uint32_t buf_next_out;
+ uint32_t *buf;
+ uint32_t buf_i;
uint32_t buf_size;
uint32_t flush_start;
- uint32_t flush_end;
} decode_state;
#endif /* DECODE_H */