Skip to content
Snippets Groups Projects
Commit a8b254e4 authored by Michael Niedermayer's avatar Michael Niedermayer
Browse files

avcodec/ffv1dec: Print an error if the quant table count is invalid

parent c6655328
No related branches found
No related tags found
No related merge requests found
...@@ -569,8 +569,10 @@ static int read_extra_header(FFV1Context *f) ...@@ -569,8 +569,10 @@ static int read_extra_header(FFV1Context *f)
} }
f->quant_table_count = get_symbol(c, state, 0); f->quant_table_count = get_symbol(c, state, 0);
if (f->quant_table_count > (unsigned)MAX_QUANT_TABLES || !f->quant_table_count) if (f->quant_table_count > (unsigned)MAX_QUANT_TABLES || !f->quant_table_count) {
av_log(f->avctx, AV_LOG_ERROR, "quant table count %d is invalid\n", f->quant_table_count);
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
}
for (i = 0; i < f->quant_table_count; i++) { for (i = 0; i < f->quant_table_count; i++) {
f->context_count[i] = read_quant_tables(c, f->quant_tables[i]); f->context_count[i] = read_quant_tables(c, f->quant_tables[i]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment