diff options
author | Clément Bœsch <u@pkh.me> | 2014-10-19 21:03:57 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-10-19 23:24:34 +0200 |
commit | 3d258696057d599d0d9c3b8f73c9a55ec3355782 (patch) | |
tree | a732d636796816cc66e96124b7ae3bfce16c0bb2 /libavcodec/ass.h | |
parent | 65639e6bef8046b0ee157a11511ac6f9e8114776 (diff) | |
download | ffmpeg-3d258696057d599d0d9c3b8f73c9a55ec3355782.tar.gz |
avcodec/ass: assume raw=0 in ff_ass_add_rect_bprint
Diffstat (limited to 'libavcodec/ass.h')
-rw-r--r-- | libavcodec/ass.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ass.h b/libavcodec/ass.h index 5ed947ad9e..08dcfdca6e 100644 --- a/libavcodec/ass.h +++ b/libavcodec/ass.h @@ -93,10 +93,10 @@ int ff_ass_add_rect(AVSubtitle *sub, const char *dialog, /** * Same as ff_ass_add_rect_bprint, but taking an AVBPrint buffer instead of a - * string. + * string, and assuming raw=0. */ int ff_ass_add_rect_bprint(AVSubtitle *sub, const AVBPrint *buf, - int ts_start, int duration, int raw); + int ts_start, int duration); /** * Add an ASS dialog line to an AVBPrint buffer. |