Commit fd4a52e4 authored by Michael Niedermayer's avatar Michael Niedermayer

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

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 81c3ce08
......@@ -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;
......
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