Lines Matching refs:object

832                 jobject                             object,
855 (NULL == object),
870 pSettings->pAlphaFilePath = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
882 pSettings->blendingPercent = (M4OSA_UInt8)pEnv->GetIntField(object,
886 pSettings->isreverse = (M4OSA_Bool)pEnv->GetBooleanField(object,
890 pSettings->width = (M4OSA_UInt32) pEnv->GetIntField(object, fieldIds.rgbWidth );
892 pSettings->height = (M4OSA_UInt32) pEnv->GetIntField(object, fieldIds.rgbHeight );
898 "------- getAlphaMagicSettings width %d", pEnv->GetIntField(object,
902 pEnv->GetIntField(object, fieldIds.rgbHeight ));
973 jobject object,
994 // Check if the object is valid.
995 if (NULL != object)
1005 pSettings->pFile = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
1019 &converted, pEnv->GetIntField(object, fieldIds.fileType));*/
1030 pSettings->uiAddCts = (M4OSA_UInt32)pEnv->GetLongField(object,
1034 pSettings->uiAddVolume = (M4OSA_UInt32)pEnv->GetIntField(object,
1038 pSettings->uiBeginLoop = (M4OSA_UInt32)pEnv->GetLongField(object,
1042 pSettings->uiEndLoop = (M4OSA_UInt32)pEnv->GetLongField(object,
1046 (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.enableDucking);
1050 (M4OSA_Int32)pEnv->GetIntField(object, fieldIds.duckingThreshold);
1054 (M4OSA_Float)(((M4OSA_Float)pEnv->GetIntField(object, fieldIds.lowVolume)));
1057 pSettings->bLoop = (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.isLooping);
1251 jobject object,
1276 (NULL == object),
1310 pSettings->pFile = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
1323 &converted, pEnv->GetIntField(object, fieldIds.fileType));
1340 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.beginCutTime);
1343 pSettings->uiEndCutTime = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.endCutTime);
1347 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.beginCutPercent);
1351 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.endCutPercent);
1359 (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.panZoomEnabled);
1363 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomPercentStart);
1367 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftXStart);
1371 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftYStart);
1375 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomPercentEnd);
1379 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftXEnd);
1383 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftYEnd);
1389 &converted, pEnv->GetIntField(object,fieldIds.mediaRendering));
1397 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.rgbFileWidth);
1399 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.rgbFileHeight);
1410 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.rotationDegree);
1436 jobject object = NULL;
1453 // Only create an object if the class and fields could be located.
1456 // Allocate a new object.
1457 object = pEnv->AllocObject(clazz);
1458 if (NULL != object)
1461 pEnv->SetObjectField(object, fieldIds.clipPath, NULL);
1464 pEnv->SetIntField(object, fieldIds.fileType, videoEditJava_getClipTypeCToJava(
1468 pEnv->SetIntField(object, fieldIds.beginCutTime, pSettings->uiBeginCutTime);
1471 pEnv->SetIntField(object, fieldIds.endCutTime, pSettings->uiEndCutTime);
1474 pEnv->SetIntField(object, fieldIds.beginCutPercent, pSettings->xVSS.uiBeginCutPercent);
1477 pEnv->SetIntField(object, fieldIds.endCutPercent, pSettings->xVSS.uiEndCutPercent);
1480 pEnv->SetBooleanField(object, fieldIds.panZoomEnabled, pSettings->xVSS.isPanZoom);
1483 pEnv->SetIntField(object, fieldIds.panZoomPercentStart,
1487 pEnv->SetIntField(object, fieldIds.panZoomTopLeftXStart,
1491 pEnv->SetIntField(object, fieldIds.panZoomTopLeftYStart,
1495 pEnv->SetIntField(object, fieldIds.panZoomPercentEnd,
1499 pEnv->SetIntField(object, fieldIds.panZoomTopLeftXEnd,
1503 pEnv->SetIntField(object, fieldIds.panZoomTopLeftYEnd,
1507 pEnv->SetIntField(object, fieldIds.mediaRendering,
1511 pEnv->SetIntField(object, fieldIds.rgbFileWidth,
1514 pEnv->SetIntField(object, fieldIds.rgbFileHeight,
1523 pEnv->SetIntField(object, fieldIds.rotationDegree,
1526 // Return the object.
1527 (*pObject) = object;
1540 jobject object = NULL;
1556 // Only create an object if the class and fields could be located.
1559 // Allocate a new object.
1560 object = pEnv->AllocObject(clazz);
1561 if (NULL != object)
1564 pEnv->SetIntField(object, fieldIds.duration, pProperties->uiClipDuration);
1567 pEnv->SetIntField(object, fieldIds.fileType,
1571 pEnv->SetIntField(object, fieldIds.videoFormat,
1575 pEnv->SetIntField(object, fieldIds.videoDuration, pProperties->uiClipVideoDuration);
1578 pEnv->SetIntField(object, fieldIds.videoBitrate, pProperties->uiVideoBitrate);
1581 pEnv->SetIntField(object, fieldIds.width, pProperties->uiVideoWidth);
1584 pEnv->SetIntField(object, fieldIds.height, pProperties->uiVideoHeight);
1587 pEnv->SetFloatField(object, fieldIds.averageFrameRate, pProperties->fAverageFrameRate);
1590 pEnv->SetIntField(object, fieldIds.profile,
1594 pEnv->SetIntField(object, fieldIds.level,
1598 pEnv->SetBooleanField(object, fieldIds.profileSupported,
1602 pEnv->SetBooleanField(object, fieldIds.levelSupported,
1606 pEnv->SetIntField(object, fieldIds.audioFormat,
1610 pEnv->SetIntField(object, fieldIds.audioDuration, pProperties->uiClipAudioDuration);
1613 pEnv->SetIntField(object, fieldIds.audioBitrate, pProperties->uiAudioBitrate);
1616 pEnv->SetIntField(object, fieldIds.audioChannels, pProperties->uiNbChannels);
1619 pEnv->SetIntField(object, fieldIds.audioSamplingFrequency,
1623 pEnv->SetIntField(object, fieldIds.videoRotation, pProperties->uiRotation);
1625 // Return the object.
1626 (*pObject) = object;
1731 jobject object,
1764 // Check if the object is valid.
1765 if (NULL != object)
1768 videoEditJava_getArray(pResult, pEnv, object,
1774 videoEditJava_getArray(pResult, pEnv, object,
1780 videoEditJava_getArray(pResult, pEnv, object,
1786 videoEditJava_getObject(pResult, pEnv, object, fieldIds.backgroundMusicSettings,
1789 // Check if the arrays and background music settings object could be retrieved.
1793 audioChannels = pEnv->GetIntField(object, fieldIds.audioChannels);
1824 // Check if the object is valid.
1825 if (NULL != object)
1850 // Get the clip settings object.
1876 // Get the transition settings object.
1903 // Get the effect settings object.
1925 &converted, pEnv->GetIntField(object, fieldIds.videoFrameRate));
1937 object, fieldIds.outputFile, &pSettings->uiOutputPathSize);
1950 &converted, pEnv->GetIntField(object, fieldIds.videoFrameSize));
1963 &converted, pEnv->GetIntField(object, fieldIds.videoFormat));
1976 &converted, pEnv->GetIntField(object, fieldIds.audioFormat));
1991 &converted, pEnv->GetIntField(object, fieldIds.audioSamplingFreq));
2015 pSettings->xVSS.outputFileSize = (M4OSA_UInt32)pEnv->GetIntField(object,
2022 pSettings->xVSS.outputVideoBitrate = (M4OSA_UInt32)pEnv->GetIntField(object,
2026 pSettings->xVSS.outputVideoProfile = (M4OSA_UInt32)pEnv->GetIntField(object,
2030 pSettings->xVSS.outputVideoLevel = (M4OSA_UInt32)pEnv->GetIntField(object,
2034 pSettings->xVSS.outputAudioBitrate = (M4OSA_UInt32)pEnv->GetIntField(object,
2044 (M4OSA_Float)pEnv->GetIntField(object, fieldIds.primaryTrackVolume);
2274 jobject object,
2298 (NULL == object),
2306 pSettings->uiStartTime = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.startTime);
2309 pSettings->uiDuration = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.duration);
2314 &converted, pEnv->GetIntField(object, fieldIds.videoEffectType));
2333 &converted, pEnv->GetIntField(object, fieldIds.audioEffectType));
2344 pSettings->xVSS.uiStartPercent = (M4OSA_UInt32)pEnv->GetIntField(object,
2348 pSettings->xVSS.uiDurationPercent = (M4OSA_UInt32)pEnv->GetIntField(object,
2353 object, fieldIds.framingFile, M4OSA_NULL);
2372 pSettings->xVSS.topleft_x = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.topLeftX);
2376 pSettings->xVSS.topleft_y = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.topLeftY);
2380 (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.framingResize);
2384 (M4VIDEOEDITING_VideoFrameSize)pEnv->GetIntField(object, fieldIds.framingScaledSize);
2387 pSettings->xVSS.pTextBuffer = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
2396 object, fieldIds.textRenderingData, M4OSA_NULL);
2403 pSettings->xVSS.uiTextBufferWidth = (M4OSA_UInt32)pEnv->GetIntField(object,
2407 pSettings->xVSS.uiTextBufferHeight = (M4OSA_UInt32)pEnv->GetIntField(object,
2411 pSettings->xVSS.uiFiftiesOutFrameRate = (M4OSA_UInt32)pEnv->GetIntField(object,
2415 pSettings->xVSS.uiRgb16InputColor = (M4OSA_UInt16)pEnv->GetIntField(object,
2419 pSettings->xVSS.uialphaBlendingStart = (M4OSA_UInt8)pEnv->GetIntField(object,
2423 pSettings->xVSS.uialphaBlendingMiddle = (M4OSA_UInt8)pEnv->GetIntField(object,
2427 pSettings->xVSS.uialphaBlendingEnd = (M4OSA_UInt8)pEnv->GetIntField(object,
2431 pSettings->xVSS.uialphaBlendingFadeInTime = (M4OSA_UInt8)pEnv->GetIntField(object,
2435 pSettings->xVSS.uialphaBlendingFadeOutTime = (M4OSA_UInt8)pEnv->GetIntField(object,
2448 pSettings->xVSS.pFramingBuffer->u_width = pEnv->GetIntField(object,
2451 pSettings->xVSS.pFramingBuffer->u_height = pEnv->GetIntField(object,
2601 jobject object,
2625 (NULL == object),
2642 &converted, pEnv->GetIntField(object, fieldIds.direction));
2706 jobject object,
2733 (NULL == object),
2741 videoEditJava_getObject(pResult, pEnv, object, fieldIds.alphaSettings, &alphaSettings);
2744 videoEditJava_getObject(pResult, pEnv, object, fieldIds.slideSettings, &slideSettings);
2758 pSettings->uiTransitionDuration = (M4OSA_UInt32)pEnv->GetIntField(object,
2764 &converted, pEnv->GetIntField(object, fieldIds.videoTransitionType));
2783 &converted, pEnv->GetIntField(object, fieldIds.audioTransitionType));
2796 &converted, pEnv->GetIntField(object, fieldIds.transitionBehaviour));
2806 // Check if a slide transition or alpha magic setting object is expected.
2999 jobject object = NULL;
3015 // Only create an object if the class and fields could be located.
3018 // Allocate a new object.
3019 object = pEnv->AllocObject(clazz);
3023 (NULL == object),
3025 if (NULL != object)
3028 pEnv->SetIntField(object, fieldIds.major, pVersionInfo->m_major);
3031 pEnv->SetIntField(object, fieldIds.minor, pVersionInfo->m_minor);
3034 pEnv->SetIntField(object, fieldIds.revision, pVersionInfo->m_revision);
3036 // Return the object.
3037 (*pObject) = object;
3074 jobject object)
3098 pContext = (void *)pEnv->GetIntField(object, fieldIds.context);
3109 jobject object,
3135 pEnv->GetIntField(object, fieldIds.context));
3137 pEnv->SetIntField(object, fieldIds.context, (int)pContext);
3142 pEnv->GetIntField(object, fieldIds.context));