summaryrefslogtreecommitdiff
path: root/libavcodec/movtextdec.c
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2016-01-10 16:19:50 +0100
committerClément Bœsch <u@pkh.me>2016-01-10 16:28:14 +0100
commit6d32628bf34972bf6b600c6560a25c329afb62f8 (patch)
tree593d60e7204bb67e0d756d37f94ec880043a74ee /libavcodec/movtextdec.c
parentd86d7b2486cd5c31db8e820d8a89554abf19567e (diff)
lavc/ccaption_dec: improve default style
Use monospaced font, and a black box outline.
Diffstat (limited to 'libavcodec/movtextdec.c')
-rw-r--r--libavcodec/movtextdec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/movtextdec.c b/libavcodec/movtextdec.c
index 257d5986f5..8d0e8141d3 100644
--- a/libavcodec/movtextdec.c
+++ b/libavcodec/movtextdec.c
@@ -413,7 +413,8 @@ static int mov_text_init(AVCodecContext *avctx) {
if (ret == 0) {
return ff_ass_subtitle_header(avctx, m->d.font, m->d.fontsize, m->d.color,
m->d.back_color, m->d.bold, m->d.italic,
- m->d.underline, m->d.alignment);
+ m->d.underline, ASS_DEFAULT_BORDERSTYLE,
+ m->d.alignment);
} else
return ff_ass_subtitle_header_default(avctx);
}