# HG changeset patch # User aurel # Date 1211543231 0 # Node ID 609eabc17cb2eacb75e7cb794c53e56747e11ccf # Parent f63630e08b597e80d32dcf57fd6d5d3345413e9f don't set a dummy chapter title when title is unknown diff -r f63630e08b59 -r 609eabc17cb2 matroskadec.c --- a/matroskadec.c Fri May 23 11:46:05 2008 +0000 +++ b/matroskadec.c Fri May 23 11:47:11 2008 +0000 @@ -2254,7 +2254,7 @@ start = start * AV_TIME_BASE / 1000000000; if (end != AV_NOPTS_VALUE) end = end * AV_TIME_BASE / 1000000000; - res = ff_new_chapter(s, start, end, title ? title : "(unnamed)"); + res = ff_new_chapter(s, start, end, title); } av_free(title); break;