Skip to content

Commit

Permalink
Add FlowInter
Browse files Browse the repository at this point in the history
  • Loading branch information
cantabile committed Oct 3, 2014
1 parent 338d157 commit 3aa4b76
Show file tree
Hide file tree
Showing 6 changed files with 772 additions and 4 deletions.
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ libmvtools_la_SOURCES = src/asm-placeholder.cpp \
src/MVFilter.cpp \
src/MVFinest.cpp \
src/MVFlowBlur.cpp \
src/MVFlowInter.cpp \
src/MVFrame.cpp \
src/MVMask.cpp \
src/MVRecalculate.cpp \
Expand Down
2 changes: 2 additions & 0 deletions readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ Usage

mv.FlowBlur(clip clip, clip super, clip mvbw, clip mvfw[, float blur=50.0, int prec=1, int thscd1=400, int thscd2=130, bint isse=True])

mv.FlowInter(clip clip, clip super, clip mvbw, clip mvfw[, float time=50.0, float ml=100.0, bint blend=True, int thscd1=400, int thscd2=130, bint isse=True])


If *fields* is True, it is assumed that the clip named *clip* first went through std.SeparateFields.

Expand Down
2 changes: 2 additions & 0 deletions src/EntryPoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ void mvrecalculateRegister(VSRegisterFunction registerFunc, VSPlugin *plugin);
void mvmaskRegister(VSRegisterFunction registerFunc, VSPlugin *plugin);
void mvfinestRegister(VSRegisterFunction registerFunc, VSPlugin *plugin);
void mvflowblurRegister(VSRegisterFunction registerFunc, VSPlugin *plugin);
void mvflowinterRegister(VSRegisterFunction registerFunc, VSPlugin *plugin);


VS_EXTERNAL_API(void) VapourSynthPluginInit(VSConfigPlugin configFunc, VSRegisterFunction registerFunc, VSPlugin *plugin) {
Expand All @@ -29,4 +30,5 @@ VS_EXTERNAL_API(void) VapourSynthPluginInit(VSConfigPlugin configFunc, VSRegiste
mvmaskRegister(registerFunc, plugin);
mvfinestRegister(registerFunc, plugin);
mvflowblurRegister(registerFunc, plugin);
mvflowinterRegister(registerFunc, plugin);
}
Loading

0 comments on commit 3aa4b76

Please sign in to comment.