1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-26 06:01:30 +02:00

mpegvideo_enc: Check AVCodecContext allocation

This commit is contained in:
Vittorio Giovara 2015-03-11 19:46:29 +00:00
parent 78c8922841
commit a72d93daa0

View File

@ -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();