summaryrefslogtreecommitdiff
path: root/omxplayer/issue-260.patch
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-01-28 18:12:59 +0100
committerKarel Kočí <cynerd@email.cz>2020-01-28 18:12:59 +0100
commit00fb5687c1cd8364b99411cf880afe918c8d0533 (patch)
treeab52a00f87d5071c42003e8736b35e73d2a260cd /omxplayer/issue-260.patch
parent03d81dc30594f63016d0283e1841e4a09a93a0bc (diff)
downloadalpine-personal-pkgs-00fb5687c1cd8364b99411cf880afe918c8d0533.tar.gz
alpine-personal-pkgs-00fb5687c1cd8364b99411cf880afe918c8d0533.tar.bz2
alpine-personal-pkgs-00fb5687c1cd8364b99411cf880afe918c8d0533.zip
Revert "omxplayer: try to enable for aarch64"
This reverts commit 03d81dc30594f63016d0283e1841e4a09a93a0bc.
Diffstat (limited to 'omxplayer/issue-260.patch')
-rw-r--r--omxplayer/issue-260.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/omxplayer/issue-260.patch b/omxplayer/issue-260.patch
deleted file mode 100644
index 4e8e77a..0000000
--- a/omxplayer/issue-260.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-https://github.com/popcornmix/omxplayer/issues/260
-
-Not a fix, but improves the situation a little bit.
-
---- omxplayer-6ee9a0a5488119786990b6f91990d59d6e35427c.orig/omxplayer.cpp
-+++ omxplayer-6ee9a0a5488119786990b6f91990d59d6e35427c/omxplayer.cpp
-@@ -1543,6 +1543,9 @@
- }
- }
-
-+ if (audio_pts < stamp) audio_pts = DVD_NOPTS_VALUE;
-+ if (video_pts < stamp) video_pts = DVD_NOPTS_VALUE;
-+
- float audio_fifo = audio_pts == DVD_NOPTS_VALUE ? 0.0f : audio_pts / DVD_TIME_BASE - stamp * 1e-6;
- float video_fifo = video_pts == DVD_NOPTS_VALUE ? 0.0f : video_pts / DVD_TIME_BASE - stamp * 1e-6;
- float threshold = std::min(0.1f, (float)m_player_audio.GetCacheTotal() * 0.1f);