diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-05-09 20:27:00 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-05-14 18:56:52 +0200 |
commit | 7a442233198ad71785cc9bf540eb0b7aaef25dd2 (patch) | |
tree | 93afc65392ebc80c1cc0216de5a39f1a1c85b6a9 /libavfilter | |
parent | 381cc4b1e6e5e72b8e776f1f4913acfd056fc17f (diff) | |
download | ffmpeg-7a442233198ad71785cc9bf540eb0b7aaef25dd2.tar.gz |
lavfi: document filter design subtleties.
The details on reference ownership and permissions are missing.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/avfilter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavfilter/avfilter.h b/libavfilter/avfilter.h index 48a50fc262..97e457f2c8 100644 --- a/libavfilter/avfilter.h +++ b/libavfilter/avfilter.h @@ -373,6 +373,8 @@ void avfilter_formats_changeref(AVFilterFormats **oldref, /** * A filter pad used for either input or output. + * + * See doc/filter_design.txt for details on how to implement the methods. */ struct AVFilterPad { /** |