[FFmpeg-cvslog] wmaprodec: require block_align to be set.
Anton Khirnov
git at videolan.org
Tue Mar 12 16:20:39 CET 2013
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Wed Mar 6 09:58:00 2013 +0100| [cacad1c058f66558ec727faac3b277d2dee264d4] | committer: Anton Khirnov
wmaprodec: 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 at libav.org
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cacad1c058f66558ec727faac3b277d2dee264d4
---
libavcodec/wmaprodec.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libavcodec/wmaprodec.c b/libavcodec/wmaprodec.c
index 66f27c8..d906f90 100644
--- a/libavcodec/wmaprodec.c
+++ b/libavcodec/wmaprodec.c
@@ -277,6 +277,11 @@ static av_cold int decode_init(AVCodecContext *avctx)
int log2_max_num_subframes;
int num_possible_block_sizes;
+ if (!avctx->block_align) {
+ av_log(avctx, AV_LOG_ERROR, "block_align is not set\n");
+ return AVERROR(EINVAL);
+ }
+
s->avctx = avctx;
avpriv_float_dsp_init(&s->fdsp, avctx->flags & CODEC_FLAG_BITEXACT);
More information about the ffmpeg-cvslog
mailing list