summaryrefslogtreecommitdiff
path: root/libavfilter/vf_drawtext.c
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2011-12-07 10:44:50 +0100
committerClément Bœsch <ubitux@gmail.com>2011-12-12 17:49:34 +0100
commit80914cde6f2b5d6584c74bad6b3613d16dfbda67 (patch)
treebd6fee73a0ebaae4974e70b09193b8ee24f09236 /libavfilter/vf_drawtext.c
parentfa4e30af7e589c27437d2b96a384d4ad1c3485ad (diff)
timecode: rename internal ff_* symbols to avpriv_*.
Those functions are shared between libs. Also fix a typo in function names: smtpe → smpte.
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 ffcf512992..0c545c8140 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -341,7 +341,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque)
}
if (dtext->tc.str) {
- if (ff_init_smtpe_timecode(ctx, &dtext->tc) < 0)
+ if (avpriv_init_smpte_timecode(ctx, &dtext->tc) < 0)
return AVERROR(EINVAL);
if (!dtext->text)
dtext->text = av_strdup("");