diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-07 23:52:42 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-08 00:13:57 +0200 |
commit | 5ad436fcb91a538343e2798ce29630ad4aa71b3c (patch) | |
tree | e71c41195cf7cf19e13458817545da796fac05ee /libavcodec/webvttenc.c | |
parent | 7f1edcb4efe6bfd599a9d8432dc693be2bec2833 (diff) | |
download | ffmpeg-5ad436fcb91a538343e2798ce29630ad4aa71b3c.tar.gz |
avcodec/ass_split: Rename ff_ass_split_dialog2->ff_ass_split_dialog
Reviewed-by: James Almer <jamrial@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/webvttenc.c')
-rw-r--r-- | libavcodec/webvttenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/webvttenc.c b/libavcodec/webvttenc.c index 3181e25120..89b49e42bf 100644 --- a/libavcodec/webvttenc.c +++ b/libavcodec/webvttenc.c @@ -172,7 +172,7 @@ static int webvtt_encode_frame(AVCodecContext *avctx, return AVERROR(EINVAL); } - dialog = ff_ass_split_dialog2(s->ass_ctx, ass); + dialog = ff_ass_split_dialog(s->ass_ctx, ass); if (!dialog) return AVERROR(ENOMEM); webvtt_style_apply(s, dialog->style); |