Nintendo Maniac 64
It is a mistake in the script generate.js:
//downsize
if( mediaInfo.main.reswidth>mediaInfo.main.cbhwidth ||
mediaInfo.main.resheight>mediaInfo.main.cbhheight)
resizeString="BicubicResize("+mediaInfo.main.reswidth+", "+mediaInfo.main.resheight+", b=0, c=0.75)";
else //upsize
resizeString="LanczosResize("+mediaInfo.main.reswidth+","+mediaInfo.main.resheight+")";I mean downsize and upsize algorythms are confused.
In the past for upsize used Lanczos and for downsize - Bicubic(0,0.75). It can be reviewed and changed.
These algos was selected as optimal (speed/quality) for CPU's in 2010 year.
See picture in Russian. ![]()
Your suggestions?