avcodec/dstdec: Fix "warning: initialization from incompatible pointer type [enabled by default]"

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
pull/215/head
Michael Niedermayer 9 years ago
parent 81c3ce0855
commit fd4a52e4da
  1. 2
      libavcodec/dstdec.c

@ -320,7 +320,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
for (i = 0; i < samples_per_frame; i++) {
for (ch = 0; ch < channels; ch++) {
const unsigned felem = map_ch_to_felem[ch];
const int16_t (*filter)[256] = s->filter[felem];
int16_t (*filter)[256] = s->filter[felem];
uint8_t *status = s->status[ch];
int prob, residual, v;

Loading…
Cancel
Save