Searched refs:dataPtr (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/include/camera/
H A DCamera.h62 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
64 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) = 0;
142 virtual void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
144 virtual void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
/frameworks/av/services/camera/libcameraservice/
H A DCameraClient.h90 static void dataCallback(int32_t msgType, const sp<IMemory>& dataPtr,
92 static void dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user);
101 void handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr,
103 void handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
H A DCameraClient.cpp712 const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata, void* user) {
724 if (dataPtr == 0 && metadata == NULL) {
732 client->handlePreviewData(msgType, dataPtr, metadata);
735 client->handlePostview(dataPtr);
738 client->handleRawPicture(dataPtr);
741 client->handleCompressedPicture(dataPtr);
744 client->handleGenericData(msgType, dataPtr, metadata);
750 int32_t msgType, const sp<IMemory>& dataPtr, void* user) {
763 if (dataPtr == 0) {
769 client->handleGenericDataTimestamp(timestamp, msgType, dataPtr);
711 dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata, void* user) argument
749 dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr, void* user) argument
882 handleGenericData(int32_t msgType, const sp<IMemory>& dataPtr, camera_frame_metadata_t *metadata) argument
891 handleGenericDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
H A DCameraHardwareInterface.h38 const sp<IMemory> &dataPtr,
44 const sp<IMemory> &dataPtr,
/frameworks/av/camera/
H A DCamera.cpp364 void Camera::dataCallback(int32_t msgType, const sp<IMemory>& dataPtr, argument
373 listener->postData(msgType, dataPtr, metadata);
378 void Camera::dataCallbackTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
389 proxylistener->dataCallbackTimestamp(timestamp, msgType, dataPtr);
399 listener->postDataTimestamp(timestamp, msgType, dataPtr);
402 releaseRecordingFrame(dataPtr);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.h140 M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat,
145 M4OSA_Void * dataPtr,
H A DVideoEditorPreviewController.cpp1378 M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth,
1384 postProcessParams.vidBuffer = (M4VIFI_UInt8*)dataPtr;
1427 M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth,
1436 inBuffer = (M4OSA_UInt8 *)dataPtr;
1377 applyVideoEffect( M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth, M4OSA_UInt32 videoHeight, M4OSA_UInt32 timeMs, M4OSA_Void* outPtr) argument
1426 doImageRenderingMode( M4OSA_Void * dataPtr, M4OSA_UInt32 colorFormat, M4OSA_UInt32 videoWidth, M4OSA_UInt32 videoHeight, M4OSA_Void* outPtr) argument
/frameworks/av/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);
861 nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) {
862 mSource->dataCallbackTimestamp(timestamp / 1000, msgType, dataPtr);
80 postDataTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
860 dataCallbackTimestamp( nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]
H A DACodec.cpp159 void *dataPtr);
2460 void *dataPtr; local
2467 CHECK(msg->findPointer("data_ptr", &dataPtr));
2475 dataPtr);
2758 void *dataPtr) {
2752 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.cpp64 virtual void postData(int32_t msgType, const sp<IMemory>& dataPtr,
66 virtual void postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr);
75 void copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType);
224 void JNICameraContext::copyAndPost(JNIEnv* env, const sp<IMemory>& dataPtr, int msgType) argument
229 if (dataPtr != NULL) {
232 sp<IMemoryHeap> heap = dataPtr->getMemory(&offset, &size);
277 void JNICameraContext::postData(int32_t msgType, const sp<IMemory>& dataPtr, argument
304 copyAndPost(env, dataPtr, dataMsgType);
313 ALOGV("dataCallback(%d, %p)", dataMsgType, dataPtr.get());
314 copyAndPost(env, dataPtr, dataMsgTyp
324 postDataTimestamp(nsecs_t timestamp, int32_t msgType, const sp<IMemory>& dataPtr) argument
[all...]

Completed in 251 milliseconds