[FFmpeg-soc] [soc]: r929 - in libavfilter: avfiltergraph.c avfiltergraphdesc.c
koorogi
subversion at mplayerhq.hu
Sat Aug 18 00:59:59 CEST 2007
Author: koorogi
Date: Sat Aug 18 00:59:59 2007
New Revision: 929
Log:
Doxygenize some comments
Modified:
libavfilter/avfiltergraph.c
libavfilter/avfiltergraphdesc.c
Modified: libavfilter/avfiltergraph.c
==============================================================================
--- libavfilter/avfiltergraph.c (original)
+++ libavfilter/avfiltergraph.c Sat Aug 18 00:59:59 2007
@@ -47,9 +47,11 @@ static int link_init(AVFilterContext *ct
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(AVFilter
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;
Modified: libavfilter/avfiltergraphdesc.c
==============================================================================
--- libavfilter/avfiltergraphdesc.c (original)
+++ libavfilter/avfiltergraphdesc.c Sat Aug 18 00:59:59 2007
@@ -42,7 +42,7 @@ typedef enum
SEC_OUTPUTS
} Section;
-/* a comment is a line which is empty, or starts with whitespace, ';' or '#' */
+/** a comment is a line which is empty, or starts with whitespace, ';' or '#' */
static inline int is_line_comment(char *line)
{
return line[0] == 0 ||
More information about the FFmpeg-soc
mailing list