From 4686b1c4b8a13dded4b49148bffb8ae4f6ad6fa6 Mon Sep 17 00:00:00 2001 From: Daniel Stankewitz Date: Thu, 20 May 2021 14:17:24 +0200 Subject: [PATCH] Delete 0002-set-matroska-timebase-to-one-microsecond.patch --- ...2-set-matroska-timebase-to-one-microsecond.patch | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 patches/0002-set-matroska-timebase-to-one-microsecond.patch diff --git a/patches/0002-set-matroska-timebase-to-one-microsecond.patch b/patches/0002-set-matroska-timebase-to-one-microsecond.patch deleted file mode 100644 index 2355b38..0000000 --- a/patches/0002-set-matroska-timebase-to-one-microsecond.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- libavformat/matroskaenc.c 2018-08-10 22:18:59.051659000 +0200 -+++ libavformat/matroskaenc2.c 2018-08-10 22:18:31.932030400 +0200 -@@ -2671,8 +2671,8 @@ - } - - 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 microseconds!!) -+ avpriv_set_pts_info(s->streams[i], 64, 1, 1000000); - } - - return 0;