LGTM On 8/1/20, Andreas Rheinhardt <andreas.rheinha...@gmail.com> wrote: > This will mean that we will need less stack space lateron when these > arrays are no longer heap-allocated. > > No discernible speed impact. > > Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@gmail.com> > --- > libavcodec/smacker.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/libavcodec/smacker.c b/libavcodec/smacker.c > index f5193e1278..c1928e3908 100644 > --- a/libavcodec/smacker.c > +++ b/libavcodec/smacker.c > @@ -69,8 +69,8 @@ typedef struct HuffContext { > int length; > int current; > uint32_t *bits; > - int *lengths; > - int *values; > + uint8_t *lengths; > + uint8_t *values; > } HuffContext; > > /* common parameters used for decode_bigtree */ > @@ -78,7 +78,7 @@ typedef struct DBCtx { > int current, length; > int *values; > VLC *v1, *v2; > - int *recode1, *recode2; > + const uint8_t *recode1, *recode2; > int escapes[3]; > int *last; > } DBCtx; > @@ -671,7 +671,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void > *data, > skip_bits1(&gb); > if(h[i].current > 1) { > ret = init_vlc(&vlc[i], SMKTREE_BITS, h[i].current, > - h[i].lengths, sizeof(int), sizeof(int), > + INIT_VLC_DEFAULT_SIZES(h[i].lengths), > h[i].bits, sizeof(uint32_t), sizeof(uint32_t), > INIT_VLC_LE); > if (ret < 0) { > av_log(avctx, AV_LOG_ERROR, "Cannot build VLC table\n"); > -- > 2.20.1 > > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".