navigator.getUserMedia() is not working in android 7.0 or above

745 views
Skip to first unread message

dingli...@163.com

unread,
Jun 21, 2017, 3:15:57 AM6/21/17
to discuss-webrtc
Hi, I have one mobile app using HTML5 and AngularJS. It works fine in android 6.0 or below. In android 7.0, it's not workable. 
navigator.getUserMedia()  can call the camera sevice, but can't add the local mediaStream to the document.

public call(){
    var mediaOptions = { audio: true, video: true };
    if (!navigator.getUserMedia) {
      navigator.getUserMedia = (<any>navigator).getUserMedia || (<any>navigator).webkitGetUserMedia || (<any>navigator).mozGetUserMedia ||          (<any>navigator).msGetUserMedia;;
    }
    if (!navigator.getUserMedia) {
      return alert('getUserMedia not supported in this browser.');
    }
    navigator.getUserMedia(mediaOptions, (stream: MediaStream) => {
      let video = document.querySelector('#localVideo');

      var videoTracks = stream.getVideoTracks();
      console.log('Using video device: ' + videoTracks[0].label+'|'+videoTracks[0].id+'|'+
        videoTracks[0].kind+'|'+videoTracks[0].enabled);

      stream.oninactive = function() {
        console.log('Stream inactive');
      };
      stream.onactive = function() {
        console.log('Stream onactive');
      };
      (<any>window).stream = stream; // make variable available to browser console
      (<any>video).srcObject = stream;
    }, function (e) {
      console.log('navigator.getUserMedia error:'+e);
    });
  }

The logs:

06-20 14:54:54.221 14575-14638/com.ionicframework.ionicdemo357908 I/CameraManagerGlobal: Connecting to camera service
06-20 14:54:54.229 486-866/? I/FlipSensorManager: isFlipCameraPhone: ro.camera.flipsensor.enable not opened!
06-20 14:54:54.229 486-866/? I/FlipSensorManager: isFlipCameraPhone: ro.camera.flipsensor.enable not opened!
06-20 14:54:54.229 486-866/? I/FlipSensorManager: isFlipCameraPhone: ro.camera.flipsensor.enable not opened!
06-20 14:54:54.249 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:54.249 27570-27584/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:54.252 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:54.252 29402-29416/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:54.293 1290-1420/? E/WifiConfigManager: updateConfiguration freq=2417 BSSID=ec:22:80:73:11:26 RSSI=-56 "zjqunshuo-2"WPA_PSK
06-20 14:54:54.361 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:54.361 27718-27731/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:54.373 1290-27978/? I/MediaFocusControl:  AudioFocus  requestAudioFocus() from uid/pid 10140/14575 clientId=android.media...@5dd0a47org.chromium.media.AudioManagerAndroid@2293274 req=1 flags=0x0
06-20 14:54:54.384 665-1446/? I/asd: [asd_stop] has detected stream already. new type[1], curr type[0]
06-20 14:54:54.384 665-1446/? I/dsp_common: dsp_common_set_mode:mode = 3
06-20 14:54:54.384 665-1446/? W/HuaweiAudioFlinger: soundtrigger is now disable or not support, pls enable it first from setting
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: setPhoneState() state 0->3
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=5 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=1 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=2 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=3 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=7 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=0 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=4 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-1446/? I/APM_AudioPolicyManager: checkOutputForStrategy() getDeviceForStrategy strategy=8 newDevice=2 oldDevice=2
06-20 14:54:54.384 665-687/? I/AudioFlinger: setStreamVolume thread=0xe9e83040; stream=4; value=0.000000
06-20 14:54:54.385 665-1446/? I/APM_AudioPolicyManager: getNewOutputDevice() selected device 2
06-20 14:54:54.385 665-1446/? I/APM_AudioPolicyManager: setOutputDevice() device 0x0002 delayMs 0 force 1
06-20 14:54:54.385 665-1446/? I/APM_AudioPolicyManager: setOutputDevice() changing to device 0x0002 , muteWaitMs 0
                                                        
                                                        [ 06-20 14:54:54.385   665:  773 I/         ]
                                                        offload effect sws state: [1]
