diff options
| author | Chien-Yu Chen <cychen@google.com> | 2015-08-13 00:55:24 +0000 | 
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2015-08-13 00:55:24 +0000 | 
| commit | 5732386666aa2265d658e9fc861a1dfe22033861 (patch) | |
| tree | 1ba35271c05fcf3790f7216ff625c1e00df81c12 /services/camera | |
| parent | 4327df2af078894c38a8eb69f4873bef92cc0f83 (diff) | |
| parent | c96ac8dfcae66a45b7ae67b82dabdf19f60f859d (diff) | |
| download | frameworks_av-5732386666aa2265d658e9fc861a1dfe22033861.zip frameworks_av-5732386666aa2265d658e9fc861a1dfe22033861.tar.gz frameworks_av-5732386666aa2265d658e9fc861a1dfe22033861.tar.bz2  | |
Merge "Camera3Device: Relax InFlightMap size check" into mnc-dev
Diffstat (limited to 'services/camera')
| -rw-r--r-- | services/camera/libcameraservice/device3/Camera3Device.cpp | 6 | ||||
| -rw-r--r-- | services/camera/libcameraservice/device3/Camera3Device.h | 4 | 
2 files changed, 8 insertions, 2 deletions
diff --git a/services/camera/libcameraservice/device3/Camera3Device.cpp b/services/camera/libcameraservice/device3/Camera3Device.cpp index c91517c..0a4440f 100644 --- a/services/camera/libcameraservice/device3/Camera3Device.cpp +++ b/services/camera/libcameraservice/device3/Camera3Device.cpp @@ -2090,8 +2090,12 @@ void Camera3Device::removeInFlightRequestIfReadyLocked(int idx) {      // Sanity check - if we have too many in-flight frames, something has      // likely gone wrong -    if (mInFlightMap.size() > kInFlightWarnLimit) { +    if (!mIsConstrainedHighSpeedConfiguration && mInFlightMap.size() > kInFlightWarnLimit) {          CLOGE("In-flight list too large: %zu", mInFlightMap.size()); +    } else if (mIsConstrainedHighSpeedConfiguration && mInFlightMap.size() > +            kInFlightWarnLimitHighSpeed) { +        CLOGE("In-flight list too large for high speed configuration: %zu", +                mInFlightMap.size());      }  } diff --git a/services/camera/libcameraservice/device3/Camera3Device.h b/services/camera/libcameraservice/device3/Camera3Device.h index eea34af..8bd0f8e 100644 --- a/services/camera/libcameraservice/device3/Camera3Device.h +++ b/services/camera/libcameraservice/device3/Camera3Device.h @@ -154,9 +154,11 @@ class Camera3Device :    private:      static const size_t        kDumpLockAttempts  = 10;      static const size_t        kDumpSleepDuration = 100000; // 0.10 sec -    static const size_t        kInFlightWarnLimit = 20;      static const nsecs_t       kShutdownTimeout   = 5000000000; // 5 sec      static const nsecs_t       kActiveTimeout     = 500000000;  // 500 ms +    static const size_t        kInFlightWarnLimit = 20; +    static const size_t        kInFlightWarnLimitHighSpeed = 256; // batch size 32 * pipe depth 8 +      struct                     RequestTrigger;      // minimal jpeg buffer size: 256KB + blob header      static const ssize_t       kMinJpegBufferSize = 256 * 1024 + sizeof(camera3_jpeg_blob);  | 
