Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
CrendKing committed Oct 18, 2020
1 parent 68e46bb commit 554fc25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions avisynth_filter/src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#include "pch.h"

#include "constants.h"
#include "environment.h"
#include "filter.h"
#include "format.h"
#include "environment.h"
#include "prop_settings.h"
#include "prop_status.h"

Expand Down Expand Up @@ -53,12 +53,12 @@ static auto RegisterFilter() -> HRESULT {
{ 0 // no flag for input pin
, 1 // number of instance
, static_cast<UINT>(pinTypes.size()) // number of media types
, pinTypes.data() } // media types
,
, pinTypes.data() }, // media types

{ REG_PINFLAG_B_OUTPUT // output pin
, 1 // number of instance
, static_cast<UINT>(pinTypes.size()) // number of media types
, pinTypes.data() } // media types
, pinTypes.data() }, // media types
};

REGFILTER2 regFilter = {
Expand Down
2 changes: 1 addition & 1 deletion avisynth_filter/src/registry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ auto Registry::ReadString(const wchar_t *valueName) const -> std::wstring {

const LSTATUS registryStatus = RegGetValue(_registryKey, nullptr, valueName, RRF_RT_REG_SZ, nullptr, buffer, &bufferSize);
if (registryStatus == ERROR_SUCCESS) {
ret = std::wstring(buffer, bufferSize / 2).c_str();
ret.assign(buffer, bufferSize / sizeof(wchar_t) - 1);
}
}

Expand Down
2 changes: 1 addition & 1 deletion avisynth_filter/src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace AvsFilter {
#define FILTER_NAME_BASE "AviSynth Filter"
#define FILTER_VERSION_MAJOR 0
#define FILTER_VERSION_MINOR 7
#define FILTER_VERSION_PATCH 2
#define FILTER_VERSION_PATCH 3
#define FILTER_VERSION_STRING STR(FILTER_VERSION_MAJOR) "." STR(FILTER_VERSION_MINOR) "." STR(FILTER_VERSION_PATCH)

}

0 comments on commit 554fc25

Please sign in to comment.