婆罗门
精华
|
战斗力 鹅
|
回帖 0
注册时间 2003-6-6
|
发表于 2020-8-5 09:07
来自手机
|
显示全部楼层
本帖最后由 zmw_831110 于 2020-8-5 09:10 编辑
是的,对补DVD rip老片效果极佳。我是根据源视频不同分辨率调用不同的上采样算法,充分压榨显卡,初始分辨率低的,可以开高一点
另,配合等离子,效果更佳,之前补魔法战士李维就这样看的,很不错
- if (srcWidth < 1280) and (srcHeight < 720) and (deintFps < 31)
- "SD"
- else if (srcWidth < 1280) and (srcHeight < 720)
- "SD_60FPS"
- else if ((srcWidth = 1280) or (srcHeight = 720)) and (deintFps < 31)
- "720P"
- else if (srcWidth = 1280) or (srcHeight = 720)
- "720P_60FPS"
- else if ((srcWidth <= 1920) or (srcHeight <= 1080)) and (deintFps < 31)
- "FHD"
- else if ((srcWidth <= 1920) or (srcHeight <= 1080))
- "FHD_60FPS"
- else if (deintFps < 31)
- "QHD"
- else
- "QHD_60FPS"
复制代码
所有档位都分"低于31FPS"和"高于31FPS"两种
"SD":横向没有1280或者纵向没有720,涵盖了所有非标清的分辨率
"720P":横向=1280或者纵向=720的,涵盖所有市面上标720P的视频(电影一般是横向1280叫720P,4:3动画横向720叫720P)
"FHD"
"QHD"
—— 来自 HMD Global Nokia 7 plus, Android 9上的 S1Next-鹅版 v2.2.2.1 |
|