Hi,<div>I'm experimenting with decode parallelization on one VA context. What I'm trying to do is overlapping below sequences on two threads:</div><div><br></div><div>Thread 1:</div><div>Decode()</div><div>{</div><div>


    vaBeginPicture()</div><div>    vaRenderPicture() a few times </div><div>    vaEndPicture()</div><div>    NotifyThread2ToRun();</div><div>}</div><div><br></div><div>Thread 2 (gets fired after Decode() finishes on thread 1):</div>


<div>Render()</div><div>{</div><div>    vaSyncSurface()</div><div>    vaPutSurface() // (to an XPixmap)</div><div>}</div><div><br></div><div>The overlap happens in a way that it is possible for Decode() for frame n on thread 1 to begin while Render() is still running for frame n-1. Thus, it's possible for a surface that is being vaPutSurface() from to be used as reference in Decode() on the other thread, but it's not possible for two Decode() calls or two Render() calls to run concurrently.</div>


<div><br></div><div>Should this work? Has anyone got a similar setup to run successfully? </div><div><br></div><div>Thanks,</div><div>Pawel</div>