From 9cb59032998e695c30031e99a1b410b039cb1902 Mon Sep 17 00:00:00 2001 From: Justin Ruggles Date: Tue, 14 Dec 2010 14:50:23 +0000 Subject: [PATCH] cosmetics: change all short to int16_t Originally committed as revision 25947 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ac3enc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/ac3enc.c b/libavcodec/ac3enc.c index 24fd022b94..1bc1439e69 100644 --- a/libavcodec/ac3enc.c +++ b/libavcodec/ac3enc.c @@ -70,7 +70,7 @@ typedef struct AC3EncodeContext { /* mantissa encoding */ int mant1_cnt, mant2_cnt, mant4_cnt; - short last_samples[AC3_MAX_CHANNELS][256]; + int16_t last_samples[AC3_MAX_CHANNELS][256]; } AC3EncodeContext; static int16_t costab[64]; @@ -96,7 +96,7 @@ static inline int16_t fix15(float a) } typedef struct IComplex { - short re,im; + int16_t re,im; } IComplex; static av_cold void fft_init(int ln) @@ -1384,7 +1384,7 @@ void test_ac3(void) { AC3EncodeContext ctx; unsigned char frame[AC3_MAX_CODED_FRAME_SIZE]; - short samples[AC3_FRAME_SIZE]; + int16_t samples[AC3_FRAME_SIZE]; int ret, i; AC3_encode_init(&ctx, 44100, 64000, 1);