don't set a dummy chapter title when title is unknown

Originally committed as revision 13249 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Aurelien Jacobs 17 years ago
parent 842ffee386
commit 30897e764a
  1. 2
      libavformat/matroskadec.c

@ -2254,7 +2254,7 @@ matroska_parse_chapters(AVFormatContext *s)
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;

Loading…
Cancel
Save