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-03-13 02:00:54 +0400
commit2fcf5d4732cbb3b6b360142073d92d7c30e01c84 (patch)
tree5de941dba8270ca6079bdc84fb8efbb0b0e07c50 /common/includes
parente56de577db65611eac787f18de75a80957eb6021 (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.4-5
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')
-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 ced2ca25..c2b6cc3d 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)