diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-17 12:36:52 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-26 13:14:59 +0200 |
commit | 8d900aa4d0061967678c28d74659f918b0dbcad9 (patch) | |
tree | 432ee7795830fd8745ddca965c7fb07f2b5e4c4d /libavfilter/graphparser.c | |
parent | a5e8c41c28f907d98d2a739db08f7aef4cbfcf3a (diff) | |
download | ffmpeg-8d900aa4d0061967678c28d74659f918b0dbcad9.tar.gz |
lavfi: remove disabled FF_API_GRAPH_AVCLASS cruft
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r-- | libavfilter/graphparser.c | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index 5f77084020..49155293d8 100644 --- a/libavfilter/graphparser.c +++ b/libavfilter/graphparser.c @@ -350,12 +350,6 @@ static int parse_outputs(const char **buf, AVFilterInOut **curr_inputs, return pad; } -#if FF_API_GRAPH_AVCLASS -#define log_ctx graph -#else -#define log_ctx NULL -#endif - static int parse_sws_flags(const char **buf, AVFilterGraph *graph) { char *p = strchr(*buf, ';'); @@ -364,7 +358,7 @@ static int parse_sws_flags(const char **buf, AVFilterGraph *graph) return 0; if (!p) { - av_log(log_ctx, AV_LOG_ERROR, "sws_flags not terminated with ';'.\n"); + av_log(graph, AV_LOG_ERROR, "sws_flags not terminated with ';'.\n"); return AVERROR(EINVAL); } @@ -397,18 +391,18 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters, AVFilterContext *filter; filters += strspn(filters, WHITESPACES); - if ((ret = parse_inputs(&filters, &curr_inputs, &open_outputs, log_ctx)) < 0) + if ((ret = parse_inputs(&filters, &curr_inputs, &open_outputs, graph)) < 0) goto fail; - if ((ret = parse_filter(&filter, &filters, graph, index, log_ctx)) < 0) + if ((ret = parse_filter(&filter, &filters, graph, index, graph)) < 0) goto fail; - if ((ret = link_filter_inouts(filter, &curr_inputs, &open_inputs, log_ctx)) < 0) + if ((ret = link_filter_inouts(filter, &curr_inputs, &open_inputs, graph)) < 0) goto fail; if ((ret = parse_outputs(&filters, &curr_inputs, &open_inputs, &open_outputs, - log_ctx)) < 0) + graph)) < 0) goto fail; filters += strspn(filters, WHITESPACES); @@ -420,7 +414,7 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters, } while (chr == ',' || chr == ';'); if (chr) { - av_log(log_ctx, AV_LOG_ERROR, + av_log(graph, AV_LOG_ERROR, "Unable to parse graph description substring: \"%s\"\n", filters - 1); ret = AVERROR(EINVAL); @@ -446,7 +440,6 @@ int avfilter_graph_parse2(AVFilterGraph *graph, const char *filters, return ret; } -#undef log_ctx int avfilter_graph_parse(AVFilterGraph *graph, const char *filters, AVFilterInOut *open_inputs, |