summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDanny Baumann <dannybaumann@web.de>2016-03-25 13:02:27 +0100
committerChippa-a <vusal1372@gmail.com>2019-10-25 15:55:25 +0300
commite4f3cf22d410f428c3e314eb544752dfe40a23b1 (patch)
tree72424f418c76623fb79b868a8ad7ab4fe7d9b955 /src
parent3c6be8ace369c76a16c58863da1786ba1afe90ba (diff)
downloadandroid_packages_apps_Snap-e4f3cf22d410f428c3e314eb544752dfe40a23b1.tar.gz
android_packages_apps_Snap-e4f3cf22d410f428c3e314eb544752dfe40a23b1.tar.bz2
android_packages_apps_Snap-e4f3cf22d410f428c3e314eb544752dfe40a23b1.zip
Protect against multiple shutter callbacks per frame in longshot mode.
Some devices send multiple shutter callbacks for one captured frame in longshot mode. As this causes mismatch between the calculated number of captured frames and the calculated number of JPEGs received for those, which in turn leads to longshot mode never being ended properly, protect against that scenario by discarding all but the first callback. Change-Id: I0c3a270f664a0cd16354fb0a13c5941a52001650
Diffstat (limited to 'src')
-rwxr-xr-xsrc/com/android/camera/PhotoModule.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/com/android/camera/PhotoModule.java b/src/com/android/camera/PhotoModule.java
index fe82e5b02..9322f9e73 100755
--- a/src/com/android/camera/PhotoModule.java
+++ b/src/com/android/camera/PhotoModule.java
@@ -1074,6 +1074,11 @@ public class PhotoModule
private final class LongshotShutterCallback
implements CameraShutterCallback {
+ private int mExpectedLongshotSnapNum;
+
+ public LongshotShutterCallback() {
+ mExpectedLongshotSnapNum = mLongshotSnapNum;
+ }
@Override
public void onShutter(CameraProxy camera) {
@@ -1081,6 +1086,9 @@ public class PhotoModule
mShutterLag = mShutterCallbackTime - mCaptureStartTime;
Log.e(TAG, "[KPI Perf] PROFILE_SHUTTER_LAG mShutterLag = " + mShutterLag + "ms");
synchronized(mCameraDevice) {
+ if (mExpectedLongshotSnapNum != mLongshotSnapNum) {
+ return;
+ }
if (++mLongshotSnapNum >= mLongShotMaxSnap &&
(mLongShotMaxSnap != -1)) {