diff options
| author | Ramesh V <ramev@codeaurora.org> | 2017-08-02 16:02:38 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2017-08-28 02:17:21 -0700 |
| commit | 03828cfb7de6ee7a6c452391a445cab802073b7f (patch) | |
| tree | 7f92b6be369dcfa03b1d7b3ef95c3f1a6717e970 | |
| parent | 8aedd7084222d4cce3acdfe3c71820c674503bee (diff) | |
msm: camera: isp: Fix frame skip pattern
when HAL request to skip zsl frames, isp need to
configure and skip all snapshot frames.
Change-Id: Ib091b9c707e8df7df671d8a942fc94bbb92de0b3
Signed-off-by: Ramesh V <ramev@codeaurora.org>
| -rw-r--r-- | drivers/media/platform/msm/camera_v2/isp/msm_isp_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/msm/camera_v2/isp/msm_isp_util.c b/drivers/media/platform/msm/camera_v2/isp/msm_isp_util.c index e87f2414a879..92b1f2ea871b 100644 --- a/drivers/media/platform/msm/camera_v2/isp/msm_isp_util.c +++ b/drivers/media/platform/msm/camera_v2/isp/msm_isp_util.c @@ -196,7 +196,7 @@ uint32_t msm_isp_get_framedrop_period( return 32; break; case SKIP_ALL: - return 1; + return SKIP_ALL; default: return 1; } |
