summaryrefslogtreecommitdiff
path: root/libavcodec/adpcm.h
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-01-30 13:33:05 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2012-01-30 19:12:55 -0500
commit149f2058a4119d3130243b4e85b02c3a15bb9694 (patch)
treef9f8aec0ef6a6be38472f85583883d0cbaa26850 /libavcodec/adpcm.h
parentdd88ae831a3e703ec48b28a3b28e96567eab605f (diff)
adpcmenc: use int16_t and uint8_t instead of short and unsigned char.
Diffstat (limited to 'libavcodec/adpcm.h')
-rw-r--r--libavcodec/adpcm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/adpcm.h b/libavcodec/adpcm.h
index aed5048d4a..3a054c0e84 100644
--- a/libavcodec/adpcm.h
+++ b/libavcodec/adpcm.h
@@ -30,14 +30,14 @@
typedef struct ADPCMChannelStatus {
int predictor;
- short int step_index;
+ int16_t step_index;
int step;
/* for encoding */
int prev_sample;
/* MS version */
- short sample1;
- short sample2;
+ int16_t sample1;
+ int16_t sample2;
int coeff1;
int coeff2;
int idelta;