summaryrefslogtreecommitdiff
path: root/libavfilter/avfiltergraph.c
diff options
context:
space:
mode:
authorVitor Sessak <vitor1001@gmail.com>2008-04-04 20:06:45 +0000
committerVitor Sessak <vitor1001@gmail.com>2008-04-04 20:06:45 +0000
commit66d9e9be5076b376385bc3cc17e195bfe5d21b09 (patch)
tree9fbc81ed1aa1df03ded77a47a0dc2e427ba456ce /libavfilter/avfiltergraph.c
parent5ded633e07b670b8f77528e7e91ffde9605de46e (diff)
Doxygenize some comments
Commited in SoC by Bobby Bingham on 2007-08-17 22:59:59 Originally committed as revision 12702 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r--libavfilter/avfiltergraph.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index cf8ba93bb9..aff3c3dd93 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -47,9 +47,11 @@ static int link_init(AVFilterContext *ctx, const char *args, void *opaque)
return !opaque;
}
-/* given the link between the dummy filter and an internal filter whose input
+/**
+ * Given the link between the dummy filter and an internal filter whose input
* is being exported outside the graph, this returns the externally visible
- * link */
+ * link
+ */
static inline AVFilterLink *get_extern_input_link(AVFilterLink *link)
{
GraphLinkContext *lctx = link->src->priv;
@@ -99,9 +101,11 @@ static int link_in_config_props(AVFilterLink *link)
return ret;
}
-/* given the link between the dummy filter and an internal filter whose input
+/**
+ * Given the link between the dummy filter and an internal filter whose input
* is being exported outside the graph, this returns the externally visible
- * link */
+ * link
+ */
static inline AVFilterLink *get_extern_output_link(AVFilterLink *link)
{
GraphLinkContext *lctx = link->dst->priv;