1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 11:42:40 +01:00

- media-sound/mixxx: Add Qt5 support

This commit is contained in:
2015-09-18 17:04:51 +00:00
parent acec8396c7
commit e9166c28a2
7 changed files with 114 additions and 28 deletions

View File

@@ -0,0 +1,35 @@
diff -dNur a/src/soundsourceffmpeg.cpp b/src/soundsourceffmpeg.cpp
--- a/src/soundsourceffmpeg.cpp 2015-09-18 11:48:36.423194604 +0000
+++ b/src/soundsourceffmpeg.cpp 2015-09-18 11:56:15.933501047 +0000
@@ -509,7 +509,7 @@
m_iCurrentMixxTs = filepos;
- m_bIsSeeked = TRUE;
+ m_bIsSeeked = true;
return filepos;
}
@@ -521,7 +521,7 @@
// Make sure we allways start at begining and cache have some
// material that we can consume.
seek(0);
- m_bIsSeeked = FALSE;
+ m_bIsSeeked = false;
}
getBytesFromCache((char *)destination, m_iCurrentMixxTs, size);
@@ -530,11 +530,11 @@
// As this is also Hack
// If we don't seek like we don't on analyzer.. keep
// place in mind..
- if (m_bIsSeeked == FALSE) {
+ if (m_bIsSeeked == false) {
m_iCurrentMixxTs += size;
}
- m_bIsSeeked = FALSE;
+ m_bIsSeeked = false;
return size;
}