mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
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
This commit is contained in:
parent
e5d2bdec11
commit
22b7b23c17
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user