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

github.com/mpc-hc/LAVFilters.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnderground78 <underground78@users.sourceforge.net>2013-10-08 01:21:45 +0400
committerUnderground78 <underground78@users.sourceforge.net>2014-09-07 12:36:44 +0400
commitd71fa1b9b1ff648a74b978e35af592406c25f499 (patch)
tree8243e4b1a74854cfee88436014cdcffed767ad59 /common/includes/version.h
parentf10b3e25cb8c73bb23504113b42e6625a7f269fa (diff)
[MPC-HC] Version number: Add a "git describe based" commit number to identify the vanilla LAV Filters we are based on.mpc-hc-1.7.6-4
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 'common/includes/version.h')
-rw-r--r--common/includes/version.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/includes/version.h b/common/includes/version.h
index 87b031c2..7e844a36 100644
--- a/common/includes/version.h
+++ b/common/includes/version.h
@@ -8,6 +8,8 @@
#define LAV_VIDEO "LAV Video Decoder"
#define LAV_SPLITTER "LAV Splitter"
+#include "version_rev.h"
+
/////////////////////////////////////////////////////////
#ifndef ISPP_INCLUDED
@@ -24,8 +26,8 @@
#define DO_MAKE_STR(x) #x
#define MAKE_STR(x) DO_MAKE_STR(x)
-#define LAV_VERSION LAV_VERSION_MAJOR.LAV_VERSION_MINOR.LAV_VERSION_REVISION
-#define LAV_VERSION_TAG LAV_VERSION_MAJOR, LAV_VERSION_MINOR, LAV_VERSION_REVISION
+#define LAV_VERSION LAV_VERSION_MAJOR.LAV_VERSION_MINOR.LAV_VERSION_REVISION.LAV_VERSION_COMMIT_NUM
+#define LAV_VERSION_TAG LAV_VERSION_MAJOR, LAV_VERSION_MINOR, LAV_VERSION_REVISION, LAV_VERSION_COMMIT_NUM
#define LAV_VERSION_STR MAKE_STR(LAV_VERSION)