# HG changeset patch # User aurel # Date 1222642867 0 # Node ID f1a9ff04eb4b9e2010aba2e62a2557164846e128 # Parent 9808dea139a153b4d408c559020fd11747030dd7 matroskadec: ass events lines must end with a DOS style EOL diff -r 9808dea139a1 -r f1a9ff04eb4b matroskadec.c --- a/matroskadec.c Sun Sep 28 22:58:53 2008 +0000 +++ b/matroskadec.c Sun Sep 28 23:01:07 2008 +0000 @@ -956,7 +956,7 @@ len = 50 + end-ptr + FF_INPUT_BUFFER_PADDING_SIZE; if (!(line = av_malloc(len))) return; - snprintf(line,len,"Dialogue: %s,%d:%02d:%02d.%02d,%d:%02d:%02d.%02d,%s", + snprintf(line,len,"Dialogue: %s,%d:%02d:%02d.%02d,%d:%02d:%02d.%02d,%s\r\n", layer, sh, sm, ss, sc, eh, em, es, ec, ptr); av_free(pkt->data); pkt->data = line;