views:

165

answers:

1

I am playing video using custom allocator using directshow. I want to set brightness, contrast and saturation of a video. How can I do this?

+1  A: 

There are two ways you can accomplish that:

  1. Write/Find a Effect DMO that will handle brightness and contrast on you payload.
  2. Get the IVMRMixerControl9 from the renderer and call GetProcAmpControl.

More information in this MSDN thread.

Shay Erlichmen