Lines Matching refs:object

833                 jobject                             object,
856 (NULL == object),
871 pSettings->pAlphaFilePath = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
883 pSettings->blendingPercent = (M4OSA_UInt8)pEnv->GetIntField(object,
887 pSettings->isreverse = (M4OSA_Bool)pEnv->GetBooleanField(object,
891 pSettings->width = (M4OSA_UInt32) pEnv->GetIntField(object, fieldIds.rgbWidth );
893 pSettings->height = (M4OSA_UInt32) pEnv->GetIntField(object, fieldIds.rgbHeight );
899 "------- getAlphaMagicSettings width %d", pEnv->GetIntField(object,
903 pEnv->GetIntField(object, fieldIds.rgbHeight ));
974 jobject object,
995 // Check if the object is valid.
996 if (NULL != object)
1006 pSettings->pFile = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
1020 &converted, pEnv->GetIntField(object, fieldIds.fileType));*/
1031 pSettings->uiAddCts = (M4OSA_UInt32)pEnv->GetLongField(object,
1035 pSettings->uiAddVolume = (M4OSA_UInt32)pEnv->GetIntField(object,
1039 pSettings->uiBeginLoop = (M4OSA_UInt32)pEnv->GetLongField(object,
1043 pSettings->uiEndLoop = (M4OSA_UInt32)pEnv->GetLongField(object,
1047 (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.enableDucking);
1051 (M4OSA_Int32)pEnv->GetIntField(object, fieldIds.duckingThreshold);
1055 (M4OSA_Float)(((M4OSA_Float)pEnv->GetIntField(object, fieldIds.lowVolume)));
1058 pSettings->bLoop = (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.isLooping);
1252 jobject object,
1277 (NULL == object),
1311 pSettings->pFile = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
1324 &converted, pEnv->GetIntField(object, fieldIds.fileType));
1341 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.beginCutTime);
1344 pSettings->uiEndCutTime = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.endCutTime);
1348 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.beginCutPercent);
1352 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.endCutPercent);
1360 (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.panZoomEnabled);
1364 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomPercentStart);
1368 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftXStart);
1372 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftYStart);
1376 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomPercentEnd);
1380 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftXEnd);
1384 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.panZoomTopLeftYEnd);
1390 &converted, pEnv->GetIntField(object,fieldIds.mediaRendering));
1398 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.rgbFileWidth);
1400 (M4OSA_UInt16)pEnv->GetIntField(object, fieldIds.rgbFileHeight);
1411 (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.rotationDegree);
1437 jobject object = NULL;
1454 // Only create an object if the class and fields could be located.
1457 // Allocate a new object.
1458 object = pEnv->AllocObject(clazz);
1459 if (NULL != object)
1462 pEnv->SetObjectField(object, fieldIds.clipPath, NULL);
1465 pEnv->SetIntField(object, fieldIds.fileType, videoEditJava_getClipTypeCToJava(
1469 pEnv->SetIntField(object, fieldIds.beginCutTime, pSettings->uiBeginCutTime);
1472 pEnv->SetIntField(object, fieldIds.endCutTime, pSettings->uiEndCutTime);
1475 pEnv->SetIntField(object, fieldIds.beginCutPercent, pSettings->xVSS.uiBeginCutPercent);
1478 pEnv->SetIntField(object, fieldIds.endCutPercent, pSettings->xVSS.uiEndCutPercent);
1481 pEnv->SetBooleanField(object, fieldIds.panZoomEnabled, pSettings->xVSS.isPanZoom);
1484 pEnv->SetIntField(object, fieldIds.panZoomPercentStart,
1488 pEnv->SetIntField(object, fieldIds.panZoomTopLeftXStart,
1492 pEnv->SetIntField(object, fieldIds.panZoomTopLeftYStart,
1496 pEnv->SetIntField(object, fieldIds.panZoomPercentEnd,
1500 pEnv->SetIntField(object, fieldIds.panZoomTopLeftXEnd,
1504 pEnv->SetIntField(object, fieldIds.panZoomTopLeftYEnd,
1508 pEnv->SetIntField(object, fieldIds.mediaRendering,
1512 pEnv->SetIntField(object, fieldIds.rgbFileWidth,
1515 pEnv->SetIntField(object, fieldIds.rgbFileHeight,
1524 pEnv->SetIntField(object, fieldIds.rotationDegree,
1527 // Return the object.
1528 (*pObject) = object;
1541 jobject object = NULL;
1557 // Only create an object if the class and fields could be located.
1560 // Allocate a new object.
1561 object = pEnv->AllocObject(clazz);
1562 if (NULL != object)
1565 pEnv->SetIntField(object, fieldIds.duration, pProperties->uiClipDuration);
1568 pEnv->SetIntField(object, fieldIds.fileType,
1572 pEnv->SetIntField(object, fieldIds.videoFormat,
1576 pEnv->SetIntField(object, fieldIds.videoDuration, pProperties->uiClipVideoDuration);
1579 pEnv->SetIntField(object, fieldIds.videoBitrate, pProperties->uiVideoBitrate);
1582 pEnv->SetIntField(object, fieldIds.width, pProperties->uiVideoWidth);
1585 pEnv->SetIntField(object, fieldIds.height, pProperties->uiVideoHeight);
1588 pEnv->SetFloatField(object, fieldIds.averageFrameRate, pProperties->fAverageFrameRate);
1591 pEnv->SetIntField(object, fieldIds.profile,
1595 pEnv->SetIntField(object, fieldIds.level,
1599 pEnv->SetBooleanField(object, fieldIds.profileSupported,
1603 pEnv->SetBooleanField(object, fieldIds.levelSupported,
1607 pEnv->SetIntField(object, fieldIds.audioFormat,
1611 pEnv->SetIntField(object, fieldIds.audioDuration, pProperties->uiClipAudioDuration);
1614 pEnv->SetIntField(object, fieldIds.audioBitrate, pProperties->uiAudioBitrate);
1617 pEnv->SetIntField(object, fieldIds.audioChannels, pProperties->uiNbChannels);
1620 pEnv->SetIntField(object, fieldIds.audioSamplingFrequency,
1624 pEnv->SetIntField(object, fieldIds.videoRotation, pProperties->uiRotation);
1626 // Return the object.
1627 (*pObject) = object;
1732 jobject object,
1765 // Check if the object is valid.
1766 if (NULL != object)
1769 videoEditJava_getArray(pResult, pEnv, object,
1775 videoEditJava_getArray(pResult, pEnv, object,
1781 videoEditJava_getArray(pResult, pEnv, object,
1787 videoEditJava_getObject(pResult, pEnv, object, fieldIds.backgroundMusicSettings,
1790 // Check if the arrays and background music settings object could be retrieved.
1794 audioChannels = pEnv->GetIntField(object, fieldIds.audioChannels);
1825 // Check if the object is valid.
1826 if (NULL != object)
1851 // Get the clip settings object.
1877 // Get the transition settings object.
1904 // Get the effect settings object.
1926 &converted, pEnv->GetIntField(object, fieldIds.videoFrameRate));
1938 object, fieldIds.outputFile, &pSettings->uiOutputPathSize);
1951 &converted, pEnv->GetIntField(object, fieldIds.videoFrameSize));
1964 &converted, pEnv->GetIntField(object, fieldIds.videoFormat));
1977 &converted, pEnv->GetIntField(object, fieldIds.audioFormat));
1992 &converted, pEnv->GetIntField(object, fieldIds.audioSamplingFreq));
2016 pSettings->xVSS.outputFileSize = (M4OSA_UInt32)pEnv->GetIntField(object,
2023 pSettings->xVSS.outputVideoBitrate = (M4OSA_UInt32)pEnv->GetIntField(object,
2027 pSettings->xVSS.outputVideoProfile = (M4OSA_UInt32)pEnv->GetIntField(object,
2031 pSettings->xVSS.outputVideoLevel = (M4OSA_UInt32)pEnv->GetIntField(object,
2035 pSettings->xVSS.outputAudioBitrate = (M4OSA_UInt32)pEnv->GetIntField(object,
2045 (M4OSA_Float)pEnv->GetIntField(object, fieldIds.primaryTrackVolume);
2275 jobject object,
2299 (NULL == object),
2307 pSettings->uiStartTime = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.startTime);
2310 pSettings->uiDuration = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.duration);
2315 &converted, pEnv->GetIntField(object, fieldIds.videoEffectType));
2334 &converted, pEnv->GetIntField(object, fieldIds.audioEffectType));
2345 pSettings->xVSS.uiStartPercent = (M4OSA_UInt32)pEnv->GetIntField(object,
2349 pSettings->xVSS.uiDurationPercent = (M4OSA_UInt32)pEnv->GetIntField(object,
2354 object, fieldIds.framingFile, M4OSA_NULL);
2373 pSettings->xVSS.topleft_x = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.topLeftX);
2377 pSettings->xVSS.topleft_y = (M4OSA_UInt32)pEnv->GetIntField(object, fieldIds.topLeftY);
2381 (M4OSA_Bool)pEnv->GetBooleanField(object, fieldIds.framingResize);
2385 (M4VIDEOEDITING_VideoFrameSize)pEnv->GetIntField(object, fieldIds.framingScaledSize);
2388 pSettings->xVSS.pTextBuffer = (M4OSA_Char*)videoEditJava_getString(pResult, pEnv, object,
2397 object, fieldIds.textRenderingData, M4OSA_NULL);
2404 pSettings->xVSS.uiTextBufferWidth = (M4OSA_UInt32)pEnv->GetIntField(object,
2408 pSettings->xVSS.uiTextBufferHeight = (M4OSA_UInt32)pEnv->GetIntField(object,
2412 pSettings->xVSS.uiFiftiesOutFrameRate = (M4OSA_UInt32)pEnv->GetIntField(object,
2416 pSettings->xVSS.uiRgb16InputColor = (M4OSA_UInt16)pEnv->GetIntField(object,
2420 pSettings->xVSS.uialphaBlendingStart = (M4OSA_UInt8)pEnv->GetIntField(object,
2424 pSettings->xVSS.uialphaBlendingMiddle = (M4OSA_UInt8)pEnv->GetIntField(object,
2428 pSettings->xVSS.uialphaBlendingEnd = (M4OSA_UInt8)pEnv->GetIntField(object,
2432 pSettings->xVSS.uialphaBlendingFadeInTime = (M4OSA_UInt8)pEnv->GetIntField(object,
2436 pSettings->xVSS.uialphaBlendingFadeOutTime = (M4OSA_UInt8)pEnv->GetIntField(object,
2449 pSettings->xVSS.pFramingBuffer->u_width = pEnv->GetIntField(object,
2452 pSettings->xVSS.pFramingBuffer->u_height = pEnv->GetIntField(object,
2602 jobject object,
2626 (NULL == object),
2643 &converted, pEnv->GetIntField(object, fieldIds.direction));
2707 jobject object,
2734 (NULL == object),
2742 videoEditJava_getObject(pResult, pEnv, object, fieldIds.alphaSettings, &alphaSettings);
2745 videoEditJava_getObject(pResult, pEnv, object, fieldIds.slideSettings, &slideSettings);
2759 pSettings->uiTransitionDuration = (M4OSA_UInt32)pEnv->GetIntField(object,
2765 &converted, pEnv->GetIntField(object, fieldIds.videoTransitionType));
2784 &converted, pEnv->GetIntField(object, fieldIds.audioTransitionType));
2797 &converted, pEnv->GetIntField(object, fieldIds.transitionBehaviour));
2807 // Check if a slide transition or alpha magic setting object is expected.
3000 jobject object = NULL;
3016 // Only create an object if the class and fields could be located.
3019 // Allocate a new object.
3020 object = pEnv->AllocObject(clazz);
3024 (NULL == object),
3026 if (NULL != object)
3029 pEnv->SetIntField(object, fieldIds.major, pVersionInfo->m_major);
3032 pEnv->SetIntField(object, fieldIds.minor, pVersionInfo->m_minor);
3035 pEnv->SetIntField(object, fieldIds.revision, pVersionInfo->m_revision);
3037 // Return the object.
3038 (*pObject) = object;
3075 jobject object)
3099 pContext = (void *)pEnv->GetIntField(object, fieldIds.context);
3110 jobject object,
3136 pEnv->GetIntField(object, fieldIds.context));
3138 pEnv->SetIntField(object, fieldIds.context, (int)pContext);
3143 pEnv->GetIntField(object, fieldIds.context));