06-20 14:54:54.385 665-773/? I/audio_hw_primary: out_set_parameters_no_lock device:0x0, out type:0
06-20 14:54:54.385 665-773/? I/audio_hw_primary: out_set_parameters_no_lock device:0x2, out type:0
06-20 14:54:54.385 665-773/? I/audio_hw_primary: call_get_sample_rate: sample_rate = 16000, tty_status = 0
06-20 14:54:54.385 665-773/? I/audio_hw_primary: select_devices++ mode[3]
06-20 14:54:54.385 665-773/? I/audio_hw_primary: path selected by force
06-20 14:54:54.385 665-773/? I/audio_hw_primary: select_devices() devices 0x2 input src 0 output route none input route none
06-20 14:54:54.386 665-773/? I/dsp_common: dsp_common_control_algo:set device = 0
06-20 14:54:54.386 665-773/? I/dsp_common: dsp_common_control_algo:set device = 0
06-20 14:54:54.386 665-773/? I/audio_hw_primary: select_devices--
06-20 14:54:54.386 665-1446/? I/APM_AudioPolicyManager: setOutputDevice() createAudioPatch returned 0 patchHandle 1460 num_sources 1 num_sinks 1
06-20 14:54:54.386 665-1446/? I/APM_AudioPolicyManager: checkAndSetVolume:setVoiceVolume volume 0.200000, delay 0
06-20 14:54:54.386 665-687/? I/audio_hw_primary: adev_set_voice_volume volume: 1.
06-20 14:54:54.387 665-687/? I/AudioFlinger: setStreamVolume thread=0xe9e83040; stream=8; value=0.063096
06-20 14:54:54.387 665-1446/? I/APM_AudioPolicyManager: handleIncallSonification() stream 2 starting 1 device 0x2 stateChange 1
06-20 14:54:54.387 665-1446/? I/APM_AudioPolicyManager: handleIncallSonification() stream 4 starting 1 device 0x2 stateChange 1
06-20 14:54:54.387 665-1446/? I/APM_AudioPolicyManager: handleIncallSonification() stream 5 starting 1 device 0x2 stateChange 1
06-20 14:54:54.388 1290-1290/? I/AudioSystem-JNI: listAudioPorts AudioSystem::listAudioPorts numPorts 7 generation 343 generation1 343
06-20 14:54:54.394 665-665/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 0, device 0x0002, index 1
06-20 14:54:54.394 665-665/? I/APM_AudioPolicyManager: checkAndSetVolume:setVoiceVolume volume 0.200000, delay 0
06-20 14:54:54.394 665-687/? I/audio_hw_primary: adev_set_voice_volume volume: 1.
06-20 14:54:54.399 1290-27981/? I/SendBroadcastPermission: action:android.media.VOLUME_CHANGED_ACTION, mPermissionType:0
06-20 14:54:54.400 1290-27981/? I/SendBroadcastPermission: action:android.media.VOLUME_CHANGED_ACTION, mPermissionType:0
06-20 14:54:54.401 1290-27981/? I/SendBroadcastPermission: action:android.media.STREAM_MUTE_CHANGED_ACTION, mPermissionType:0
06-20 14:54:54.401 665-1445/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x0001, index 15
06-20 14:54:54.402 14575-14638/com.ionicframework.ionicdemo357908 I/AudioManager: setMode mode:3
06-20 14:54:54.403 14575-14638/com.ionicframework.ionicdemo357908 I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x1, using default mask 0x10 based on channel count of 1)
06-20 14:54:54.405 665-782/? I/APM_AudioPolicyManager: getInputForAttr() source 7, samplingRate 48000, format 1, channelMask 10,session 865, flags 0x1
06-20 14:54:54.405 665-782/? I/audio_hw_primary: change channel_mask form 10 to AUDIO_CHANNEL_IN_STEREO
06-20 14:54:54.406 665-14985/? I/AudioFlinger: AudioFlinger's thread 0xe8783700 ready to run
06-20 14:54:54.406 665-14985/? I/audio_hw_primary: do_in_standby standby: 1, in_device: 0
06-20 14:54:54.406 665-665/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x0002, index 3
06-20 14:54:54.407 665-15259/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x0004, index 12
06-20 14:54:54.407 665-14985/? I/audio_hw_primary: do_in_standby standby: 1, in_device: 0
06-20 14:54:54.408 665-665/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x40000000, index 12
06-20 14:54:54.408 1290-1290/? I/AudioSystem-JNI: listAudioPorts AudioSystem::listAudioPorts numPorts 8 generation 344 generation1 344
06-20 14:54:54.408 665-1445/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x0001, index 15
06-20 14:54:54.409 665-782/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x0002, index 3
06-20 14:54:54.409 665-1445/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x0004, index 12
06-20 14:54:54.409 665-665/? I/APM_AudioPolicyManager: setStreamVolumeIndex() stream 8, device 0x40000000, index 12
06-20 14:54:54.413 14575-14638/com.ionicframework.ionicdemo357908 W/AudioRecord: AUDIO_INPUT_FLAG_FAST denied by server; frameCount 0
06-20 14:54:54.416 665-15261/? I/dsp_common: dsp_common_set_source:source = 0
06-20 14:54:54.416 665-15261/? I/audio_hw_primary: do_in_standby standby: 1, in_device: 0
06-20 14:54:54.417 665-27033/? I/APM_AudioPolicyManager: getInputForAttr() source 7, samplingRate 48000, format 1, channelMask 10,session 865, flags 0
06-20 14:54:54.417 665-27033/? I/audio_hw_primary: change channel_mask form 10 to AUDIO_CHANNEL_IN_STEREO
06-20 14:54:54.418 665-14986/? I/AudioFlinger: AudioFlinger's thread 0xe9583840 ready to run
06-20 14:54:54.418 665-14986/? I/audio_hw_primary: do_in_standby standby: 1, in_device: 0
06-20 14:54:54.418 665-27033/? W/APM_AudioPolicyManager: releaseInput() releasing unknown input 534
06-20 14:54:54.418 1290-1290/? I/AudioSystem-JNI: listAudioPorts AudioSystem::listAudioPorts numPorts 8 generation 346 generation1 346
06-20 14:54:54.420 665-14986/? I/audio_hw_primary: do_in_standby standby: 1, in_device: 0
06-20 14:54:54.422 1290-1290/? I/AudioSystem-JNI: listAudioPorts AudioSystem::listAudioPorts numPorts 8 generation 346 generation1 346
06-20 14:54:54.425 14575-14575/com.ionicframework.ionicdemo357908 I/chromium: [INFO:CONSOLE(57542)] "*********************************************************************", source: file:///android_asset/www/build/main.js (57542)
06-20 14:54:54.438 14575-14575/com.ionicframework.ionicdemo357908 I/chromium: [INFO:CONSOLE(57544)] "Using video device: camera2 1, facing front|fe8a15ce-6eb5-460b-a680-cb458e156daa|video|true", source: file:///android_asset/www/build/main.js (57544)
06-20 14:54:54.440 486-486/? I/CameraService: CameraService::connectDevice E (pid 14575 "com.ionicframework.ionicdemo357908", id 1)
06-20 14:54:54.440 486-486/? I/CameraService: CameraService::connect call (PID -1 "com.ionicframework.ionicdemo357908", camera ID 1) for HAL version default and Camera API version 206-20 14:54:54.441 486-486/? I/CameraService: validateConnectLocked(), client user id: 10140
06-20 14:54:54.442 14575-14575/com.ionicframework.ionicdemo357908 I/chromium: [INFO:CONSOLE(57568)] "*********************************************************************", source: file:///android_asset/www/build/main.js (57568)
06-20 14:54:54.448 486-486/? I/CameraService: onTorchStatusChangedLocked: Torch status changed for cameraId=0, newStatus=0
06-20 14:54:54.451 486-486/? I/Camera2ClientBase: Camera 1: Opened. Client: com.ionicframework.ionicdemo357908 (PID 14575, UID 10140)
06-20 14:54:54.451 486-486/? I/Camera3-Device: Camera3Device() FPGA is 0
06-20 14:54:54.451 486-486/? I/HwPerformEx: HwPerformEx(0xf44b77e0), camera 1.
06-20 14:54:54.451 486-486/? I/CameraDeviceClient: CameraDeviceClient 1: Opened
06-20 14:54:54.455 486-486/? I/Camera3-Device: initialize: Initializing device for camera 1
06-20 14:54:54.458 484-834/? I/ImagingSystem: bool hw::CPraguePipeline::powerUp() enter.
06-20 14:54:54.458 484-834/? I/ImagingSystem: #Camera# [727559471]> ImagingSystem_powerUp
06-20 14:54:54.458 484-834/? I/HispManager: #Camera# [0]> CHISPManager::powerUp
06-20 14:54:54.473 486-486/? I/HwPerformEx: setInfo(0xf44b77e0)
06-20 14:54:54.474 486-486/? I/CameraService: nfc polling : needSendMsg=
06-20 14:54:54.514 486-865/? I/CameraDeviceClient: createDefaultRequest (templateId = 0x1)
06-20 14:54:54.520 486-9729/? I/CameraDeviceClient: waitUntilIdle
06-20 14:54:54.520 486-9729/? I/CameraDeviceClient: waitUntilIdle Done
06-20 14:54:54.521 486-486/? I/CameraDeviceClient: createStream
06-20 14:54:54.522 665-665/? I/APM_AudioPolicyManager: getOutput() device 2, stream 3, samplingRate 0, format 0, channelMask 3, flags 0
06-20 14:54:54.522 665-665/? I/APM_AudioPolicyManager: getOutputForDevice() returns output 13
06-20 14:54:54.522 486-486/? I/Camera3-Device: Camera 1: Creating new stream 0: 640 x 480, format 0x23, dataspace 146931712 rotation 0, consumer: 0xf448d100
06-20 14:54:54.522 486-486/? I/Camera3-Stream: Camera3Stream(), create stream 0xf2f7cb00, 640 x 480, format: 0x23
06-20 14:54:54.522 665-1446/? I/APM_AudioPolicyManager: getOutput() device 2, stream 3, samplingRate 0, format 0, channelMask 3, flags 0
06-20 14:54:54.522 665-1446/? I/APM_AudioPolicyManager: getOutputForDevice() returns output 13
06-20 14:54:54.523 665-1445/? I/APM_AudioPolicyManager: getOutput() device 2, stream 3, samplingRate 0, format 0, channelMask 3, flags 0
06-20 14:54:54.523 665-1445/? I/APM_AudioPolicyManager: getOutputForDevice() returns output 13
06-20 14:54:54.524 665-782/? W/HuaweiAudioFlinger: soundtrigger is now disable or not support, pls enable it first from setting
06-20 14:54:54.524 665-782/? I/APM_AudioPolicyManager: startInput() input 542
06-20 14:54:54.524 665-782/? I/APM_AudioPolicyManager: getNewInputDevice() selected device 0x80000080
06-20 14:54:54.524 665-782/? I/APM_AudioPolicyManager: setInputDevice() input 542 device 80000080 force 1
06-20 14:54:54.525 665-14986/? I/dsp_common: dsp_common_set_source:source = 7
06-20 14:54:54.525 665-782/? I/APM_AudioPolicyManager: setInputDevice() createAudioPatch returned 0 patchHandle 1468
06-20 14:54:54.527 1871-1948/? I/DeviceMonitor: Add AudioIn uid:10140 pid:-2
06-20 14:54:54.527 1290-1290/? I/AudioSystem-JNI: listAudioPorts AudioSystem::listAudioPorts numPorts 8 generation 347 generation1 347
06-20 14:54:54.527 486-865/? I/Camera3-OutputStream: configureQueueLocked(), connect stream 0 to native window, for stream: 0xf2f7cb00
06-20 14:54:54.528 486-865/? I/Camera3-OutputStream: configureQueueLocked: Consumer wants 2 buffers, HAL wants 7, for stream: 0xf2f7cb00, type: 0x23
06-20 14:54:54.528 484-834/? I/HispManager: #Camera# [0]< CHISPManager::powerUp
06-20 14:54:54.528 486-865/? I/Camera3-Device: configureStreamsLocked: Camera 1: Stream configuration complete
06-20 14:54:54.529 1871-1948/? I/PGServer: report state:1 event type:1 pid:14575 uid:10140 pkg:null to pid: 1290
06-20 14:54:54.535 665-14986/? I/audio_hw_primary: start_input_stream: in_device = 0
06-20 14:54:54.536 665-14986/? I/audio_hw_primary: select_devices++ mode[3]
06-20 14:54:54.536 665-14986/? I/audio_hw_primary: select_devices() devices 0x2 input src 7 output route none input route communication-handfree-mic
06-20 14:54:54.536 665-14986/? I/dsp_common: dsp_common_control_algo:set device = 0
06-20 14:54:54.539 486-14992/? I/Camera3-Status: Camera device is now active
06-20 14:54:54.540 465-506/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x727da48d00): interfmt=23, stride=640, size=462848, usage=0x2420003
06-20 14:54:54.541 484-834/? I/ImagingSystem: bool hw::CPraguePipeline::powerUp()(93). power isp and sensor success! 
06-20 14:54:54.543 465-747/? I/gralloc: alloc_device_free:586: Free handle(0x727da48d00)
06-20 14:54:54.551 486-14993/? I/ImagingSystemUtils: Data Table(name: stream_param, entry count: 4, total size: 200)
06-20 14:54:54.551 486-14993/? I/ImagingSystemUtils: used items: 
06-20 14:54:54.551 486-14993/? I/ImagingSystemUtils: unused items: 
06-20 14:54:54.551 486-14993/? I/ImagingSystemUtils: 0x1: id(1), size(4), dimension(1). 
06-20 14:54:54.551 486-14993/? I/ImagingSystemUtils: 0x9: id(9), size(4), dimension(1). 
06-20 14:54:54.551 486-14993/? I/ImagingSystemUtils: 0x88: id(136), size(4), dimension(1). 
06-20 14:54:54.551 486-14993/? I/ImagingSystemUtils: 0x9999: id(39321), size(4), dimension(1). 
06-20 14:54:54.552 486-14993/? I/ImagingSystemUtils: Data Table(name: stream_param, entry count: 4, total size: 200)
06-20 14:54:54.552 486-14993/? I/ImagingSystemUtils: used items: 
06-20 14:54:54.552 486-14993/? I/ImagingSystemUtils: unused items: 
06-20 14:54:54.552 486-14993/? I/ImagingSystemUtils: 0x1: id(1), size(4), dimension(1). 
06-20 14:54:54.553 486-14993/? I/ImagingSystemUtils: 0x9: id(9), size(4), dimension(1). 
06-20 14:54:54.553 486-14993/? I/ImagingSystemUtils: 0x88: id(136), size(4), dimension(1). 
06-20 14:54:54.553 486-14993/? I/ImagingSystemUtils: 0x9999: id(39321), size(4), dimension(1). 
06-20 14:54:54.562 465-747/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x727da48d00): interfmt=23, stride=640, size=462848, usage=0x2420003
06-20 14:54:54.564 484-834/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8c440400): interfmt=10a, stride=69206016, size=69206016, usage=0x2420000
06-20 14:54:54.566 465-504/? I/gralloc: alloc_device_free:586: Free handle(0x727da48d00)
06-20 14:54:54.569 484-834/? I/HispSensorController: #Camera# [727625728]> Acquire_Camera
06-20 14:54:54.570 665-14986/? I/dsp_common: dsp_common_control_algo:set device = 0
06-20 14:54:54.571 665-14986/? I/audio_hw_primary: select_devices--
06-20 14:54:54.571 665-14986/? I/audio_hw_primary: start_input_stream OK. rate : 48000, period_size : 960, channel : 2
06-20 14:54:54.571 665-14986/? I/dsp_common: dsp_common_set_source:source = 7
06-20 14:54:54.571 465-4504/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7282846700): interfmt=23, stride=640, size=462848, usage=0x2420003
06-20 14:54:54.572 465-506/? I/gralloc: alloc_device_free:586: Free handle(0x7282846700)
06-20 14:54:54.573 484-834/? I/HispSensorController: #Camera# [727625728]< Acquire_Camera
06-20 14:54:54.573 484-834/? I/ImagingSystem: bool hw::CPraguePipeline::powerUp()(104). open camera success! 
06-20 14:54:54.573 484-834/? I/ImagingSystem: #Camera# [727559471]< ImagingSystem_powerUp
06-20 14:54:54.574 484-834/? I/HwaStatInfo: [383f428_64I] enter initialize()
06-20 14:54:54.574 484-834/? I/DLibLoader: [383f428_64I] enter DLibLoader(), soName=libSmartAE.so
                                           
                                           [ 06-20 14:54:54.575   484:  834 I/         ]
                                           [383f428_64I] IspEnhncAlgoIpp:enter IspEnhncAlgoIpp() struct
06-20 14:54:54.576 484-834/? I/ImagingSystem: #Camera# [727629271]> 1_startStreaming
06-20 14:54:54.576 484-834/? I/PpAlgo: [HWA_CAM3]prepare4StartStreaming() sensor index 0,0, 0,0
06-20 14:54:54.576 484-834/? I/AlgoFilterManager: [HWA_CAM3]KEY_CA_CAM3 takeFilter HAL_STREAM_TINY
06-20 14:54:54.576 484-834/? I/AlgoFilterManager: [HWA_CAM3]KEY_CA_CAM3 takeFilter HAL_STREAM_PREVIEW
06-20 14:54:54.579 465-747/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7282823e00): interfmt=23, stride=640, size=462848, usage=0x2420003
06-20 14:54:54.580 465-1502/? I/gralloc: alloc_device_free:586: Free handle(0x7282823e00)
06-20 14:54:54.587 484-834/? E/HISPMsgController: virtual TRetCode hw::CHISPMsgController::registerListener(hw::IMsgListener *): It has registerListener Listener already !
06-20 14:54:54.589 484-834/? I/ImagingSystem: virtual TRetCode hw::CFilterBase::start()(756): (stream.sink) instance[0x7d830e4000]. 
06-20 14:54:54.589 484-834/? I/ImagingSystem: virtual TRetCode hw::CFilterBase::start()(756): (algo.ipp) instance[0x7d8f314800]. 
06-20 14:54:54.589 465-1502/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7282823e00): interfmt=23, stride=640, size=462848, usage=0x2420003
06-20 14:54:54.589 484-834/? I/ImagingSystem: virtual TRetCode hw::CFilterBase::start()(756): (algo.ipp) instance[0x7d8f316000]. 
06-20 14:54:54.589 465-4504/? I/gralloc: alloc_device_free:586: Free handle(0x7282823e00)
06-20 14:54:54.589 484-834/? I/ImagingSystem: virtual TRetCode hw::CFilterBase::start()(756): (HISP110Filter) instance[0x7d8f2c2980]. 
06-20 14:54:54.590 484-15004/? I/ImagingSystem: #Camera# [727635008]> doAllocate_alloc_Count(8)_WxH(640x480)
06-20 14:54:54.590 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8f371a00): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.591 484-15006/? I/ImagingSystem: #Camera# [727636166]> doAllocate_alloc_Count(6)_WxH(960x720)
06-20 14:54:54.591 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8f371c00): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.591 484-15006/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8f371e00): interfmt=11, stride=960, size=1040384, usage=0x2400003
06-20 14:54:54.591 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309b200): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.591 484-15008/? I/ImagingSystem: #Camera# [727637984]> doAllocate_alloc_Count(8)_WxH(614400x1)
06-20 14:54:54.591 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309b400): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.591 484-15006/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309b000): interfmt=11, stride=960, size=1040384, usage=0x2400003
06-20 14:54:54.591 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309ba00): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.591 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309b600): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.592 484-15006/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309be00): interfmt=11, stride=960, size=1040384, usage=0x2400003
06-20 14:54:54.592 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309b800): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.592 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d8309bc00): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.592 484-15006/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9000): interfmt=11, stride=960, size=1040384, usage=0x2400003
06-20 14:54:54.592 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9200): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.592 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9600): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.593 484-15004/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9800): interfmt=23, stride=640, size=462848, usage=0x2400003
06-20 14:54:54.593 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9400): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.593 484-15004/? I/ImagingSystem: #Camera# [727635008]< doAllocate_alloc_Count(8)_WxH(640x480)
06-20 14:54:54.593 484-15006/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9a00): interfmt=11, stride=960, size=1040384, usage=0x2400003
06-20 14:54:54.593 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9e00): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.593 484-834/? I/ImagingSystem: virtual TRetCode hw::CFilterBase::start()(756): (sensor) instance[0x7d8f2bb658]. 
06-20 14:54:54.593 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d83196000): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.593 465-506/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7282846700): interfmt=23, stride=640, size=462848, usage=0x2420003
06-20 14:54:54.593 484-15006/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d830a9c00): interfmt=11, stride=960, size=1040384, usage=0x2400003
06-20 14:54:54.593 484-15006/? I/ImagingSystem: #Camera# [727636166]< doAllocate_alloc_Count(6)_WxH(960x720)
06-20 14:54:54.594 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d83196200): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.594 484-15008/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x7d83196400): interfmt=10a, stride=614400, size=614400, usage=0x2400003
06-20 14:54:54.594 484-15008/? I/ImagingSystem: #Camera# [727637984]< doAllocate_alloc_Count(8)_WxH(614400x1)
06-20 14:54:54.594 465-504/? I/gralloc: alloc_device_free:586: Free handle(0x7282846700)
06-20 14:54:54.599 465-1502/? I/gralloc: alloc_device_alloc:564: Alloc handle(0x728280f700): interfmt=23, stride=640, size=462848, usage=0x2420003
06-20 14:54:54.599 465-4504/? I/gralloc: alloc_device_free:586: Free handle(0x728280f700)
06-20 14:54:54.606 1290-1920/? E/SensorHub: batch called handle:0 sample_ns:200000000 latency_ns:0
06-20 14:54:54.606 665-1445/? I/APM_AudioPolicyManager: getOutput() device 2, stream 3, samplingRate 0, format 0, channelMask 3, flags 0
06-20 14:54:54.606 665-1445/? I/APM_AudioPolicyManager: getOutputForDevice() returns output 13
06-20 14:54:54.607 1290-1301/? E/SensorHub: batch called handle:7 sample_ns:200000000 latency_ns:0
06-20 14:54:54.607 665-782/? I/APM_AudioPolicyManager: getOutput() device 2, stream 3, samplingRate 0, format 0, channelMask 3, flags 0
06-20 14:54:54.607 665-782/? I/APM_AudioPolicyManager: getOutputForDevice() returns output 13
06-20 14:54:54.608 1290-1892/? E/SensorHub: batch called handle:5 sample_ns:200000000 latency_ns:0
06-20 14:54:54.608 665-15259/? I/APM_AudioPolicyManager: getOutput() device 2, stream 3, samplingRate 0, format 0, channelMask 3, flags 0
06-20 14:54:54.608 665-15259/? I/APM_AudioPolicyManager: getOutputForDevice() returns output 13
                                                         
                                                         [ 06-20 14:54:54.641 14575:14984 I/         ]
                                                         counter >= 5, send pause/stop state to pg, counter: 0
