ffmpeg: raise ENOMEM on avfilter_graph_alloc() failure.
This commit is contained in:
parent
048cc80292
commit
73413e6bca
2
ffmpeg.c
2
ffmpeg.c
@ -620,6 +620,8 @@ static int configure_video_filters(InputStream *ist, OutputStream *ost)
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ost->graph = avfilter_graph_alloc();
|
ost->graph = avfilter_graph_alloc();
|
||||||
|
if (!ost->graph)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
|
||||||
if (ist->st->sample_aspect_ratio.num) {
|
if (ist->st->sample_aspect_ratio.num) {
|
||||||
sample_aspect_ratio = ist->st->sample_aspect_ratio;
|
sample_aspect_ratio = ist->st->sample_aspect_ratio;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user