Commit a72d93da authored by Vittorio Giovara's avatar Vittorio Giovara

mpegvideo_enc: Check AVCodecContext allocation

parent 78c89228
......@@ -1136,6 +1136,8 @@ static int estimate_best_b_count(MpegEncContext *s)
int64_t best_rd = INT64_MAX;
int best_b_count = -1;
if (!c)
return AVERROR(ENOMEM);
assert(scale >= 0 && scale <= 3);
//emms_c();
......
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