mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
mpegvideo_enc: Check AVCodecContext allocation
This commit is contained in:
parent
78c8922841
commit
a72d93daa0
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user