Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror

Comment Re:Copy protection? (Score 1) 101

That will still be a problem, as any properly HDCP-compliant capture card will not (or should not!) give you access to the data either. Every device should check the downstream devices are compliant before passing any data on, and not provide any way to intercept it. Any that knowingly do are breaking the HDCP licensing agreement and are likely to be sued.

Comment Copy protection? (Score 2) 101

You'll probably run into copy-protection issues with many media sources. If you can get at the bits to analyze it, you can dump them out to create a copy. I'm not even sure sharpness is going to be easy to measure, if a soft/low-res source has been artificially sharpened to give the appearance of quality. Sports broadcasts seem to be the worst for it for it from my experience, with glowing halos around high-contrast edges to make them stand out even more.

Comment Re:Pointer typedefs (Score 1) 394

I've never come across that mix of separate attributes with defined types. Typically there will be a PCFOO to go with the PFOO, which has the const as part of the typedef: such as LPSTR and LPCSTR.

Typedefs allow you to keep the whole type atomic. I prefer:

PCSTR p1, p2;

to

const char *p1, *p2;

where the pointer symbol needs to be repeated on the second variable, despite 'const char' being common to both.

Games

Submission + - Wipeout recreated with an RC car (geek.com)

An anonymous reader writes: If you’ve owned any of Sony’s PlayStation consoles then there’s a good chance you’ve also played one of the Wipeout, games. It’s a high-speed racing game that helped make the PSOne popular, and it’s now been recreated using a remote control car.

The project is the idea of Malte Jehmlich. He decided to create a track out of cardboard reminiscent of the Wipeout tracks. He then hooked up a wireless camera
to a remote control car, and modified the controller to be an arcade cabinet with a wheel and forward/reverse selector.

Comment Re:Certificate revoked (Score 1) 217

No, they require a Microsoft Windows Hardware Compatibility signing certificate for loading on 64-bit systems

It doesn't need to involve Microsoft directly, just be signed using an appropriate certificate and cross-certificate for kernel-mode drivers under Windows.

You only need WHQL if you want to avoid PnP installer warnings. I sign and silently install my own filter driver without any Windows prompts, and without needing the package to be blessed by Microsoft directly.

Comment Re:Certificate revoked (Score 5, Informative) 217

Windows' security model only checks the certificate during install.

64-bit versions of Vista and Windows 7 require a valid Class 3 code signing certificate to load the driver, not just on installation. Revoking that certificate will stop the devices from working, as the parent poster suspected. Though it may not be the same certificate for all Realtek uses.

Slashdot Top Deals

A fanatic is a person who can't change his mind and won't change the subject. - Winston Churchill

Working...