diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-06-27 00:34:36 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-06-27 00:34:36 +0200 |
commit | 5916bc46581230c68c946c0b4733cce381eddcbd (patch) | |
tree | 016c3ddabcec1e8ff2b50a375d9377eb31319842 /libavfilter/graphparser.c | |
parent | 052f4f859cfee9bb86ea3ccb0c56ea11d050ef17 (diff) | |
parent | 1961e46c15c23a041f8d8614a25388a3ee9eff63 (diff) | |
download | ffmpeg-5916bc46581230c68c946c0b4733cce381eddcbd.tar.gz |
Merge commit '1961e46c15c23a041f8d8614a25388a3ee9eff63'
* commit '1961e46c15c23a041f8d8614a25388a3ee9eff63':
lavfi: remove disabled FF_API_FILTERS_PUBLIC cruft
lavfi: remove disabled FF_API_DEFAULT_CONFIG_OUTPUT_LINK cruft
lavfi: use proper FF_API guards for different deprecated functions
lavfi: remove disabled FF_API_VSRC_BUFFER_ADD_FRAME cruft
lavfi: remove disabled FF_API_SAMPLERATE64 cruft
lavfi: remove disabled FF_API_GRAPH_AVCLASS cruft
Conflicts:
libavfilter/avfilter.c
libavfilter/avfilter.h
libavfilter/buffersrc.c
libavfilter/formats.c
libavfilter/graphparser.c
libavfilter/version.h
libavfilter/video.c
libavfilter/vsrc_buffer.h
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/graphparser.c')
-rw-r--r-- | libavfilter/graphparser.c | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/libavfilter/graphparser.c b/libavfilter/graphparser.c index ba5d9b05a2..beaae9375c 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,17 +391,17 @@ 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 end; - - if ((ret = parse_filter(&filter, &filters, graph, index, log_ctx)) < 0) + if ((ret = parse_filter(&filter, &filters, graph, index, graph)) < 0) goto end; - 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 end; if ((ret = parse_outputs(&filters, &curr_inputs, &open_inputs, &open_outputs, - log_ctx)) < 0) + graph)) < 0) goto end; filters += strspn(filters, WHITESPACES); @@ -419,7 +413,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_ptr, AVFilterInOut **open_outputs_ptr, |