06-20 14:54:54.641 484-657/? E/HispManager: TRetCode hw::CHISPManager::calculateCropRegionByProcessor(uint32_t, const int32_t *, std::vector<crop_region_info_t> &): error crop region: [0,0,3968,2976].
06-20 14:54:54.641 484-657/? E/HispManager: virtual void hw::CHISPManager::notifyCropRegion(int32_t):get find a proper crop region after manager calculate!
06-20 14:54:54.641 484-834/? E/HispManager: TRetCode hw::CHISPManager::calculateCropRegionByProcessor(uint32_t, const int32_t *, std::vector<crop_region_info_t> &): error crop region: [0,0,3968,2976].
06-20 14:54:54.641 484-834/? E/ImagingSystem: TRetCode hw::CHISPFeatureStreamingConfig::sendCropReginCmd(const int32_t *, const uint32_t):cant find a proper crop region after manager calculate!
06-20 14:54:54.641 484-834/? I/ImagingSystem: #Camera# [727629271]< 1_startStreaming
06-20 14:54:54.642 1871-1948/? W/AudioState: audio stop and not found session about sessionId: 0
06-20 14:54:54.693 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
                                                
                                                [ 06-20 14:54:54.693   484:15008 E/         ]
                                                void hw::COutMetaSplitBase::dump_thermal_meter(monitor_t): open  failed!
06-20 14:54:54.694 484-15006/? I/DLibLoader: [383f428_64I] enter loadSo(), soName=NULL, mSoName=libSmartAE.so
06-20 14:54:54.694 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.695 484-15006/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=initSmartAEAlgo
06-20 14:54:54.695 484-15006/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=setFrameExpo
06-20 14:54:54.695 484-15006/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=deinitSmartAEAlgo
06-20 14:54:54.695 484-15006/? I/DLibLoader: [383f428_64I] CAMERA3_exit loadSo(). successful.
06-20 14:54:54.696 484-15006/? I/SmartAE: [SmartAE_version:V1.5.01]  [compile time:Nov  1 2016,11:14:03]
06-20 14:54:54.699 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.699 484-15006/? I/DLibLoader: [383f428_64I] enter DLibLoader(), soName=libcontrastCal.so
06-20 14:54:54.699 484-15006/? I/DLibLoader: [383f428_64I] enter loadSo(), soName=NULL, mSoName=libcontrastCal.so
06-20 14:54:54.700 484-15002/? E/HwaStatInfo: [383f428_64E] getDualHidden() failed
06-20 14:54:54.700 484-15001/? I/GyroGatherThread: [383f428_64I] enter GyroGatherThread()
06-20 14:54:54.704 484-15012/? I/SensorGatherThread: [383f428_64I] Thread start [SensorGatherThread]
06-20 14:54:54.704 484-15001/? I/DeviceBaseImpl: [HWA_CAM3]getBinningMap(), Binning[0] Supported status = 0
06-20 14:54:54.704 484-15001/? I/Misc____: [383f428_64I] onProcessFrame BinningMap[0 0 0 0] flow[0]
06-20 14:54:54.704 484-15001/? I/DeviceBaseImpl: [HWA_CAM3]getBinningMap(), Binning[1] Supported status = 0
06-20 14:54:54.704 484-15001/? I/Misc____: [383f428_64I] onProcessFrame BinningMap[0 0 0 0] flow[1]
06-20 14:54:54.704 484-15001/? E/DeviceBaseImpl: [HWA_CAM3]getAFOTP() get vcm otp failed! 
06-20 14:54:54.704 484-15001/? E/DeviceBaseImpl: [HWA_CAM3]getOtp() get SENSOR_OTP_AF otp failed! 
06-20 14:54:54.705 484-15013/? I/GyroGatherThread: [383f428_64I] Thread start [GyroGatherThread]
06-20 14:54:54.706 484-15000/? I/FaceDetection: [383f428_64I] omron_FD, cameraId:1, imageSize:960,720
06-20 14:54:54.706 484-15000/? I/FaceDetectionAlgoProxy: [383f428_64I] omron_FD, setDtFaceSizeRange:minFaceSize, 70, maxFaceSize, 450
06-20 14:54:54.706 484-15000/? I/FaceDetectionAlgoProxy: [383f428_64I] omron_FD,setDtThreshold to:trackingThreshold, 500, nonTrackingThreshold, 500
06-20 14:54:54.706 484-15006/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=contrast_cal_init
06-20 14:54:54.706 484-15000/? I/FaceDetectionAlgoProxy: [383f428_64I] FaceDetectionAlgoProxy [faceDetection] processBuf=0x7d8486f000,w(960)h(720),
06-20 14:54:54.706 484-15006/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=contrast_cal_process
06-20 14:54:54.706 484-15006/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=contrast_cal_uninit
06-20 14:54:54.706 484-15006/? I/DLibLoader: [383f428_64I] CAMERA3_exit loadSo(). successful.
06-20 14:54:54.706 484-15006/? E/DeviceBaseImpl: [HWA_CAM3]getAFOTP() get vcm otp failed! 
06-20 14:54:54.706 484-15006/? I/contrastCal: [smartAf]Version 0.0.4, 64bits
06-20 14:54:54.706 484-15006/? I/contrastCal: [smartAf]contrast_cal_init
06-20 14:54:54.706 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 1, focus_stage = 0
06-20 14:54:54.706 484-15003/? I/DLibLoader: [383f428_64I] enter DLibLoader(), soName=libispenhnc.so
                                             
                                             [ 06-20 14:54:54.706   484:  827 I/         ]
                                             HwCamMem checkMemPool dumpMemInfo CHECK_INTERVAL:5000 ms, passTime:361980 ms
06-20 14:54:54.706 484-15003/? I/DLibLoader: [383f428_64I] enter loadSo(), soName=NULL, mSoName=libispenhnc.so
06-20 14:54:54.707 484-834/? I/HwaPPExecuter: [int android::HwaPPExecuter::checkPpAlgoMaxMem(int *)]type=1,mode=1
06-20 14:54:54.707 484-834/? I/HwaPPExecuter: [int android::HwaPPExecuter::checkPpAlgoMaxMem(int *)] PictureSize = 0, IspOutSize=0
06-20 14:54:54.707 484-834/? I/HwaPPExecuter: [int android::HwaPPExecuter::checkPpAlgoMaxMem(int *)]maxM=0
06-20 14:54:54.708 484-15003/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=createIspEnhncAlgo
06-20 14:54:54.708 484-15003/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=destroyIspEnhncAlgo
06-20 14:54:54.708 484-15003/? I/DLibLoader: [383f428_64I] enter loadFun(), funName=onIspEnhncProcess
06-20 14:54:54.708 484-15003/? I/DLibLoader: [383f428_64I] CAMERA3_exit loadSo(). successful.
06-20 14:54:54.710 484-484/? I/ImagingServer: int hw::CCfgServer::run() nCap=0x140034 nLowCap=52 nHighCap=20 nPss=113596 m_cMeta=52
06-20 14:54:54.725 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.726 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.726 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.726 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:2,mStableFrameBegin:0,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:333,ISO:50,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:0,isDiffYMean:0,mStable:0,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:54.727 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 2, focus_stage = 0
06-20 14:54:54.737 1290-11317/? E/SensorHub: batch called handle:2 sample_ns:200000000 latency_ns:0
06-20 14:54:54.754 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.756 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.756 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.756 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 3, focus_stage = 0
06-20 14:54:54.795 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.796 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.796 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.796 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:4,mStableFrameBegin:0,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:228,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:0,isDiffYMean:0,mStable:0,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:54.796 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 4, focus_stage = 0
                                              
                                              [ 06-20 14:54:54.801 14575:14984 I/         ]
                                              send start state to pg
