summaryrefslogtreecommitdiff
path: root/libavcodec/ass_split.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-07 23:52:42 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-08 00:13:57 +0200
commit5ad436fcb91a538343e2798ce29630ad4aa71b3c (patch)
treee71c41195cf7cf19e13458817545da796fac05ee /libavcodec/ass_split.h
parent7f1edcb4efe6bfd599a9d8432dc693be2bec2833 (diff)
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/ass_split.h')
-rw-r--r--libavcodec/ass_split.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ass_split.h b/libavcodec/ass_split.h
index 2ce756203e..a45fb9b8a1 100644
--- a/libavcodec/ass_split.h
+++ b/libavcodec/ass_split.h
@@ -110,7 +110,7 @@ typedef struct ASSSplitContext ASSSplitContext;
ASSSplitContext *ff_ass_split(const char *buf);
/**
- * Free a dialogue obtained from ff_ass_split_dialog2().
+ * Free a dialogue obtained from ff_ass_split_dialog().
*/
void ff_ass_free_dialog(ASSDialog **dialogp);
@@ -121,7 +121,7 @@ void ff_ass_free_dialog(ASSDialog **dialogp);
* @param buf String containing the ASS "Dialogue" line.
* @return Pointer to the split ASSDialog. Must be freed with ff_ass_free_dialog()
*/
-ASSDialog *ff_ass_split_dialog2(ASSSplitContext *ctx, const char *buf);
+ASSDialog *ff_ass_split_dialog(ASSSplitContext *ctx, const char *buf);
/**
* Free all the memory allocated for an ASSSplitContext.