Commit e01f478d authored by Michael Niedermayer's avatar Michael Niedermayer

ffv1enc: Check context_model

Fixes crash

Found-by: durandal_1707
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 479fb7b8
...@@ -936,6 +936,10 @@ static av_cold int encode_init(AVCodecContext *avctx) ...@@ -936,6 +936,10 @@ static av_cold int encode_init(AVCodecContext *avctx)
if (s->transparency) { if (s->transparency) {
av_log(avctx, AV_LOG_WARNING, "Storing alpha plane, this will require a recent FFV1 decoder to playback!\n"); av_log(avctx, AV_LOG_WARNING, "Storing alpha plane, this will require a recent FFV1 decoder to playback!\n");
} }
if (avctx->context_model > 1U) {
av_log(avctx, AV_LOG_ERROR, "Invalid context model %d, valid values are 0 and 1\n", avctx->context_model);
return AVERROR(EINVAL);
}
for(i=0; i<256; i++){ for(i=0; i<256; i++){
s->quant_table_count=2; s->quant_table_count=2;
......
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