Browse Source

alac: change VLAs to fixed size

Originally committed as revision 23751 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Måns Rullgård 15 years ago
parent
commit
986f143a38
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      libavcodec/alac.c

+ 5
- 5
libavcodec/alac.c View File

@@ -547,11 +547,11 @@ static int alac_decode_frame(AVCodecContext *avctx,

if (!isnotcompressed) {
/* so it is compressed */
int16_t predictor_coef_table[channels][32];
int predictor_coef_num[channels];
int prediction_type[channels];
int prediction_quantitization[channels];
int ricemodifier[channels];
int16_t predictor_coef_table[MAX_CHANNELS][32];
int predictor_coef_num[MAX_CHANNELS];
int prediction_type[MAX_CHANNELS];
int prediction_quantitization[MAX_CHANNELS];
int ricemodifier[MAX_CHANNELS];
int i, chan;

interlacing_shift = get_bits(&alac->gb, 8);


Loading…
Cancel
Save