mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
avcodec/dstdec: Fix "warning: initialization from incompatible pointer type [enabled by default]"
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
81c3ce0855
commit
fd4a52e4da
@ -320,7 +320,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
|
|||||||
for (i = 0; i < samples_per_frame; i++) {
|
for (i = 0; i < samples_per_frame; i++) {
|
||||||
for (ch = 0; ch < channels; ch++) {
|
for (ch = 0; ch < channels; ch++) {
|
||||||
const unsigned felem = map_ch_to_felem[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];
|
uint8_t *status = s->status[ch];
|
||||||
int prob, residual, v;
|
int prob, residual, v;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user