06-20 14:54:54.824 1871-1948/? E/AudioState: audio start and not found session about sessionId:-458758
06-20 14:54:54.835 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.836 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.836 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.836 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 5, focus_stage = 0
06-20 14:54:54.874 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.875 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.876 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.877 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:6,mStableFrameBegin:0,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:230,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:161,isDiffYMean:1,mStable:0,mImageStable:0,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:54.877 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 6, focus_stage = 0
06-20 14:54:54.914 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.915 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.915 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.916 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 7, focus_stage = 0
06-20 14:54:54.954 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.955 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.955 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.956 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:8,mStableFrameBegin:8,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:223,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:163,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:54.956 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 8, focus_stage = 0
06-20 14:54:54.984 1871-1948/? I/ScenarioAction: new ScenarioAction sPoolSize: 0
06-20 14:54:54.993 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:54.994 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:54.995 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:54.996 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 9, focus_stage = 0
06-20 14:54:55.033 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.035 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.035 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.038 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:10,mStableFrameBegin:8,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:209,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:169,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.038 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 10, focus_stage = 0
06-20 14:54:55.073 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.074 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.074 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.076 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 11, focus_stage = 0
06-20 14:54:55.112 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.114 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.117 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.118 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:12,mStableFrameBegin:8,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:182,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:169,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.118 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 12, focus_stage = 0
06-20 14:54:55.152 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.153 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.153 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.155 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 13, focus_stage = 0
06-20 14:54:55.192 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.193 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.193 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.194 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:14,mStableFrameBegin:8,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:146,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:159,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.195 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 14, focus_stage = 0
06-20 14:54:55.207 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:55.207 14603-14629/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:55.231 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.233 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.233 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.234 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 15, focus_stage = 0
06-20 14:54:55.249 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:55.249 27570-27584/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:55.271 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.273 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.273 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.274 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:16,mStableFrameBegin:8,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:115,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:144,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.274 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 16, focus_stage = 0
06-20 14:54:55.311 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.312 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.312 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.314 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 17, focus_stage = 0
06-20 14:54:55.350 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.352 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.352 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.353 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:18,mStableFrameBegin:8,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:89,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:128,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.353 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 18, focus_stage = 0
06-20 14:54:55.362 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:55.362 27718-27731/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:55.390 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.392 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.392 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.393 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 19, focus_stage = 0
06-20 14:54:55.430 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.431 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.432 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.433 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:20,mStableFrameBegin:8,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:50,ISO:98,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:102,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.433 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 20, focus_stage = 0
06-20 14:54:55.470 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.471 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.472 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.473 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 21, focus_stage = 0
06-20 14:54:55.502 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:55.502 29402-29416/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:55.509 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.511 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.511 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.512 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:22,mStableFrameBegin:21,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:72,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:110,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.512 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 22, focus_stage = 0
06-20 14:54:55.526 1290-1290/? I/MQoS: onSignal: mSubId=0,currDataSubID=0
06-20 14:54:55.526 1290-1290/? I/MQoS: received cell-signal:5
06-20 14:54:55.526 1290-1599/? I/SendBroadcastPermission: action:android.intent.action.SIG_STR, mPermissionType:0
06-20 14:54:55.530 1521-1607/? I/HwMobileSignalController: subId:0 phoneType:2 networktype:6 targetClass:2 masterLevel:5 slaveLevel:5
06-20 14:54:55.549 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.550 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.550 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.551 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 23, focus_stage = 0
06-20 14:54:55.588 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.590 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.590 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.591 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:24,mStableFrameBegin:21,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:74,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:113,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.591 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 24, focus_stage = 0
06-20 14:54:55.606 484-14988/? E/ImagingServer: void hw::CCfgPipeline::onHALSuspend(): No HAL requests for a long time!
06-20 14:54:55.628 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.630 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.630 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.632 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 25, focus_stage = 0
06-20 14:54:55.668 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.670 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.670 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.672 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:26,mStableFrameBegin:21,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:77,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:116,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.672 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 26, focus_stage = 0
06-20 14:54:55.708 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.709 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.710 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.712 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 27, focus_stage = 0
06-20 14:54:55.747 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.749 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.749 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.751 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:28,mStableFrameBegin:21,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:83,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:122,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.752 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 28, focus_stage = 0
06-20 14:54:55.787 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.789 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.789 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.793 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 29, focus_stage = 0
06-20 14:54:55.827 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.829 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.830 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.833 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:30,mStableFrameBegin:21,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:89,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:129,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.834 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 30, focus_stage = 0
06-20 14:54:55.866 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.868 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.868 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.871 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 31, focus_stage = 0
06-20 14:54:55.906 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.908 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.908 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.910 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:32,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:93,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:134,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.910 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 32, focus_stage = 0
06-20 14:54:55.928 482-482/? E/Thermal-daemon: [ap] temp_new :37  temp_old :36
06-20 14:54:55.928 482-482/? E/ThermalBinder: mThermalService is NULL!
06-20 14:54:55.928 482-482/? E/Thermal-daemon: Report temperature: [ap] temp :37  report_threshold:1
06-20 14:54:55.946 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.948 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.949 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.952 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 33, focus_stage = 0
06-20 14:54:55.986 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:55.988 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:55.988 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:55.992 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:34,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:97,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:138,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:55.993 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 34, focus_stage = 0
06-20 14:54:56.026 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.028 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.029 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.032 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 35, focus_stage = 0
06-20 14:54:56.065 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.068 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.068 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.072 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:36,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:100,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:141,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.072 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 36, focus_stage = 0
06-20 14:54:56.105 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.107 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.109 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.113 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 37, focus_stage = 0
06-20 14:54:56.128 1290-1290/? I/TrafficMonitor: update:rxPkts:8,txPkts:1,rxBytes:1052,txBytes:60
06-20 14:54:56.128 1290-1290/? I/TrafficMonitor: start expired. level:-1
06-20 14:54:56.128 1290-1290/? I/TrafficMonitor: gettimer:interval=2000
06-20 14:54:56.145 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.147 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.148 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.151 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:38,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:102,isAEStable:0,aeLock:0,mIsSetEVComp:0,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.151 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 38, focus_stage = 0
06-20 14:54:56.184 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.186 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.186 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.188 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 39, focus_stage = 0
06-20 14:54:56.208 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:56.208 14603-14629/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:56.223 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.224 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.224 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.226 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:40,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:0,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.226 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 40, focus_stage = 0
06-20 14:54:56.250 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:56.250 27570-27584/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:56.263 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.264 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.264 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.266 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 41, focus_stage = 0
06-20 14:54:56.269 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[0,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.302 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.304 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.304 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.305 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:42,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.306 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 42, focus_stage = 0
06-20 14:54:56.310 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.342 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.344 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.345 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.349 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 43, focus_stage = 0
06-20 14:54:56.349 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.362 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:56.362 27718-27731/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:56.382 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.384 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.384 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.385 665-687/? I/AudioFlinger: setStreamVolume thread=0xe9e83040; stream=4; value=0.595663
06-20 14:54:56.388 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:44,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.388 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 44, focus_stage = 0
06-20 14:54:56.422 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.424 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.430 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.433 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 45, focus_stage = 0
06-20 14:54:56.443 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.461 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.463 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.464 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.467 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:46,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.468 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 46, focus_stage = 0
06-20 14:54:56.477 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.501 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.503 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:56.503 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.503 29402-29416/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:56.504 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.509 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 47, focus_stage = 0
06-20 14:54:56.509 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.541 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.543 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.543 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.547 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:48,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.548 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 48, focus_stage = 0
06-20 14:54:56.580 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.582 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.582 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.584 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 49, focus_stage = 0
06-20 14:54:56.590 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.608 484-14988/? E/ImagingServer: void hw::CCfgPipeline::onHALSuspend(): No HAL requests for a long time!
06-20 14:54:56.620 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.622 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.622 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.624 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:50,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.624 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 50, focus_stage = 0
06-20 14:54:56.630 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.660 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.662 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.663 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.666 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 51, focus_stage = 0
06-20 14:54:56.667 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.700 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.702 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.703 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.706 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:52,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.707 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 52, focus_stage = 0
06-20 14:54:56.739 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.741 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.742 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.746 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 53, focus_stage = 0
06-20 14:54:56.755 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.779 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.781 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.789 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.792 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:54,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.793 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 54, focus_stage = 0
06-20 14:54:56.802 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.818 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.821 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.821 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.824 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 55, focus_stage = 0
06-20 14:54:56.825 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.858 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.860 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.860 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.864 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:56,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.864 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 56, focus_stage = 0
06-20 14:54:56.898 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.900 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.900 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.904 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 57, focus_stage = 0
06-20 14:54:56.914 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:56.938 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.940 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.940 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.943 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:58,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:56.944 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 58, focus_stage = 0
06-20 14:54:56.977 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:56.979 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:56.979 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:56.983 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 59, focus_stage = 0
06-20 14:54:56.992 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.017 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.019 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.019 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.023 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:60,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.023 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 60, focus_stage = 0
06-20 14:54:57.057 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.059 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.059 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.063 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 61, focus_stage = 0
06-20 14:54:57.070 1010-1027/? I/OAM: [check_file_size:417]/data/log/wifi/wifi_log_1 log file beyond size=10240Byte, creat new file
06-20 14:54:57.070 1010-1027/? I/OAM: [rename_old_file:122]rename_old_file
06-20 14:54:57.073 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.096 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.098 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.099 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.103 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:62,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.103 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 62, focus_stage = 0
06-20 14:54:57.125 1290-1290/? I/TrafficMonitor: expired arrive. level:-1
06-20 14:54:57.125 1290-1290/? I/TrafficMonitor: during_ms:2002,period_ms:2000
06-20 14:54:57.125 1290-1290/? I/TrafficMonitor: count:963,rx_sum:8,tx_sum:1,rxBytes:1052,during_ms:2002,rx_speed:525.4745254745255,tx_speed:29.970029970029973,rto:8.0
06-20 14:54:57.136 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.138 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.138 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.142 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 63, focus_stage = 0
06-20 14:54:57.152 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.176 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.178 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.178 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.181 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:64,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.182 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 64, focus_stage = 0
06-20 14:54:57.192 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.215 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.217 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.218 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.222 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 65, focus_stage = 0
06-20 14:54:57.226 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.250 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:57.250 27570-27584/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:57.255 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.257 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.257 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.263 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:66,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.269 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 66, focus_stage = 0
06-20 14:54:57.294 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.296 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.296 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.298 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 67, focus_stage = 0
06-20 14:54:57.301 1290-1420/? E/WifiConfigManager: updateConfiguration freq=2417 BSSID=ec:22:80:73:11:26 RSSI=-52 "zjqunshuo-2"WPA_PSK
06-20 14:54:57.302 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.334 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.335 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.335 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.337 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:68,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.337 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 68, focus_stage = 0
06-20 14:54:57.341 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,1], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.374 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.375 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.375 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.377 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 69, focus_stage = 0
06-20 14:54:57.377 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,1], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.413 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.415 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.415 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.416 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:70,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.416 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 70, focus_stage = 0
06-20 14:54:57.453 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.454 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.454 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.456 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 71, focus_stage = 0
06-20 14:54:57.458 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:57.458 14603-14629/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:57.459 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,1], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.492 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.494 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.494 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.495 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:72,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.496 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 72, focus_stage = 0
06-20 14:54:57.504 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.504 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:57.504 29402-29416/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:57.533 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.535 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.535 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.540 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 73, focus_stage = 0
06-20 14:54:57.540 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.572 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.574 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.574 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.576 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:74,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.576 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 74, focus_stage = 0
06-20 14:54:57.609 484-14988/? E/ImagingServer: void hw::CCfgPipeline::onHALSuspend(): No HAL requests for a long time!
06-20 14:54:57.612 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.613 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:57.613 27718-27731/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:57.613 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.614 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.616 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 75, focus_stage = 0
06-20 14:54:57.622 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.652 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.653 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.653 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.655 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:76,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:144,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.656 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 76, focus_stage = 0
06-20 14:54:57.662 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.691 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.693 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.693 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.696 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 77, focus_stage = 0
06-20 14:54:57.696 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
                                              
                                              [ 06-20 14:54:57.711   484:  827 I/         ]
                                              getTotalMemoryFromDDRInfo, buffer = 0x401
                                              , len = 6
                                              
                                              [ 06-20 14:54:57.711   484:  827 I/         ]
                                              [getTotalMemoryFromDDRInfo] total memory =4194304KB
