|
请教一下,有没办法使用MPC的Deinterlace (blend).HLSL反交错,或者有无同效果且能用的GLSL,在开发者问题里我也看了,之前好像增加了个类似的,但是用不起,说明里命令都划掉了。主要是这个简单的反交错对有些有拉丝的视频效果很好,而其他的ffmpeg的完全不行。
// deinterlace (blend)=ps_2_0
// Code from MPC
sampler s0 : register(s0);
float4 p0 : register(c0);
#define width (p0[0])
#define height (p0[1])
float4 main(float2 tex : TEXCOORD0) : COLOR
{
float4 c0 = tex2D(s0, tex);
float2 h = float2(0, 1/height);
float4 c1 = tex2D(s0, tex-h);
float4 c2 = tex2D(s0, tex+h);
c0 = (c0*2+c1+c2)/4;
return c0;
} |
|