diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2000-10-25 19:09:53 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2000-10-25 19:09:53 +0000 |
commit | 9bae9d4b91cd2dbc16f3dad7775c55f1e3c74c1f (patch) | |
tree | 13ef723317322bbc333ec0b50761f09b5cd56f51 /gst/gstmeta.h | |
parent | 268bcbb89dc2974653f9db6e597076d03a980cc9 (diff) |
More Docs updates.
Original commit message from CVS:
More Docs updates.
Added plugin documentation. I fear we need a gstdoc implementation
that loads plugins and does introspection on them. I think we should
automatically create the docs for the pads and mime types the plugins
provide. Does anyone have enough perl knowledge to add these features? I
allready changed the C code to output the pad definitions but my perl
knowledge is too limited, for now, to implement the rest of the needed
functionality...
Diffstat (limited to 'gst/gstmeta.h')
-rw-r--r-- | gst/gstmeta.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gst/gstmeta.h b/gst/gstmeta.h index 2ba8998af..47b33fb03 100644 --- a/gst/gstmeta.h +++ b/gst/gstmeta.h @@ -33,8 +33,8 @@ extern "C" { #define GST_META(meta) ((GstMeta *)(meta)) -#define GST_META_FLAGS(buf) \ - (GST_META(buf)->flags) +#define GST_META_FLAGS(meta) \ + (GST_META(meta)->flags) #define GST_META_FLAG_IS_SET(meta,flag) \ (GST_META_FLAGS(meta) & (flag)) #define GST_META_FLAG_SET(meta,flag) \ |