summaryrefslogtreecommitdiff
path: root/include/ui/CameraHardwareInterface.h
diff options
context:
space:
mode:
author Dave Sparks <davidsparks@android.com> 2009-07-08 15:56:53 -0700
committer Dave Sparks <davidsparks@android.com> 2009-07-08 15:59:25 -0700
commit59c1a935295cb30c2ba2f759855e89c174b42a07 (patch)
treeecb4f9b555dca38af549fa469f97e734d9fcc799 /include/ui/CameraHardwareInterface.h
parenta5188a09bd20c376b4f0645b0df4c52f8e114e21 (diff)
Add timestamps to video frames to improve A/V sync.
Bug 1927069.
Diffstat (limited to 'include/ui/CameraHardwareInterface.h')
-rw-r--r--include/ui/CameraHardwareInterface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ui/CameraHardwareInterface.h b/include/ui/CameraHardwareInterface.h
index 73036f0fa783..822b4a8f5d3b 100644
--- a/include/ui/CameraHardwareInterface.h
+++ b/include/ui/CameraHardwareInterface.h
@@ -28,7 +28,7 @@ namespace android {
typedef void (*preview_callback)(const sp<IMemory>& mem, void* user);
/** Callback for startRecord() */
-typedef void (*recording_callback)(const sp<IMemory>& mem, void* user);
+typedef void (*recording_callback)(nsecs_t timestamp, const sp<IMemory>& mem, void* user);
/** Callback for takePicture() */
typedef void (*shutter_callback)(void* user);