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

Set the mask in AE and use AEGP_GetLayerNumMasks to query the number of masks. The return value is 0

New Here ,
Feb 16, 2025 Feb 16, 2025

Hello All

I have a question when using c++ to develop AE export plug-in,Set the mask in AE and use AEGP_GetLayerNumMasks to query the number of masks,The return value is 0,The specific code is as follows:

AE Version: 2025

System version: M3 Pro,macOS 15.3
  A_long numMasks = 0;
  RECORD_ERROR(suites.MaskSuite6()->AEGP_GetLayerNumMasks(layerHandle, &numMasks));
  for (int i = 0; i < numMasks; i++) {
    AEGP_MaskRefH maskHandle;
    RECORD_ERROR(suites.MaskSuite6()->AEGP_GetLayerMaskByIndex(layerHandle, i, &maskHandle));
    auto mask = ExportMask(context, maskHandle);
    masks.push_back(mask);
    RECORD_ERROR(suites.MaskSuite6()->AEGP_DisposeMask(maskHandle));
  }

Has anyone encountered similar problems?

TOPICS
Error or problem , FAQ , How to , SDK
304
Translate
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

correct answers 1 Correct answer

Community Expert , Feb 17, 2025 Feb 17, 2025

hold on... a track ammte and a mask are two different things...

1. track matte - one layer operating with the alpha/luma of the layer above it.

2. mask - a vector shape drawn on a layer with the pen tool.

if your situation is the same as #1, then the mask suite is the wrong way to go as there are no masks on that layer, and then getting 0 as the num_masks actually makes sense...

Translate
Community Expert ,
Feb 16, 2025 Feb 16, 2025

the code looks ok. is the layer handle valid? does AEGP_GetLayerMaskByIndex return some error?

Translate
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
New Here ,
Feb 17, 2025 Feb 17, 2025

hi,The layer can be exported normally, indicating that the layhandle is valid.

Because the return value of AEGP_GetLayerNumMasks is 0, the code will not be executed to the line where AEGP_GetLayerMaskByIndex is located.
If I do not check the number of masks and directly call AEGP_GetLayerMaskByIndex to get the mask with index 0, AE will report the following error
ae_error.pngexpand image
The above error message indicates that the current layer does not have an exportable mask.
But the mask has indeed been set in AEtThe following is the corresponding project file
 Please help answer this question, thanks!
Translate
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
Community Expert ,
Feb 17, 2025 Feb 17, 2025

i don't know what the RECORD_ERROR macro is, but it it's similar to ERR then it won't execute the enclosed command if the value of err is not 0. so, what is the value of err before hitting AEGP_GetLayerNumMasks? what's the value of err after?

Translate
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
New Here ,
Feb 17, 2025 Feb 17, 2025

hi,After executing the following code, the values ​​of err1 and err2 are 0 and 3 respectively.

  A_Err err1 = suites.MaskSuite6()->AEGP_GetLayerNumMasks(layerHandle, &numMasks);
  AEGP_MaskRefH maskHandle2;
  A_Err err2 = suites.MaskSuite6()->AEGP_GetLayerMaskByIndex(layerHandle, 0, &maskHandle2);

// err1:0,err2:3
Translate
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
Community Expert ,
Feb 17, 2025 Feb 17, 2025

intersting...

are you absolutely sure your're cheking the correct layer? can you check that on a project with just one layer?

Translate
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
New Here ,
Feb 17, 2025 Feb 17, 2025

Hi,track masking requires two layers (the mask layer and the masked layer).Cannot set mask if there is only one layer

Translate
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
New Here ,
Feb 17, 2025 Feb 17, 2025

Also, I can confirm that the layers I checked are correct. Because there are only two layers in total, calling AEGP_GetLayerNumMasks and AEGP_GetLayerMaskByIndex on these two layers will return the same value--err1:0,err2:3

 Is there a better debugging method for this problem?

Translate
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
Community Expert ,
Feb 17, 2025 Feb 17, 2025

hold on... a track ammte and a mask are two different things...

1. track matte - one layer operating with the alpha/luma of the layer above it.

2. mask - a vector shape drawn on a layer with the pen tool.

if your situation is the same as #1, then the mask suite is the wrong way to go as there are no masks on that layer, and then getting 0 as the num_masks actually makes sense...

Translate
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
New Here ,
Feb 17, 2025 Feb 17, 2025
LATEST

Yes,My situation is the same as #1.

elegant_videographer1766_1-1739797160157.pngexpand image

Which API should be used to export the track mask? Is there any sample code that I can refer to?

Translate
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