Reload/Render in PremierePro using After Effects SDk
I'm using the After Effects SDK to develop a plugin for both After Effects and PremierePro.
The AfterEffects part is done. Thanks to expert @shachar carmi sir.
As suggested by him, I was able to get the re-render called for AfterEffects by changing an invisible param value in IdleHook.
Now I'm facing the same issue in PremierePro. I'm receiving frame data in a separate thread and want the render to be called. However when I play or scrub through the timeline, Render is called and frames start to appear. But I want the preview frame to be reloaded as well, but it doesn't until I scrub through the timeline.
Is there a way or anything that can trigger render from a separate thread, just like changing param Val in AE.
Note: I'm setting
out_data->out_flags |= PF_OutFlag_USE_OUTPUT_EXTENT | PF_OutFlag_NON_PARAM_VARY; in GlobalSetup