06-20 14:54:57.731 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.733 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.733 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.735 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:78,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:144,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.735 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 78, focus_stage = 0
06-20 14:54:57.737 1898-1898/? E/HW-JPEG-DEC: [HME_JPEG_DEC_Delete](3321): HME_JPEG_DEC_Delete: decoder_ctx=null
                                              
                                              
                                              [ 06-20 14:54:57.747   484:  827 I/         ]
                                              HwCamMem mempoolcfg void android::MTMemoryPool::dumpMemInfo() Free=1868060, Total=4194304, Pss=128997 mTimeOutCount=1
06-20 14:54:57.749 1290-1290/? E/hwintelligencewifi: onCellLocationChanged
06-20 14:54:57.751 1898-2678/? W/PhoneInterfaceManager: shouldBlockLocation running ...
06-20 14:54:57.751 1898-2678/? I/PhoneInterfaceManager: shouldBlockLocation  ret:false
06-20 14:54:57.753 1290-1486/? E/hwintelligencewifi: getCurrentCellid type type = PHONE_TYPE_CDMA
06-20 14:54:57.753 1290-1486/? E/hwintelligencewifi: getCurrentCellid type is PHONE_TYPE_CDMA
06-20 14:54:57.754 1290-1486/? E/hwintelligencewifi: getCurrentCellid PHONE_TYPE_CDMA cellidString = 141218150865
06-20 14:54:57.754 1290-1486/? E/hwintelligencewifi: updataApInfo cellid =141218150865
06-20 14:54:57.754 1290-1486/? E/hwintelligencewifi: addCurrentApInfo cellid =141218150865
06-20 14:54:57.754 1898-2319/? W/PhoneInterfaceManager: shouldBlockLocation running ...
06-20 14:54:57.755 1898-2319/? I/PhoneInterfaceManager: shouldBlockLocation  ret:false
06-20 14:54:57.755 1290-1486/? E/hwintelligencewifi: addCurrentApInfo info is already there
06-20 14:54:57.755 1290-1486/? W/hwintelligencewifi: updateBssidTimer time = 1497941697755
06-20 14:54:57.755 2509-2509/? I/SUPL20_LocMan: onCellLocationChanged network type:6
06-20 14:54:57.764 2509-2509/? I/SUPL20_LocMan: Phone type:CDMA
06-20 14:54:57.764 1898-1915/? W/PhoneInterfaceManager: shouldBlockLocation running ...
06-20 14:54:57.764 1898-1915/? I/PhoneInterfaceManager: shouldBlockLocation  ret:false
06-20 14:54:57.765 1290-1486/? E/hwintelligencewifi: inlineAddCurrentApInfo mInfos.size()=3
06-20 14:54:57.766 2509-2509/? I/SUPL20_LocMan: Network Op Mnc= 3 MCC = 460
06-20 14:54:57.766 2509-2509/? I/SUPL20_LocMan: cellInfo NetworkType:EVDO_A,6
06-20 14:54:57.766 2509-2820/? I/SUPL20_SPIMESLP-SENDING: m_bPacket.length 40
06-20 14:54:57.766 2509-2820/? I/SUPL20_SPIMESLP-SENDING: bBrokenPipe = false
06-20 14:54:57.771 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.772 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.772 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.774 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 79, focus_stage = 0
06-20 14:54:57.778 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:57.810 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.812 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.812 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.813 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:80,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:144,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.813 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 80, focus_stage = 0
06-20 14:54:57.850 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.851 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.852 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.853 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 81, focus_stage = 0
06-20 14:54:57.889 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.891 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.891 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.892 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:82,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.892 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 82, focus_stage = 0
06-20 14:54:57.929 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.931 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.931 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.933 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 83, focus_stage = 0
06-20 14:54:57.969 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:57.970 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:57.971 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:57.972 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:84,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:57.972 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 84, focus_stage = 0
06-20 14:54:58.008 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.010 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.010 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.012 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 85, focus_stage = 0
06-20 14:54:58.048 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.050 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.050 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.051 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:86,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.052 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 86, focus_stage = 0
06-20 14:54:58.061 1290-1478/? E/HwCHRWifiRSSIGroupSummery: updatArpSummery mRSSI:-50  HwCHRWifiRSSIGroup [rssi_index=4, rtt_tcp_packets=155, rtt_tcp_duration=8982, rtt_lan_duration=311, rtt_lan_failures=0, rtt_lan_succ=33, rtt_lan_max=16, rtt_lan_min=4,same_area_frequency=0,adjacent_area_frequency=0]
06-20 14:54:58.088 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.090 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.091 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.094 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 87, focus_stage = 0
06-20 14:54:58.128 1290-1478/? E/HwCHRWebMonitor: WebMonitor [mNetWorkIsSuck=0 mUIDIsSuck=]  WebSpeed [WEBSENDSEGS=0  WEBRESENDSEGS=0  WEBRECVSEGS=0  WEBERRSEGS=0  WEBOUTRSTS=0  WEBESTABLISRST=0  WEBRTTDURATION=0  WEBRTTSEGS=0  WEBSRTT=160  WEBSNDDUPACKS=0  SENDSEGS=1  RESENDSEGS=0  RECVSEGS=1  ERRSEGS=0  OUTRSTS=0  ESTABLISRST=0  RTTDURATION=0  RTTSEGS=0  SNDDUPACKS=0  suckTimes=0 recovage_times=0]
06-20 14:54:58.128 1290-1478/? E/HwCHRWifiRSSIGroupSummery: updateTcpSummery mRSSI:-50  HwCHRWifiRSSIGroup [rssi_index=4, rtt_tcp_packets=155, rtt_tcp_duration=8982, rtt_lan_duration=311, rtt_lan_failures=0, rtt_lan_succ=33, rtt_lan_max=16, rtt_lan_min=4,same_area_frequency=0,adjacent_area_frequency=0]
06-20 14:54:58.128 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.130 1290-1478/? E/HwCHRWebMonitor: HwCHRWifiPacketCnt [mTXGood=2, mTXbad=0, mRXGood=38] rssi=-50
06-20 14:54:58.130 1290-1290/? I/TrafficMonitor: update:rxPkts:13,txPkts:0,rxBytes:913,txBytes:0
06-20 14:54:58.131 1290-1290/? I/TrafficMonitor: start expired. level:-1
06-20 14:54:58.131 1290-1290/? I/TrafficMonitor: gettimer:interval=2000
06-20 14:54:58.132 1290-1478/? E/HwCHRWebMonitor: running processName=com.ionicframework.ionicdemo357908
06-20 14:54:58.132 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.132 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.134 1290-1478/? E/HwCHRWebMonitor: HwCHRWifiUIDWebSpeed [appName=com.ionicframework.ionicdemo357908 UID=10140  WEBSENDSEGS=0  WEBRESENDSEGS=0  WEBRECVSEGS=0  WEBERRSEGS=0  WEBOUTRSTS=0  WEBESTABLISRST=0  WEBRTTDURATION=0  WEBRTTSEGS=0  WEBSNDDUPACKS=0  suckTimes=0 recovage_times=0]
06-20 14:54:58.134 1290-1478/? E/HwCHRWebMonitor: item_uid= 10140 running_uid=10140 suckTime=0 mOnAppSuckTime=0 mFailReason=4
06-20 14:54:58.135 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:88,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.136 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 88, focus_stage = 0
06-20 14:54:58.143 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.167 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.169 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.169 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.172 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 89, focus_stage = 0
06-20 14:54:58.207 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.209 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.209 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.211 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:90,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.211 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 90, focus_stage = 0
06-20 14:54:58.217 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.247 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.248 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.248 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.251 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 91, focus_stage = 0
06-20 14:54:58.287 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.288 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.289 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.291 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:92,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.291 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 92, focus_stage = 0
06-20 14:54:58.297 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.326 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.328 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.328 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.331 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 93, focus_stage = 0
06-20 14:54:58.366 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.367 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.368 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.370 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:94,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.370 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 94, focus_stage = 0
06-20 14:54:58.376 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.405 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.407 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.408 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.410 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 95, focus_stage = 0
06-20 14:54:58.445 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.447 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.447 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.448 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:96,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.449 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 96, focus_stage = 0
06-20 14:54:58.454 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.458 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:58.458 14603-14629/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:58.485 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.486 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.486 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.488 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 97, focus_stage = 0
06-20 14:54:58.504 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:58.504 29402-29416/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:58.508 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:58.509 27570-27584/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:58.524 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.526 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.526 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.527 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:98,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.527 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 98, focus_stage = 0
06-20 14:54:58.531 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.564 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.565 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.566 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.567 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 99, focus_stage = 0
06-20 14:54:58.572 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.604 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.605 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.605 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.606 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:100,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.607 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 100, focus_stage = 0
06-20 14:54:58.607 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.610 484-14988/? E/ImagingServer: void hw::CCfgPipeline::onHALSuspend(): No HAL requests for a long time!
06-20 14:54:58.613 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:58.614 27718-27731/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:58.643 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.645 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.645 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.648 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 101, focus_stage = 0
06-20 14:54:58.683 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.685 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.685 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.687 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:102,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.688 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 102, focus_stage = 0
06-20 14:54:58.694 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,0], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.723 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.725 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.725 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.727 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 103, focus_stage = 0
06-20 14:54:58.733 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:2, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.763 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.764 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.764 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.766 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:104,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.767 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 104, focus_stage = 0
06-20 14:54:58.767 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:3, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.802 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.804 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.804 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.807 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 105, focus_stage = 0
06-20 14:54:58.842 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.844 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.844 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.846 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:106,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.846 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 106, focus_stage = 0
06-20 14:54:58.852 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.882 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.883 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.883 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.886 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 107, focus_stage = 0
06-20 14:54:58.921 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.923 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.924 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.927 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:108,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:58.927 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 108, focus_stage = 0
06-20 14:54:58.937 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:58.961 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:58.963 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:58.964 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:58.968 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 109, focus_stage = 0
06-20 14:54:59.001 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.002 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.003 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.005 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:110,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.005 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 110, focus_stage = 0
06-20 14:54:59.040 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.042 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.042 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.045 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 111, focus_stage = 0
06-20 14:54:59.080 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.082 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.083 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.086 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:112,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.087 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 112, focus_stage = 0
06-20 14:54:59.120 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.122 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.124 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.128 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 113, focus_stage = 0
06-20 14:54:59.160 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.162 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.162 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.166 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:114,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.166 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 114, focus_stage = 0
06-20 14:54:59.200 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.202 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.202 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.205 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 115, focus_stage = 0
06-20 14:54:59.239 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.241 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.242 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.244 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:116,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:142,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.245 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 116, focus_stage = 0
06-20 14:54:59.279 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.281 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.281 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.285 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 117, focus_stage = 0
06-20 14:54:59.295 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.318 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.320 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.321 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.325 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:118,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.325 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 118, focus_stage = 0
06-20 14:54:59.358 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.360 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.360 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.362 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 119, focus_stage = 0
06-20 14:54:59.370 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.397 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.399 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.399 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.401 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:120,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.402 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 120, focus_stage = 0
06-20 14:54:59.437 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.439 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.439 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.441 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 121, focus_stage = 0
06-20 14:54:59.447 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.459 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:59.459 14603-14629/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:59.477 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.479 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.479 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.481 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:122,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.481 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 122, focus_stage = 0
06-20 14:54:59.505 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:59.505 29402-29416/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:59.509 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:59.509 27570-27584/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:59.517 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.518 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.519 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.522 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 123, focus_stage = 0
06-20 14:54:59.531 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.556 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.558 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.558 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.560 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:124,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.560 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 124, focus_stage = 0
06-20 14:54:59.596 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.597 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.597 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.599 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 125, focus_stage = 0
06-20 14:54:59.603 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.611 484-14988/? E/ImagingServer: void hw::CCfgPipeline::onHALSuspend(): No HAL requests for a long time!
06-20 14:54:59.614 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:54:59.614 27718-27731/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:54:59.635 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.637 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.637 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.638 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:126,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.639 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 126, focus_stage = 0
06-20 14:54:59.675 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.677 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.677 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.680 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 127, focus_stage = 0
06-20 14:54:59.686 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.715 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.717 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.717 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.719 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:128,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.719 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 128, focus_stage = 0
06-20 14:54:59.754 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.756 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.756 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.759 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 129, focus_stage = 0
06-20 14:54:59.764 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.794 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.796 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.796 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.798 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:130,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.798 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 130, focus_stage = 0
06-20 14:54:59.834 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.836 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.836 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.838 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 131, focus_stage = 0
06-20 14:54:59.844 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.874 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.875 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.876 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.878 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:132,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.878 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 132, focus_stage = 0
06-20 14:54:59.913 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.915 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.915 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.917 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 133, focus_stage = 0
06-20 14:54:59.923 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:54:59.953 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.955 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.956 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.959 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:134,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:54:59.960 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 134, focus_stage = 0
06-20 14:54:59.993 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:54:59.995 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:54:59.995 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:54:59.999 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 135, focus_stage = 0
06-20 14:55:00.014 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.024 1521-1521/? W/HwKeyguardDragHelper: AnimationBlocked
06-20 14:55:00.033 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.034 1290-1876/? E/HsmCoreServiceImpl: onTransact in code is: 102
06-20 14:55:00.034 1290-1876/? I/MediaProcessHandler: processOp opType: 1, uid: 10007, pid: 12972
06-20 14:55:00.034 1290-1876/? W/MediaProcessHandler: remove target not exist, maybe the UI process: uid: 10007, pid: 12972
06-20 14:55:00.034 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.035 1521-1521/? I/EventCenter: EventCenter Get :android.intent.action.TIME_TICK
06-20 14:55:00.035 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.037 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:136,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.037 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 136, focus_stage = 0
06-20 14:55:00.042 1521-1521/? W/HwKeyguardDragHelper: AnimationBlocked
06-20 14:55:00.045 1521-1521/? W/ResourceType: Failure getting entry for 0xffffffff (t=254 e=65535) (error -2147483647)
06-20 14:55:00.046 1521-1521/? E/DateLunarView: mDateString is: 6月20日星期二
06-20 14:55:00.049 1521-1521/? W/ResourceType: Failure getting entry for 0xffffffff (t=254 e=65535) (error -2147483647)
06-20 14:55:00.050 1521-1521/? E/DateLunarView: mDateString is: 6月20日星期二
06-20 14:55:00.060 2538-2538/? I/HwLauncher: Model  onReceive intent=Intent { act=android.intent.action.TIME_TICK flg=0x50000014 (has extras) }
06-20 14:55:00.060 2538-2538/? I/HwLauncher: Model  onReceive user=UserHandle{0}
06-20 14:55:00.065 3345-3345/? I/Step_LSC: 20101315|logicalDealBroadcastEvent : Intent { act=android.intent.action.TIME_TICK flg=0x50000014 (has extras) }
06-20 14:55:00.066 3345-3389/? I/Step_LSC: 20101315| ## MSG_DEAL_SYSTEM_EVENT android.intent.action.TIME_TICK
06-20 14:55:00.072 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.074 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.074 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.075 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 137, focus_stage = 0
06-20 14:55:00.078 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.101 3345-3389/? I/Step_StandStepDataManager: 20101315|theDayChanged1497941700101==false,isClass3Step=false
06-20 14:55:00.112 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.113 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.114 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.115 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:138,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.115 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 138, focus_stage = 0
06-20 14:55:00.131 1290-1290/? I/TrafficMonitor: update:rxPkts:11,txPkts:2,rxBytes:1292,txBytes:112
06-20 14:55:00.131 1290-1290/? I/TrafficMonitor: start expired. level:-1
06-20 14:55:00.131 1290-1290/? I/TrafficMonitor: gettimer:interval=2000
06-20 14:55:00.134 2538-2538/? E/HW-JPEG-DEC: [HME_JPEG_DEC_Delete](3321): HME_JPEG_DEC_Delete: decoder_ctx=null
06-20 14:55:00.140 2538-2538/? E/HW-JPEG-DEC: [HME_JPEG_DEC_Delete](3321): HME_JPEG_DEC_Delete: decoder_ctx=null
06-20 14:55:00.144 2538-2538/? E/HW-JPEG-DEC: [HME_JPEG_DEC_Delete](3321): HME_JPEG_DEC_Delete: decoder_ctx=null
06-20 14:55:00.151 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.153 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.153 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.154 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 139, focus_stage = 0
06-20 14:55:00.157 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.191 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.193 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.193 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.194 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:140,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.194 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 140, focus_stage = 0
06-20 14:55:00.231 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.232 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.232 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.234 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 141, focus_stage = 0
06-20 14:55:00.237 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.270 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.272 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.272 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.273 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:142,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.273 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 142, focus_stage = 0
06-20 14:55:00.306 1290-1420/? E/WifiConfigManager: updateConfiguration freq=2417 BSSID=ec:22:80:73:11:26 RSSI=-50 "zjqunshuo-2"WPA_PSK
06-20 14:55:00.310 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.312 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.312 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.316 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 143, focus_stage = 0
06-20 14:55:00.325 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.350 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.352 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.353 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.356 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:144,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.356 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 144, focus_stage = 0
06-20 14:55:00.390 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.391 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ea90) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.391 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.395 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 145, focus_stage = 0
06-20 14:55:00.401 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.429 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.431 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23eb50) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.431 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.433 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:146,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.433 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 146, focus_stage = 0
06-20 14:55:00.457 486-622/? W/Watchdog: Timeout at int hw::Camera3Device::wait4RoomLocked()(2057): instance[0xf54db000] tid[14993]. 
                                         
                                         [ 06-20 14:55:00.457   486:  622 I/         ]
                                         handleMessage(29): instance[0xf4e05438].
