Camera2: Ignore NOT_FOUND errors for face detect mode on frame receipt.

Reduce log spamming due to incomplete implementations.

Change-Id: I6eb9d657591bd5f1476dd8c96e4a00b8a03e2a5e
diff --git a/services/camera/libcameraservice/Camera2Client.cpp b/services/camera/libcameraservice/Camera2Client.cpp
index c48aa22..66d8a50 100644
--- a/services/camera/libcameraservice/Camera2Client.cpp
+++ b/services/camera/libcameraservice/Camera2Client.cpp
@@ -2010,7 +2010,11 @@
     }
     res = find_camera_metadata_entry(frame, ANDROID_STATS_FACE_DETECT_MODE,
             &entry);
-    if (res != OK) {
+    // TODO: Remove this check once things are more compliant. For now, assume that
+    // if we can't find the face detect mode, then it's probably not working.
+    if (res == NAME_NOT_FOUND) {
+        return OK;
+    } else if (res != OK) {
         ALOGE("%s: Camera %d: Error reading face mode: %s (%d)",
                 __FUNCTION__, mCameraId, strerror(-res), res);
         return res;