Searched defs:dataPtr (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/libs/camera/
H A DCamera.cpp363 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, argument
372 listener->postData(msgType, dataPtr, metadata);
377 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
388 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
398 listener->postDataTimestamp(timestamp, msgType, dataPtr);
401 releaseRecordingFrame(dataPtr);
/frameworks/media/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp1370 M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth,
1376 postProcessParams.vidBuffer = (M4VIFI_UInt8*)dataPtr;
1419 M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth,
1428 inBuffer = (M4OSA_UInt8 *)dataPtr;
1369 applyVideoEffect( M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth, M4OSA_UInt32 videoHeight, M4OSA_UInt32 timeMs, M4OSA_Void* outPtr) argument
1418 doImageRenderingMode( M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth, M4OSA_UInt32 videoHeight, M4OSA_Void* outPtr) argument
/frameworks/base/media/libstagefright/
H A DCameraSource.cpp42 virtual void postData(int32_t msgType, const sp<IMemory> &dataPtr,
46 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
69 void CameraSourceListener::postData(int32_t msgType, const sp<IMemory> &dataPtr, argument
72 msgType, dataPtr->pointer(), dataPtr->size());
76 source->dataCallback(msgType, dataPtr);
81 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
85 source->dataCallbackTimestamp(timestamp/1000, msgType, dataPtr);
830 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
831 mSource->dataCallbackTimestamp(timestamp / 1000, msgType, dataPtr);
80 postDataTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
829 dataCallbackTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
H A DACodec.cpp157 void *dataPtr);
1337 void *dataPtr; local
1344 CHECK(msg->findPointer("data_ptr", &dataPtr));
1352 dataPtr);
1584 void *dataPtr) {
1578 onOMXFillBufferDone( IOMX::buffer_id bufferID, size_t rangeOffset, size_t rangeLength, OMX_U32 flags, int64_t timeUs, void *platformPrivate, void *dataPtr) argument
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp62 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
64 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
73 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
222 void JNICameraContext::copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType) argument
227 if (dataPtr != NULL) {
230 sp<IMemoryHeap> heap = dataPtr->getMemory(&offset, &size);
275 void JNICameraContext::postData(int32_t msgType, const sp<IMemory>& dataPtr, argument
302 copyAndPost(env, dataPtr, dataMsgType);
311 LOGV("dataCallback(%d, %p)", dataMsgType, dataPtr.get());
312 copyAndPost(env, dataPtr, dataMsgTyp
322 postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
/frameworks/base/services/camera/libcameraservice/
H A DCameraService.cpp994 const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata, void* user) {
1001 if (dataPtr == 0 && metadata == NULL) {
1009 client->handlePreviewData(msgType, dataPtr, metadata);
1012 client->handlePostview(dataPtr);
1015 client->handleRawPicture(dataPtr);
1018 client->handleCompressedPicture(dataPtr);
1021 client->handleGenericData(msgType, dataPtr, metadata);
1027 int32_t msgType, const sp<IMemory>& dataPtr, void* user) {
1034 if (dataPtr == 0) {
1040 client->handleGenericDataTimestamp(timestamp, msgType, dataPtr);
993 dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata, void* user) argument
1026 dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user) argument
1153 handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata) argument
1162 handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]

Completed in 291 milliseconds