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.c | |
parent | 65639e6bef8046b0ee157a11511ac6f9e8114776 (diff) | |
download | ffmpeg-3d258696057d599d0d9c3b8f73c9a55ec3355782.tar.gz |
avcodec/ass: assume raw=0 in ff_ass_add_rect_bprint
Diffstat (limited to 'libavcodec/ass.c')
-rw-r--r-- | libavcodec/ass.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/ass.c b/libavcodec/ass.c index fd00981a68..398a805da5 100644 --- a/libavcodec/ass.c +++ b/libavcodec/ass.c @@ -175,11 +175,11 @@ err: } int ff_ass_add_rect_bprint(AVSubtitle *sub, const AVBPrint *buf, - int ts_start, int duration, int raw) + int ts_start, int duration) { if (!av_bprint_is_complete(buf)) return AVERROR(ENOMEM); - return ff_ass_add_rect(sub, buf->str, ts_start, duration, raw); + return ff_ass_add_rect(sub, buf->str, ts_start, duration, 0); } void ff_ass_bprint_text_event(AVBPrint *buf, const char *p, int size, |