OSDN Git Service

cosmetics: change all short to int16_t
authorJustin Ruggles <justin.ruggles@gmail.com>
Tue, 14 Dec 2010 14:50:23 +0000 (14:50 +0000)
committerJustin Ruggles <justin.ruggles@gmail.com>
Tue, 14 Dec 2010 14:50:23 +0000 (14:50 +0000)
Originally committed as revision 25947 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/ac3enc.c

index 24fd022..1bc1439 100644 (file)
@@ -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);