Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Question about transmitter plugin[2]

Explorer ,
Feb 22, 2024 Feb 22, 2024

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.

TOPICS
SDK

Views

251
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Feb 22, 2024 Feb 22, 2024

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?

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 22, 2024 Feb 22, 2024

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

 

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Feb 23, 2024 Feb 23, 2024

Copy link to clipboard

Copied

I'll have a look! 


Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Feb 28, 2024 Feb 28, 2024

Copy link to clipboard

Copied

LATEST

Can I know the results of the inspection?

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines