This content has been marked as final.
Show 2 replies
-
1. Re: Layer Param Checkout -- interrupts
shachar carmi Nov 21, 2008 12:19 PM (in response to david van brink)hmmm.....
that's weird.
perhaps I'm asking the obvious, but did you set the PF_OutFlag_WIDE_TIME_INPUT flag?
if that's not the case then i can only think of one other thing that resembles this problem.
when i used the iterate function, i stored intermediate results with the input pixel. i figured that every iteration I'm handed a new value anyway, so what the heck. right?
wrong.
the result was a subtle rendering error at occasional pixels, that would change randomly even if i refresh the same frame.
is it possible that you're writing into a read only cache, or making AE hand you checked out frames into an already occupied cache?
could it be that you're not releasing the checked frame before checking a new one?
I hope this helps.
if not, perhaps post the parts of the code that you think may cause the problem. -
2. Re: Layer Param Checkout -- interrupts
david van brink Nov 22, 2008 2:12 PM (in response to david van brink):)
PF_OutFlag_WIDE_TIME_INPUT was it.
And it's sitting right there in my notes from another plugin, too, "Be sure to set PF_OutFlag_WIDE_TIME_INPUT when doing layer checkouts!" heh.
Thanks Shachar.

