diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-23 15:50:39 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-24 15:36:54 +0200 |
commit | b5be1a7e233618fbede597f6fc81780a1a3f2266 (patch) | |
tree | 92086b1b83451d7f3ef7d8928ea131e4a06569df | |
parent | 87a2bf2459537b81ddeb64ae2ba7b4e8bae29250 (diff) | |
download | ffmpeg-b5be1a7e233618fbede597f6fc81780a1a3f2266.tar.gz |
avfilter/vf_drawtext: Fix doxygen comment
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_drawtext.c | 2 |
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 }, |