Searched defs:msgType (Results 1 - 9 of 9) sorted by relevance

/hardware/ti/omap4-aah/test/CameraHal/
H A Dcamera_test_script.cpp1203 int msgType = 0; local
1217 msgType = CAMERA_MSG_COMPRESSED_IMAGE |
1220 msgType |= CAMERA_MSG_RAW_BURST;
1223 msgType = CAMERA_MSG_POSTVIEW_FRAME |
1228 msgType |= CAMERA_MSG_RAW_BURST;
1238 ret = camera->takePictureWithParameters(msgType, shotParams.flatten());
1269 int msgType = CAMERA_MSG_COMPRESSED_IMAGE; local
1285 if (hardwareActive) camera->reprocess(msgType, String8());
H A Dcamera_test_menu.cpp770 void CameraHandler::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
772 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2);
774 if ( msgType & CAMERA_MSG_FOCUS )
777 if ( msgType & CAMERA_MSG_SHUTTER )
780 if ( msgType & CAMERA_MSG_ERROR && (ext1 == 1))
804 void CameraHandler::postData(int32_t msgType, argument
808 printf("Data cb: %d\n", msgType);
810 if ( msgType & CAMERA_MSG_PREVIEW_FRAME )
817 if ( msgType & msgMask) {
822 if (msgType
845 postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
3505 int msgType = 0; local
3552 int msgType = CAMERA_MSG_COMPRESSED_IMAGE; local
[all...]
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/
H A DLCML_Types.h123 DSP_EventType msgType; member in struct:NOTIFICATION_OBJ
/hardware/ti/omap4-aah/camera/
H A DAppCallbackNotifier.cpp740 void AppCallbackNotifier::copyAndSendPictureFrame(CameraFrame* frame, int32_t msgType) argument
746 if (mCameraHal->msgTypeEnabled(msgType)) {
756 ( msgType == CAMERA_MSG_RAW_IMAGE )) {
782 mCameraHal->msgTypeEnabled(msgType)) {
783 mDataCb(msgType, picture, 0, NULL, mCallbackCookie);
789 void AppCallbackNotifier::copyAndSendPreviewFrame(CameraFrame* frame, int32_t msgType) argument
853 mCameraHal->msgTypeEnabled(msgType) &&
857 mDataCb(msgType, mPreviewMemory, mPreviewBufCount, NULL, mCallbackCookie);
1807 status_t AppCallbackNotifier::enableMsgType(int32_t msgType) argument
1809 if( msgType
1824 disableMsgType(int32_t msgType) argument
[all...]
H A DCameraHal.cpp212 void CameraHal::enableMsgType(int32_t msgType) argument
216 if ( ( msgType & CAMERA_MSG_SHUTTER ) && ( !mShutterEnabled ) )
218 msgType &= ~CAMERA_MSG_SHUTTER;
223 msgType &= ~CAMERA_MSG_FOCUS;
225 msgType &= ~CAMERA_MSG_FOCUS_MOVE;
230 mMsgEnabled |= msgType;
238 msgType &= ~CAMERA_MSG_PREVIEW_FRAME;
246 CAMHAL_LOGDB("Preview callback not enabled %x", msgType);
251 mAppCallbackNotifier->enableMsgType (msgType);
263 void CameraHal::disableMsgType(int32_t msgType) argument
294 msgTypeEnabled(int32_t msgType) argument
[all...]
/hardware/ti/omap4xxx/camera/
H A DAppCallbackNotifier.cpp690 void AppCallbackNotifier::copyAndSendPictureFrame(CameraFrame* frame, int32_t msgType) argument
719 mCameraHal->msgTypeEnabled(msgType)) {
720 mDataCb(msgType, picture, 0, NULL, mCallbackCookie);
726 void AppCallbackNotifier::copyAndSendPreviewFrame(CameraFrame* frame, int32_t msgType) argument
790 mCameraHal->msgTypeEnabled(msgType) &&
792 mDataCb(msgType, mPreviewMemory, mPreviewBufCount, NULL, mCallbackCookie);
1744 status_t AppCallbackNotifier::enableMsgType(int32_t msgType) argument
1746 if( msgType & (CAMERA_MSG_POSTVIEW_FRAME | CAMERA_MSG_PREVIEW_FRAME) ) {
1753 status_t AppCallbackNotifier::disableMsgType(int32_t msgType) argument
1755 if( msgType
[all...]
H A DCameraHal.cpp123 void CameraHal::enableMsgType(int32_t msgType) argument
127 if ( ( msgType & CAMERA_MSG_SHUTTER ) && ( !mShutterEnabled ) )
129 msgType &= ~CAMERA_MSG_SHUTTER;
134 msgType &= ~(CAMERA_MSG_FOCUS | CAMERA_MSG_FOCUS_MOVE);
138 mMsgEnabled |= msgType;
146 msgType &= ~CAMERA_MSG_PREVIEW_FRAME;
154 CAMHAL_LOGDB("Preview callback not enabled %x", msgType);
159 mAppCallbackNotifier->enableMsgType (msgType);
171 void CameraHal::disableMsgType(int32_t msgType) argument
177 mMsgEnabled &= ~msgType;
202 msgTypeEnabled(int32_t msgType) argument
[all...]
/hardware/ti/omap4xxx/test/CameraHal/
H A Dcamera_test_menu.cpp653 void CameraHandler::notify(int32_t msgType, int32_t ext1, int32_t ext2) { argument
655 printf("Notify cb: %d %d %d\n", msgType, ext1, ext2);
657 if ( msgType & CAMERA_MSG_FOCUS )
660 if ( msgType & CAMERA_MSG_SHUTTER )
663 if ( msgType & CAMERA_MSG_ERROR && (ext1 == 1))
687 void CameraHandler::postData(int32_t msgType, argument
690 printf("Data cb: %d\n", msgType);
692 if ( msgType & CAMERA_MSG_PREVIEW_FRAME )
695 if ( msgType & CAMERA_MSG_RAW_IMAGE ) {
700 if (msgType
716 postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosCameraHWInterface.cpp291 void ExynosCameraHWInterface::enableMsgType(int32_t msgType) argument
293 ALOGV("DEBUG(%s):msgType = 0x%x, m_msgEnabled before = 0x%x",
294 __func__, msgType, m_msgEnabled);
295 m_msgEnabled |= msgType;
298 if ( msgType & CAMERA_MSG_PREVIEW_FRAME
314 void ExynosCameraHWInterface::disableMsgType(int32_t msgType) argument
316 ALOGV("DEBUG(%s):msgType = 0x%x, m_msgEnabled before = 0x%x",
317 __func__, msgType, m_msgEnabled);
318 m_msgEnabled &= ~msgType;
322 bool ExynosCameraHWInterface::msgTypeEnabled(int32_t msgType) argument
[all...]

Completed in 283 milliseconds