06-20 14:55:00.458 498-2463/? E/iMonitor: [M/listen_server] dsm_camera_user has error (927003012) reported
06-20 14:55:00.458 498-2463/? E/iMonitor: [M/listen_server] action-0, cname-dsm_camera_user, info-1
06-20 14:55:00.459 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:55:00.459 14603-14629/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:55:00.467 498-2463/? E/iMonitor: [M/hisp_dump_error] get /data/log/isp-log/isp-log's information failed
06-20 14:55:00.467 498-2463/? E/iMonitor: [M/hisp_dump_error] dsm_camera_user finish dump 105 bytes
06-20 14:55:00.469 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.471 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ecd0) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.471 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.473 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 147, focus_stage = 0
06-20 14:55:00.479 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.482 498-2463/? E/iMonitor: [M/listen_server] Enter select
06-20 14:55:00.508 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.509 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:55:00.510 27570-27584/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:55:00.510 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23ed90) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.510 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.512 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:148,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.513 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 148, focus_stage = 0
06-20 14:55:00.548 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.550 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f150) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.550 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.552 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 149, focus_stage = 0
06-20 14:55:00.558 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.588 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.590 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f390) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.590 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.592 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:150,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.592 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 150, focus_stage = 0
06-20 14:55:00.612 484-14988/? E/ImagingServer: void hw::CCfgPipeline::onHALSuspend(): No HAL requests for a long time!
06-20 14:55:00.614 464-464/? E/ServiceManager: try to find service failed, not allowed access from isolated processes.
06-20 14:55:00.614 27718-27731/? I/ServiceManager: Waiting for service SurfaceFlinger...
06-20 14:55:00.628 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.629 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f450) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.629 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.632 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 151, focus_stage = 0
06-20 14:55:00.637 484-15003/? I/AntiBanding: onSubAlgoProcess(), cur_type;0, con_cnt:1, suc_cnt:0, det_rlt:0, band_num[3,2], yuv_info:[960, 720],[rw,rh,lt]=[1632,1224,23.506411]
06-20 14:55:00.667 484-15008/? I/ImagingSystem: virtual TRetCode hw::CIMX219Spec::getOTPTestResult(): OTP module_id=0xc8,vendor_id=0x11,checksum=0x1
06-20 14:55:00.669 484-15004/? E/ImagingGraphicStream: void hw::CImagingGraphicStream::bufferDone(hw::IBuffer *): the buffer(0x7d8f23f510) type is wrong!. instance[0x7d83197000] 
06-20 14:55:00.669 484-15006/? E/IppAlgoSmartAE: [383f428_64E] doSmartAEAlgo() failed to getLaserInfo
06-20 14:55:00.671 484-15006/? I/SmartAE: SmartAE_HISI,mFrameCnt:152,mStableFrameBegin:31,cameraID:1,isSaliencyOrChOver:0,SAE_EVComp:0,mSetEVComp:0,T:33,ISO:105,isAEStable:1,aeLock:0,mIsSetEVComp:1,mYTotalMean:143,isDiffYMean:0,mStable:1,mImageStable:1,msnapShotMode:1,faceNum:0,mTouched:0,faceTouchEVComp:0,isDualHDR:0,isHDR:0,hdrLevel:0,HDRFrameNum:0,HDREV:0 0 0 0,NL_EVComLevel:0,mCurrentScene:0
06-20 14:55:00.671 484-15006/? I/contrastCal: [smartAf]contrast_cal_process: giNumFlagDoAF = 152, focus_stage = 0
Reply all
Reply to author
Forward
0 new messages