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/subviewerdec.c | |
parent | 65639e6bef8046b0ee157a11511ac6f9e8114776 (diff) | |
download | ffmpeg-3d258696057d599d0d9c3b8f73c9a55ec3355782.tar.gz |
avcodec/ass: assume raw=0 in ff_ass_add_rect_bprint
Diffstat (limited to 'libavcodec/subviewerdec.c')
-rw-r--r-- | libavcodec/subviewerdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/subviewerdec.c b/libavcodec/subviewerdec.c index 4af5926490..82cb8cf85d 100644 --- a/libavcodec/subviewerdec.c +++ b/libavcodec/subviewerdec.c @@ -59,7 +59,7 @@ static int subviewer_decode_frame(AVCodecContext *avctx, // note: no need to rescale pts & duration since they are in the same // timebase as ASS (1/100) if (ptr && avpkt->size > 0 && !subviewer_event_to_ass(&buf, ptr)) - ret = ff_ass_add_rect_bprint(sub, &buf, avpkt->pts, avpkt->duration, 0); + ret = ff_ass_add_rect_bprint(sub, &buf, avpkt->pts, avpkt->duration); av_bprint_finalize(&buf, NULL); if (ret < 0) return ret; |