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:
authorHendrik Leppkes <h.leppkes@gmail.com>2012-03-29 17:18:04 +0400
committerHendrik Leppkes <h.leppkes@gmail.com>2012-03-29 17:18:04 +0400
commit09ba89ab600a48a81fa8d212acf9ecf948ab6d1d (patch)
tree231df69fc53f3a3d4e2fc7649fdbfe1e4d133325
parent898ccf428e6e09ce5414242181108479c199f90d (diff)
Update changelog and version0.50.1
-rw-r--r--CHANGELOG.txt8
-rw-r--r--LAVFilters.iss8
-rw-r--r--common/includes/version.h9
3 files changed, 17 insertions, 8 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 7fe8a5b3..83963157 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,5 +1,13 @@
LAV DirectShow Filters Changelog
===================================
+0.50.1 - 2012/03/29
+LAV Splitter
+- Fixed Stream Detection on some Blu-rays with short Logo clips before the main movie
+- Fixed a crash when processing invalid/broken PGS subtitles
+
+LAV Video
+- Fixed a crash on dynamic format changes (stream change, Blu-ray clip change)
+
0.50 - 2012/03/27
LAV Splitter
- Improved support for H264 Elementary Streams
diff --git a/LAVFilters.iss b/LAVFilters.iss
index b90169b6..cb4e5d8a 100644
--- a/LAVFilters.iss
+++ b/LAVFilters.iss
@@ -10,12 +10,12 @@ AllowNoIcons = yes
AllowUNCPath = no
AppId = lavfilters
AppName = LAV Filters
-AppVerName = LAV Filters {#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}
-AppVersion = {#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}
-VersionInfoVersion = {#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}.0.0
+AppVerName = LAV Filters {#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}.{#=LAV_VERSION_REVISION}
+AppVersion = {#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}.{#=LAV_VERSION_REVISION}
+VersionInfoVersion = {#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}.{#=LAV_VERSION_REVISION}.0
VersionInfoCompany = 1f0.de
VersionInfoCopyright = GPLv2
-OutputBaseFilename = LAVFilters-{#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}
+OutputBaseFilename = LAVFilters-{#=LAV_VERSION_MAJOR}.{#=LAV_VERSION_MINOR}.{#=LAV_VERSION_REVISION}
OutputDir = .
Compression = lzma/ultra
SolidCompression = yes
diff --git a/common/includes/version.h b/common/includes/version.h
index b5898b8f..90339569 100644
--- a/common/includes/version.h
+++ b/common/includes/version.h
@@ -1,7 +1,8 @@
#pragma once
-#define LAV_VERSION_MAJOR 0
-#define LAV_VERSION_MINOR 50
+#define LAV_VERSION_MAJOR 0
+#define LAV_VERSION_MINOR 50
+#define LAV_VERSION_REVISION 1
#define LAV_AUDIO "LAV Audio Decoder"
#define LAV_VIDEO "LAV Video Decoder"
@@ -13,8 +14,8 @@
#define DO_MAKE_STR(x) #x
#define MAKE_STR(x) DO_MAKE_STR(x)
-#define LAV_VERSION LAV_VERSION_MAJOR.LAV_VERSION_MINOR
-#define LAV_VERSION_TAG LAV_VERSION_MAJOR, LAV_VERSION_MINOR
+#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_STR MAKE_STR(LAV_VERSION)