diff options
author | Clément Bœsch <u@pkh.me> | 2014-09-21 18:36:11 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-09-21 18:41:45 +0200 |
commit | d210c0e777c181f3954582703c95e85d885d68c1 (patch) | |
tree | add367051a8b879c5849bce926c4463d47e0b1ea /libavcodec/ass.h | |
parent | dcdc1cbf4321071b933e14d59afc518321d2450a (diff) | |
download | ffmpeg-d210c0e777c181f3954582703c95e85d885d68c1.tar.gz |
avcodec/ass: add ff_ass_add_rect_bprint() helper
Diffstat (limited to 'libavcodec/ass.h')
-rw-r--r-- | libavcodec/ass.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/ass.h b/libavcodec/ass.h index 2df38e6efa..5ed947ad9e 100644 --- a/libavcodec/ass.h +++ b/libavcodec/ass.h @@ -92,6 +92,13 @@ int ff_ass_add_rect(AVSubtitle *sub, const char *dialog, int ts_start, int duration, int raw); /** + * Same as ff_ass_add_rect_bprint, but taking an AVBPrint buffer instead of a + * string. + */ +int ff_ass_add_rect_bprint(AVSubtitle *sub, const AVBPrint *buf, + int ts_start, int duration, int raw); + +/** * Add an ASS dialog line to an AVBPrint buffer. * * @param buf pointer to an initialized AVBPrint buffer |