Commit 9cb59032 authored by Justin Ruggles's avatar Justin Ruggles

cosmetics: change all short to int16_t

Originally committed as revision 25947 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 2be209b2
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment