Browse Source

Use enum FrameType as parameter to construct_perm_table().

Originally committed as revision 20480 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Carl Eugen Hoyos 15 years ago
parent
commit
adadf26bb9
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      libavcodec/twinvq.c

+ 3
- 2
libavcodec/twinvq.c View File

@@ -1014,6 +1014,7 @@ static av_cold void init_bitstream_params(TwinContext *tctx)
int bsize_no_main_cb[3];
int bse_bits[3];
int i;
enum FrameType frametype;

for (i = 0; i < 3; i++)
// +1 for history usage switch
@@ -1062,8 +1063,8 @@ static av_cold void init_bitstream_params(TwinContext *tctx)
tctx->length_change[i] = num_rounded_up;
}

for (i = 0; i < 4; i++)
construct_perm_table(tctx, i);
for (frametype = FT_SHORT; frametype <= FT_PPC; frametype++)
construct_perm_table(tctx, frametype);
}

static av_cold int twin_decode_init(AVCodecContext *avctx)


Loading…
Cancel
Save