[SCM] libav/experimental: Change the signature of parse_filter() to make it return an error code.
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 17:18:44 UTC 2013
The following commit has been merged in the experimental branch:
commit 688b9dad9c2ebd37be06353f69a81e86df95e70d
Author: Stefano Sabatini <stefano.sabatini-lala at poste.it>
Date: Sun Nov 7 18:39:54 2010 +0000
Change the signature of parse_filter() to make it return an error code.
Originally committed as revision 25692 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c
index 125bd9e..35b6845 100644
--- a/libavfilter/graphparser.c
+++ b/libavfilter/graphparser.c
@@ -141,12 +141,11 @@ static int create_filter(AVFilterContext **filt_ctx, AVFilterGraph *ctx, int ind
/**
* Parse "filter=params"
*/
-static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
- int index, AVClass *log_ctx)
+static int parse_filter(AVFilterContext **filt_ctx, const char **buf, AVFilterGraph *graph,
+ int index, AVClass *log_ctx)
{
char *opts = NULL;
char *name = av_get_token(buf, "=,;[\n");
- AVFilterContext *filt_ctx;
int ret;
if (**buf == '=') {
@@ -154,10 +153,10 @@ static AVFilterContext *parse_filter(const char **buf, AVFilterGraph *graph,
opts = av_get_token(buf, "[],;\n");
}
- ret = create_filter(&filt_ctx, graph, index, name, opts, log_ctx);
+ ret = create_filter(filt_ctx, graph, index, name, opts, log_ctx);
av_free(name);
av_free(opts);
- return filt_ctx;
+ return ret;
}
static void free_inout(AVFilterInOut *head)
@@ -326,9 +325,7 @@ int avfilter_graph_parse(AVFilterGraph *graph, const char *filters,
if (parse_inputs(&filters, &curr_inputs, &open_outputs, log_ctx) < 0)
goto fail;
- filter = parse_filter(&filters, graph, index, log_ctx);
-
- if (!filter)
+ if (parse_filter(&filter, &filters, graph, index, log_ctx) < 0)
goto fail;
if (filter->input_count == 1 && !curr_inputs && !index) {
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list