Commit 22b7b23c authored by Stefano Sabatini's avatar Stefano Sabatini

Make avfilter_graph_add_filter() returns AVERROR(ENOMEM) in case of

failed reallocation, rather than just -1.

Originally committed as revision 22878 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e5d2bdec
......@@ -40,7 +40,7 @@ int avfilter_graph_add_filter(AVFilterGraph *graph, AVFilterContext *filter)
sizeof(AVFilterContext*) * ++graph->filter_count);
if (!graph->filters)
return -1;
return AVERROR(ENOMEM);
graph->filters[graph->filter_count - 1] = filter;
......
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