Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2013-10-12 23:26:48 +0400
committerUnderground78 <underground78@users.sourceforge.net>2013-10-13 00:04:00 +0400
commit38152d79401035b9d6f66bc94f7fad6bcb9f0c1c (patch)
tree2ce2e5901ddc37554fbbdd1dfc335749789a0584 /src
parent3394fdfe4bc2a1d73c5f84e85ac85c26e21d3468 (diff)
Update LAV Filters to add a commit number in its version number.
This way if we distribute LAV Filters version X.Y.Z.N, it means that our custom build is based on: - the stable version X.Y.Z, - with N official patches (which will be part of next official LAV Filters build), - and some custom non-official patches which are here to improve the integration in MPC-HC.
Diffstat (limited to 'src')
-rw-r--r--src/mpc-hc/FGFilterLAV.cpp9
m---------src/thirdparty/LAVFilters/src0
2 files changed, 5 insertions, 4 deletions
diff --git a/src/mpc-hc/FGFilterLAV.cpp b/src/mpc-hc/FGFilterLAV.cpp
index 1852f563e..ffe3aa869 100644
--- a/src/mpc-hc/FGFilterLAV.cpp
+++ b/src/mpc-hc/FGFilterLAV.cpp
@@ -33,10 +33,11 @@
#include "../filters/InternalPropertyPage.h"
#include "../filters/PinInfoWnd.h"
-#define LAV_FILTERS_VERSION_MAJOR 0
-#define LAV_FILTERS_VERSION_MINOR 58
-#define LAV_FILTERS_VERSION_REVISION 1
-#define LAV_FILTERS_VERSION ((QWORD)LAV_FILTERS_VERSION_MAJOR << 48 | (QWORD)LAV_FILTERS_VERSION_MINOR << 32 | (QWORD)LAV_FILTERS_VERSION_REVISION << 16)
+#define LAV_FILTERS_VERSION_MAJOR 0
+#define LAV_FILTERS_VERSION_MINOR 58
+#define LAV_FILTERS_VERSION_REVISION 1
+#define LAV_FILTERS_VERSION_COMMIT_NUM 0
+#define LAV_FILTERS_VERSION ((QWORD)LAV_FILTERS_VERSION_MAJOR << 48 | (QWORD)LAV_FILTERS_VERSION_MINOR << 32 | (QWORD)LAV_FILTERS_VERSION_REVISION << 16 | LAV_FILTERS_VERSION_COMMIT_NUM)
#define IDS_R_INTERNAL_LAVSPLITTER IDS_R_INTERNAL_FILTERS _T("\\LAVSplitter")
#define IDS_R_INTERNAL_LAVVIDEO IDS_R_INTERNAL_FILTERS _T("\\LAVVideo")
diff --git a/src/thirdparty/LAVFilters/src b/src/thirdparty/LAVFilters/src
-Subproject de3dbfd79e3c69e339cc15fc66d05686e5ea972
+Subproject 850b58ac17e645b2d1f52e7bab055483eaf97d8