mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-02 10:41:16 +00:00
wmadec: require block_align to be set.
Avoids an infinite loop in the calling programs with decoder not consuming any input and not returning output. CC:libav-stable@libav.org (cherry picked from commitea1136baaf
) Signed-off-by: Reinhard Tartler <siretart@tauware.de> (cherry picked from commitc1f479e8df
) Signed-off-by: Reinhard Tartler <siretart@tauware.de>
This commit is contained in:
parent
5025dbc577
commit
f13f6f82c6
@ -85,6 +85,11 @@ static int wma_decode_init(AVCodecContext * avctx)
|
||||
int i, flags2;
|
||||
uint8_t *extradata;
|
||||
|
||||
if (!avctx->block_align) {
|
||||
av_log(avctx, AV_LOG_ERROR, "block_align is not set\n");
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
s->avctx = avctx;
|
||||
|
||||
/* extract flag infos */
|
||||
|
Loading…
Reference in New Issue
Block a user