Merge commit '81688e68f93f3142e2093f1a3d226edaeb179992'
* commit '81688e68f93f3142e2093f1a3d226edaeb179992': avconv: Check rc_override memory allocation Conflicts: ffmpeg_opt.c See: 7efabffc2899b76688a40b4bd7c63370eb2d8ca8 Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
15cd2a93e7
@ -1393,8 +1393,10 @@ static OutputStream *new_video_stream(OptionsContext *o, AVFormatContext *oc, in
|
|||||||
video_enc->rc_override =
|
video_enc->rc_override =
|
||||||
av_realloc_array(video_enc->rc_override,
|
av_realloc_array(video_enc->rc_override,
|
||||||
i + 1, sizeof(RcOverride));
|
i + 1, sizeof(RcOverride));
|
||||||
if (!video_enc->rc_override)
|
if (!video_enc->rc_override) {
|
||||||
|
av_log(NULL, AV_LOG_FATAL, "Could not (re)allocate memory for rc_override.\n");
|
||||||
exit_program(1);
|
exit_program(1);
|
||||||
|
}
|
||||||
video_enc->rc_override[i].start_frame = start;
|
video_enc->rc_override[i].start_frame = start;
|
||||||
video_enc->rc_override[i].end_frame = end;
|
video_enc->rc_override[i].end_frame = end;
|
||||||
if (q > 0) {
|
if (q > 0) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user