diff options
author | Clément Bœsch <u@pkh.me> | 2014-10-19 21:19:07 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2014-10-19 23:24:34 +0200 |
commit | c669af0f248e25781a2a12bd96bf9896b1c4484c (patch) | |
tree | 8afc25fae705dd277a02f5e3866e8dfbbfe48757 /libavcodec/samidec.c | |
parent | 3d258696057d599d0d9c3b8f73c9a55ec3355782 (diff) | |
download | ffmpeg-c669af0f248e25781a2a12bd96bf9896b1c4484c.tar.gz |
avcodec/ass: add ASS trailing \r\n in one single place
Diffstat (limited to 'libavcodec/samidec.c')
-rw-r--r-- | libavcodec/samidec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/samidec.c b/libavcodec/samidec.c index b2395a1343..7705f93e7b 100644 --- a/libavcodec/samidec.c +++ b/libavcodec/samidec.c @@ -104,7 +104,7 @@ static int sami_paragraph_to_ass(AVCodecContext *avctx, const char *src) av_bprint_clear(&sami->full); if (sami->source.len) av_bprintf(&sami->full, "{\\i1}%s{\\i0}\\N", sami->source.str); - av_bprintf(&sami->full, "%s\r\n", sami->content.str); + av_bprintf(&sami->full, "%s", sami->content.str); end: av_free(dupsrc); |