summaryrefslogtreecommitdiff
path: root/libavfilter/vf_drawtext.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-05-23 15:50:39 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-24 15:36:54 +0200
commitb5be1a7e233618fbede597f6fc81780a1a3f2266 (patch)
tree92086b1b83451d7f3ef7d8928ea131e4a06569df /libavfilter/vf_drawtext.c
parent87a2bf2459537b81ddeb64ae2ba7b4e8bae29250 (diff)
avfilter/vf_drawtext: Fix doxygen comment
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_drawtext.c')
-rw-r--r--libavfilter/vf_drawtext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index d1f7fcb1be..157bfc72f9 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -664,7 +664,7 @@ static int func_eval_expr(AVFilterContext *ctx, AVBPrint *bp,
static const struct drawtext_function {
const char *name;
unsigned argc_min, argc_max;
- int tag; /** opaque argument to func */
+ int tag; /**< opaque argument to func */
int (*func)(AVFilterContext *, AVBPrint *, char *, unsigned, char **, int);
} functions[] = {
{ "expr", 1, 1, 0, func_eval_expr },