Copy link to clipboard
Copied
[Adobe answer]
To get sent Shutdown, the transmitter must have allocated memory during Startup.
[Related question]
What do you mean by Memory?
Do you mean ioPrivatePluginData in tmStdParams?
ioPrivatePluginData is the same as provided in the original sample. New TransmitPlugin class and put it in ioPrivatePluginData.
[source code]
static tmResult Startup(
tmStdParms* ioStdParms,
tmPluginInfo* outPluginInfo)
{
ioStdParms->ioPrivatePluginData = (void*)new TransmitPlugin(ioStdParms, outPluginInfo);
return tmResult_Success;
}
Please tell me what I should do.
Copy link to clipboard
Copied
> Please tell me what I should do.
It would seem that you're saying that your transmitter is allocating memory during Startup, and yet is not receiving Shutdown. Is that correct?
Copy link to clipboard
Copied
Yes, Correct
In the Transmitter example, the Startup function allocates memory. However, the shutdow function is not called when the premiere ends.
The Premiere version I am testing is version 23.0.0 (build 63).
Copy link to clipboard
Copied
I'll have a look!
Copy link to clipboard
Copied
Can I know the results of the inspection?