Commit e53794ab authored by aurel's avatar aurel

matroskadec: allows inserting chapters with unspecified end

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13242 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ed602e88
......@@ -2250,8 +2250,12 @@ matroska_parse_chapters(AVFormatContext *s)
}
}
if(start != AV_NOPTS_VALUE && end != AV_NOPTS_VALUE)
res = ff_new_chapter(s, start * AV_TIME_BASE / 1000000000 , end * AV_TIME_BASE / 1000000000, title ? title : "(unnamed)");
if (start != AV_NOPTS_VALUE) {
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)");
}
av_free(title);
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment