diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-04-19 12:43:33 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-04-23 14:13:40 +0200 |
commit | e0761feec4dc9d10bd0fa58a0472b69277563e92 (patch) | |
tree | ca32a0b35db1eb82c2e90020b121a973e131d340 /libavfilter/avfilter.h | |
parent | 78ac49c2335f387d2c3d080b619c27ecd69fb41f (diff) | |
download | ffmpeg-e0761feec4dc9d10bd0fa58a0472b69277563e92.tar.gz |
avfilter: add a pointer from links to graph.
Diffstat (limited to 'libavfilter/avfilter.h')
-rw-r--r-- | libavfilter/avfilter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index f110623baa..b0b8cd098a 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -690,6 +690,12 @@ struct AVFilterLink { AVRational time_base; struct AVFilterPool *pool; + + /** + * Graph the filter belongs to. + */ + struct AVFilterGraph *graph; + }; /** |