Skip to main content
Known Participant
February 22, 2024
Question

Question about transmitter plugin[2]

  • February 22, 2024
  • 1 reply
  • 357 views


[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.

This topic has been closed for replies.

1 reply

Bruce Bullis
Community Manager
Community Manager
February 22, 2024

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?

Known Participant
February 23, 2024

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).

 

Bruce Bullis
Community Manager
Community Manager
February 23, 2024

I'll have a look!