diff options
author | Clément Bœsch <u@pkh.me> | 2016-01-10 16:19:50 +0100 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-01-10 16:28:14 +0100 |
commit | 6d32628bf34972bf6b600c6560a25c329afb62f8 (patch) | |
tree | 593d60e7204bb67e0d756d37f94ec880043a74ee /libavcodec/ccaption_dec.c | |
parent | d86d7b2486cd5c31db8e820d8a89554abf19567e (diff) | |
download | ffmpeg-6d32628bf34972bf6b600c6560a25c329afb62f8.tar.gz |
lavc/ccaption_dec: improve default style
Use monospaced font, and a black box outline.
Diffstat (limited to 'libavcodec/ccaption_dec.c')
-rw-r--r-- | libavcodec/ccaption_dec.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/libavcodec/ccaption_dec.c b/libavcodec/ccaption_dec.c index e3cdcc1669..ca497e5de2 100644 --- a/libavcodec/ccaption_dec.c +++ b/libavcodec/ccaption_dec.c @@ -145,7 +145,15 @@ static av_cold int init_decoder(AVCodecContext *avctx) /* taking by default roll up to 2 */ ctx->mode = CCMODE_ROLLUP; ctx->rollup = 2; - ret = ff_ass_subtitle_header_default(avctx); + ret = ff_ass_subtitle_header(avctx, "Monospace", + ASS_DEFAULT_FONT_SIZE, + ASS_DEFAULT_COLOR, + ASS_DEFAULT_BACK_COLOR, + ASS_DEFAULT_BOLD, + ASS_DEFAULT_ITALIC, + ASS_DEFAULT_UNDERLINE, + 3, + ASS_DEFAULT_ALIGNMENT); if (ret < 0) { return ret; } |