diff options
author | Clément Bœsch <clement.boesch@smartjog.com> | 2011-12-07 10:44:50 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-12-12 17:49:34 +0100 |
commit | 80914cde6f2b5d6584c74bad6b3613d16dfbda67 (patch) | |
tree | bd6fee73a0ebaae4974e70b09193b8ee24f09236 /libavfilter | |
parent | fa4e30af7e589c27437d2b96a384d4ad1c3485ad (diff) | |
download | ffmpeg-80914cde6f2b5d6584c74bad6b3613d16dfbda67.tar.gz |
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')
-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 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(""); |