Nvidia drivers + DXVA error

There is program that can play several videos simultaneously. It uses DirectShow (to extract frames) + DXVA (to process frames: brightness, contrast, hue etc.) + Direct3D 9 (to visualize frames).
So, we are processing video frames with DXVA. And there is a problem with RGB-sources (videos, images).

  1. When we are playing single RGB-video, it’s all ok, no problems.
  2. When we are playing RGB source + at list one more source (it doesn’t matter what exactly, it can be yuy2 or nv12) we have next problem:
  • We receive frame as usual
  • Call IDirectXVideoProcessor::VideoProcessBlt
  • It returns S_OK, but writes somewhere inside it to debug/log:

“NVD3DREL:
Failed to run Algo 0 of Stream 0.”

As far as we understood, it’s nvidia driver error.
On 280.26 drivers version there was no such problem.

And this bug appeared and stably reproduced on next drivers versions:
285.62
295.73
301.42
306.97
310.70

We tested it on videocards:
8600GT
9500GT
GT430
GT640

On Radeon videocards there is no such problem.

So, what does this error mean and how to avoid id?