From 7c19eb73c17d3d46806a7a3d530f2ccd33e26f78 Mon Sep 17 00:00:00 2001 From: Daniel Stankewitz Date: Fri, 10 Aug 2018 22:33:43 +0200 Subject: [PATCH] Update 0002-set-matroska-timebase-to-one-microsecond.patch --- patches/0002-set-matroska-timebase-to-one-microsecond.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/0002-set-matroska-timebase-to-one-microsecond.patch b/patches/0002-set-matroska-timebase-to-one-microsecond.patch index 09404fb..2355b38 100644 --- a/patches/0002-set-matroska-timebase-to-one-microsecond.patch +++ b/patches/0002-set-matroska-timebase-to-one-microsecond.patch @@ -6,7 +6,7 @@ for (i = 0; i < s->nb_streams; i++) { - // ms precision is the de-facto standard timescale for mkv files - avpriv_set_pts_info(s->streams[i], 64, 1, 1000); -+ // ms precision is the de-facto standard timescale for mkv files (Patched: We're using nanoseconds!!) ++ // ms precision is the de-facto standard timescale for mkv files (Patched: We're using microseconds!!) + avpriv_set_pts_info(s->streams[i], 64, 1, 1000000); }