[FFmpeg-devel] [PATCH 13/13] Document AVFilterInOut fields.
Stefano Sabatini
stefano.sabatini-lala
Sat Nov 6 02:25:30 CET 2010
---
libavfilter/graphparser.h | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/libavfilter/graphparser.h b/libavfilter/graphparser.h
index 2902524..c74644a 100644
--- a/libavfilter/graphparser.h
+++ b/libavfilter/graphparser.h
@@ -29,10 +29,13 @@
* A linked-list of the inputs/outputs of the filter chain.
*/
typedef struct AVFilterInOut {
+ /** label for this link */
char *name;
+ /** filter context connected to this link */
AVFilterContext *filter_ctx;
+ /** index of the filter context pad to use for linking */
int pad_idx;
-
+ /** next inout in the list, or NULL if this is the last */
struct AVFilterInOut *next;
} AVFilterInOut;
--
1.7.1
More information about the ffmpeg-devel
mailing list