View Full Version : ConvertToYV12 crashes MPC-HC


Atak_Snajpera
3rd November 2019, 15:55
Avisynth+ r2772 x86_64

Script
video=BlankClip(length=25,width=640,height=480,pixel_type="YV12",fps=25,color=$aaaaaa)
Target_Width=Int(video.height*1.78)
Target_Height=video.height

Border=(Target_Width-video.width)/2

video=ConvertToYV24(video).AddBorders(Border,0,Border,0).ConvertToYV12 # <- works fine with ConvertToYV16 or ConvertToY8
return video

https://i.postimg.cc/Dy6ZXDjh/ure.png

Problem is with my MPC-HC or there is some bug in AviSynth+?

stax76
3rd November 2019, 16:11
No problem here, there is no lvcod64.dll (found by Everything) on my system.

poisondeathray
3rd November 2019, 16:12
works ok for me too mpchc, avspmod

But I'm using avs+ r2915 x64

clsid
3rd November 2019, 16:41
lvcod64.dll is a buggy codec from Logitech that replaced one of the standard codecs from Windows.

To fix it, run regedit32.exe, and in the registry go to this key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32
And change value "vidc.i420" to "iyuv_32.dll"

Atak_Snajpera
3rd November 2019, 17:32
lvcod64.dll is a buggy codec from Logitech that replaced one of the standard codecs from Windows.

To fix it, run regedit32.exe, and in the registry go to this key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32
And change value "vidc.i420" to "iyuv_32.dll"

Thank you! Works fine now.

Emulgator
12th November 2019, 00:31
Whow, clsid, respect !