Home
last modified time | relevance | path

Searched refs:encodeImage (Results 1 – 8 of 8) sorted by relevance

/packages/services/DeviceAsWebcam/jni/
DSdkFrameProvider.h39 Status encodeImage(AHardwareBuffer* hardwareBuffer, long timestamp, int rotation) override;
48 Status encodeImage(HardwareBufferDesc desc, jlong timestamp, jint rotation);
DSdkFrameProvider.cpp58 Status SdkFrameProvider::encodeImage(AHardwareBuffer* hardwareBuffer, long timestamp, in encodeImage() function in android::webcam::SdkFrameProvider
65 return encodeImage(desc, timestamp, rotation); in encodeImage()
128 Status SdkFrameProvider::encodeImage(HardwareBufferDesc desc, jlong timestamp, jint rotation) { in encodeImage() function in android::webcam::SdkFrameProvider
DDeviceAsWebcamServiceManager.cpp86 int DeviceAsWebcamServiceManager::encodeImage(JNIEnv* env, jobject hardwareBuffer, in encodeImage() function in android::webcam::DeviceAsWebcamServiceManager
95 return mUVCProvider->encodeImage(buffer, timestamp, rotation); in encodeImage()
DUVCProvider.h110 int encodeImage(AHardwareBuffer* hardwareBuffer, long timestamp, jint rotation);
141 Status encodeImage(AHardwareBuffer* buffer, long timestamp, int rotation);
DFrameProvider.h45 virtual Status encodeImage(AHardwareBuffer* hardwareBuffer, long timestamp, int rotation) = 0;
DDeviceAsWebcamServiceManager.h43 int encodeImage(JNIEnv* env, jobject hardwareBuffer, jlong timestamp, jint rotation);
DUVCProvider.cpp777 Status UVCProvider::UVCDevice::encodeImage(AHardwareBuffer* buffer, long timestamp, int rotation) { in encodeImage() function in android::webcam::UVCProvider::UVCDevice
782 return mFrameProvider->encodeImage(buffer, timestamp, rotation); in encodeImage()
905 int UVCProvider::encodeImage(AHardwareBuffer* buffer, long timestamp, int rotation) { in encodeImage() function in android::webcam::UVCProvider
910 return mUVCDevice->encodeImage(buffer, timestamp, rotation) == Status::OK ? 0 : -1; in encodeImage()
DDeviceAsWebcamNative.cpp94 return DeviceAsWebcamServiceManager::kInstance->encodeImage(env, hardwareBuffer, timestamp, in com_android_DeviceAsWebcam_encodeImage()