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-01-26 16:29:20 +0400
commitd566e5394c4508136d7b7b4fdc904ec7cc1fdd82 (patch)
treee15520c81cc832c871ef4ff1212e406d37589296 /common/includes/version.h
parent6d569bd7118eea7107ddb30397f2a960075ee1cc (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.2-9
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 42ca47f4..e1d22c19 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)