summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/matroskadec.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index 2b6f2ba494..b038267b5b 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -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;