diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-07 23:28:12 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-07 23:52:39 +0200 |
commit | bc0cbaca62b6d74e88a637eedc0cbed80721a0c7 (patch) | |
tree | fdbeba21c3643aeaa8d5ffac27c4a79335f00aaf /libavfilter/avfiltergraph.c | |
parent | a527e692592b7eef69430cc866bb96231526316c (diff) | |
parent | 4582e4c086bc36e20e3c0b85c8108cfa352e0d88 (diff) | |
download | ffmpeg-bc0cbaca62b6d74e88a637eedc0cbed80721a0c7.tar.gz |
Merge remote-tracking branch 'cigaes/master'
* cigaes/master:
lavfi: add comments to explain the negotiation loop.
lavfi: fix filter format negotiation loop.
ffmpeg: move a local variable definition later.
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c index 582a87023d..c5a9e3b59d 100644 --- a/libavfilter/avfiltergraph.c +++ b/libavfilter/avfiltergraph.c @@ -316,12 +316,24 @@ static int formats_declared(AVFilterContext *f) return 1; } +/** + * Perform one round of query_formats() and merging formats lists on the + * filter graph. + * @return >=0 if all links formats lists could be queried and merged; + * AVERROR(EAGAIN) some progress was made in the queries or merging + * and a later call may succeed; + * AVERROR(EIO) (may be changed) plus a log message if no progress + * was made and the negotiation is stuck; + * a negative error code if some other error happened + */ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx) { int i, j, ret; int scaler_count = 0, resampler_count = 0; - int count_queried = 0, count_merged = 0, count_already_merged = 0, - count_delayed = 0; + int count_queried = 0; /* successful calls to query_formats() */ + int count_merged = 0; /* successful merge of formats lists */ + int count_already_merged = 0; /* lists already merged */ + int count_delayed = 0; /* lists that need to be merged later */ for (i = 0; i < graph->nb_filters; i++) { AVFilterContext *f = graph->filters[i]; @@ -333,7 +345,8 @@ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx) ret = ff_default_query_formats(f); if (ret < 0 && ret != AVERROR(EAGAIN)) return ret; - count_queried++; + /* note: EAGAIN could indicate a partial success, not counted yet */ + count_queried += ret >= 0; } /* go through and merge as many format lists as possible */ @@ -463,6 +476,11 @@ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx) if (count_delayed) { AVBPrint bp; + /* if count_queried > 0, one filter at least did set its formats, + that will give additional information to its neighbour; + if count_merged > 0, one pair of formats lists at least was merged, + that will give additional information to all connected filters; + in both cases, progress was made and a new round must be done */ if (count_queried || count_merged) return AVERROR(EAGAIN); av_bprint_init(&bp, 0, AV_BPRINT_SIZE_AUTOMATIC); |