Topic: SVPFlow Source Code?

From what I know, SVPFlow1 is open-source under GPL license while SVPFlow2 is closed-source. Where can I find the source code of SVPFlow1? I can't find it anywhere.

Re: SVPFlow Source Code?

https://www.svp-team.com/files/gpl/svpflow1-src.zip

Re: SVPFlow Source Code?

Thank you

Re: SVPFlow Source Code?

Hi Chainik,

in search.cpp line 247

for ( int j = start; j < y_max; j+=2 )
{
    CheckMV(mvx, mvy + j);
    CheckMV(mvx, mvy + j);
}

should it be look like?

for ( int j = start; j < y_max; j+=2 )
{
    CheckMV(mvx, mvy - j);
    CheckMV(mvx, mvy + j);
}

is this fixed after 4.0.0.128?
thx

Re: SVPFlow Source Code?

> is this fixed after 4.0.0.128?

nope

in fact this one is from the original MVTools... but I doubt it really breaks anything

Re: SVPFlow Source Code?

Hope it can be fixed in future version, i feel UMH search is slightly smoother. big_smile