google-ar / arcore-unity-sdk

ARCore SDK for Unity
https://developers.google.com/ar
Other
1.4k stars 402 forks source link

Instant Preview initalizes but does not transmit or receive data (on Samsung Galaxy phones?) #357

Closed gkiernozek closed 5 years ago

gkiernozek commented 6 years ago

Hello, I have a problem with using Instant Preview on my Samsung Galaxy S7, as the fix #209 helped on Google Pixel 2, it still persists on Samsung S7 device.

I'm working on Unity 2018.2.2f1, ARCore 1.4.0, Instant Preview 1.0.9 :/ This is crucial for the development as I have to build the app everytime right now and this slows down development significantly :/

Thanks for any help I can get!

keyserjaya commented 6 years ago

Here's the details:

  1. Open ARCore Instant Preview
  2. Connect the phone with USB
  3. Turn ON USB Debugging
  4. Still the message is "Not Connected To Editor"
  5. But when i open a script, it starts opening Visual Studio. And after the Visual Studio loaded and ready to use. The message changed to "Press PLAY in Unity Editor to stream"
  6. Press Play button at Unity Editor
  7. The message was changed again to "Not Connected To Editor", and then turns black for a second. After that the ARCore Instant Preview changed to Landscape and the message is "Press Play in Unity Editor to stream". My Unity Editor is still in playing mode with white screen background on Game screen

NB:

  1. if UNITY_EDITOR

    // Set up touch input propagation while using Instant Preview in the editor. using Input = InstantPreviewInput;

    endif

    still exist on my script

  2. My USB Debugging Mode also enabled
  3. My unity version is 2017.3.1p4
gkiernozek commented 6 years ago

More input from me too:

I got Instant Preview connected to computer as it says: "Press PLAY in Unity editor to stream" and then after I press play, whole app is going black and probably restarts and it's still connected but even if Unity is in Play mode it still displays the same message.

Seems like the app is restarting for some reason when I hit play (maybe for resolution update) and then when it's back up it cannot sync with editor which already started playing?

@pablisho can you help with this? or is this issue tracked or by any chance fixed in next updates?

geeosp commented 6 years ago

Hey Guys, this is an old bug. It have been reported since arccore 1.2. Some people say it is related to Samsung firmware updates. I believe there is another thread here talking about this same issue.

dvlee1024 commented 6 years ago

I meet the same problem. When I press "Play" on Unity, the app opened with a white screen. My editor display white screen also.

I am using Unity 2018.2.0f2, ARCore 1.4.0, Instant Preview 1.0.9 , Mac.

unexpector commented 6 years ago

Same issue here, it is giving me the white screen.

cocapasteque commented 6 years ago

Same here with Samsung Galaxy S7, Unity 2018.2.1f1 and ARCore 1.4.1. App goes black for one second and then go back to the main screen asking to press play in the editor.

nebnes commented 6 years ago

Also same with a Samsung Galaxy S7

kolboch commented 6 years ago

LG G6 same. I tried running in Update of InstantPreviewManager this code:

if (cameraTexture == null)
                {
                    Debug.Log("cameraTexture is null");
                    Debug.Log("Trying to acquire camera image bytes.");
                    CameraImageBytes cameraBytes = Frame.CameraImage.AcquireCameraImageBytes();
                    if (cameraBytes.IsAvailable)
                    {
                        Debug.Log("Acquire cpu was successful. Retrying to assign cameraTexture");
                        cameraTexture = Frame.CameraImage.Texture;
                        if (cameraTexture == null)
                        {
                            Debug.Log("cameraTexture STILL NULL");
                        }
                    }
                    else
                    {
                        Debug.Log("Acquire failed");
                    }
                }

as my cameraTexture keept beeing null in that update which concerned me a little bit, but no success as calling acquire fails with warning:

Failed to acquire camera image with status ErrorNotYetAvailable
UnityEngine.Debug:LogWarningFormat(String, Object[])
GoogleARCoreInternal.FrameApi:AcquireCameraImageBytes() (at Assets/GoogleARCore/SDK/Scripts/Api/FrameApi.cs:74)
GoogleARCore.CameraImage:AcquireCameraImageBytes() (at Assets/GoogleARCore/SDK/Scripts/Frame.cs:420)
GoogleARCoreInternal.<UpdateLoop>c__Iterator1:MoveNext() (at Assets/GoogleARCore/SDK/InstantPreview/Scripts/InstantPreviewManager.cs:311)

I dont know if that is source of the issue but maybe it helps somehow. In my case it seems too that InstantPreview app is somehow very fast restarting as on pressing play button it ( hint bar) for a millisecond turns text to red ( not connected to editor) and then again seems to be right ( Press play in editor to stream).

Logs:

09-03 03:25:22.184  3422  4519 E         : Service not available yet
09-03 03:25:22.253  3532  4404 W IpManager.wlan0: RunningState:: msg what = 8
09-03 03:25:22.265 27179 27179 W linker  : "/data/app/com.google.ar.core.instantpreview-6rdhrqpRdC2fgHm7kj5aLw==/lib/arm64/libarcore_sdk_jni.so" unuse
d DT entry: type 0xf arg 0x2794
09-03 03:25:22.281 27179 27179 W native  : commandlineflags.cc:1311 Ignoring RegisterValidateFunction() for flag pointer 0x7584650818: no flag found a
t that address
09-03 03:25:22.296 27179 27179 W native  : commandlineflags.cc:1311 Ignoring RegisterValidateFunction() for flag pointer 0x7583acb348: no flag found a
t that address
09-03 03:25:22.297  5462  5462 E FMFRW_BcmFmRadio: mReceiver is null.
09-03 03:25:22.302 24573 24872 W native  : helpers.cc:1483 Defaulting to persistent calibration file.
09-03 03:25:22.302 24573 24872 W native  : helpers.cc:1460 Property calibration_cad is not defined.
09-03 03:25:22.310 24573 24872 W native  : calibration_provider.cc:416 Requested parsing of Online calibration, but fell back to CAD calibration: /dat
a/user/0/com.google.ar.core/files/device_profile2_database/device_profile_lucye_colon_8.textproto.
09-03 03:25:22.310 24573 24872 W native  : Attempted fallbacks:
09-03 03:25:22.310 24573 24872 W native  : - Online calibration: File does not exist: /data/data/com.google.ar.core/files/config/online-calibration.xm
l.
09-03 03:25:22.310 24573 24872 W native  : - Factory calibration: File not set.
09-03 03:25:22.310 24573 24872 W native  :
09-03 03:25:22.512 24573 24573 W ARCore.Analytics: Log Source: PJgQUl1CRhj8-rGlwtloKA==
09-03 03:25:22.540   489   489 E SELinux : avc:  denied  { find } for interface=vendor.lge.hardware.configstore::IConfigStore pid=27179 scontext=u:r:u
ntrusted_app_25:s0:c512,c768 tcontext=u:object_r:hal_lge_configstore_hwservice:s0 tclass=hwservice_manager
09-03 03:25:22.541   489   489 E SELinux : avc:  denied  { find } for interface=vendor.lge.hardware.configstore::IConfigStore pid=27179 scontext=u:r:u
ntrusted_app_25:s0:c512,c768 tcontext=u:object_r:hal_lge_configstore_hwservice:s0 tclass=hwservice_manager
09-03 03:25:22.542 27179 27242 E NdkImageReader: AImageReader_getWindow
09-03 03:25:22.547  3322  3322 E CameraService: initialize mCameraProviderManager for Treble mode
09-03 03:25:22.553   517 26110 E LGCameraPerf-8996ac_OOS: LGCameraPerf: 383: E
09-03 03:25:22.553   517 26110 E LGCameraPerf-8996ac_OOS: LGCameraPerf: 399: X
09-03 03:25:22.571 27179 27179 W System.err: java.util.concurrent.CancellationException
09-03 03:25:22.571 27179 27179 W System.err:    at java.util.concurrent.FutureTask.report(FutureTask.java:122)
09-03 03:25:22.571 27179 27179 W System.err:    at java.util.concurrent.FutureTask.get(FutureTask.java:193)
09-03 03:25:22.571 27179 27179 W System.err:    at com.google.ar.core.instantpreview.ARCoreUpdateManager.onPause(ARCoreUpdateManager.java:55)
09-03 03:25:22.571 27179 27179 W System.err:    at com.google.ar.core.instantpreview.InstantPreviewActivity.onPause(InstantPreviewActivity.java:604)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.Activity.performPause(Activity.java:7122)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.Instrumentation.callActivityOnPause(Instrumentation.java:1408)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.ActivityThread.performPauseActivityIfNeeded(ActivityThread.java:4035)
09-03 03:25:22.571  3300 27254 E         : [LG_cam_debug][mm-camera] module_sensor_init_session:1455: set log level 0
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.ActivityThread.performPauseActivity(ActivityThread.java:4012)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.ActivityThread.performPauseActivity(ActivityThread.java:3986)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.ActivityThread.handlePauseActivity(ActivityThread.java:3960)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.ActivityThread.-wrap15(Unknown Source:0)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1624)
09-03 03:25:22.571 27179 27179 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:105)
09-03 03:25:22.571 27179 27179 W System.err:    at android.os.Looper.loop(Looper.java:164)
09-03 03:25:22.571 27179 27179 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6710)
09-03 03:25:22.571 27179 27179 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
09-03 03:25:22.571 27179 27179 W System.err:    at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
09-03 03:25:22.571 27179 27179 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:770)
09-03 03:25:22.591  3300 27260 E mm-3a-core: start_accel_sensor: sensor1_open E
09-03 03:25:22.591  3300 27260 E mm-3a-core: start_accel_sensor: sensor1_open X, res = 0
09-03 03:25:22.593  3300 27260 E mm-camera: <STATS ><E> 3649: stats_port_init: mcc-mnc value
09-03 03:25:22.593  3300 27260 E mm-camera: <STATS ><E> 3669: stats_port_init: AFD Four is AUTO_50Hz & AFD Five is AUTO_60Hz - AFD_param - 4
09-03 03:25:22.593  3300  3300 E mm-camera: <SENSOR><E> 8208: module_sensor_get_session_data: module_sensor_get_session_data lg_ae 1 sensor_name imx25
8_imtech
09-03 03:25:22.594  3300  3300 E mm-camera: <SENSOR><E> 8234: module_sensor_get_session_data: module_sensor_get_session_data lg_awb 1 sensor_name imx2
58_imtech
09-03 03:25:22.594  3300  3300 E mm-camera: <STATS_AEC ><E> 374: aec_port_load_function: aec_port_load_function lg_aec 1
09-03 03:25:22.595  3300  3300 E         : lg_ae_data_init: lg_ae_main_update_date = Mar 22 2018
09-03 03:25:22.597  3300  3300 E mm-3a-core: af_lg_load_tuning_param(45) sensor_name =
09-03 03:25:22.599  3300  3300 E mm-3a-core: [ACCEL_SENSOR_USE_AF_DEBUG] af_core_initialize_internal_data: accel [#not#] enable
09-03 03:25:22.606  3300  3300 E         : product_name(lucye_global_com) VCX_Scene(1)

Moreover whenever not launching but just switching between apps or going back to home screen of mobile this error pops out in logs:

09-03 03:29:11.891 27179 27179 W System.err: java.util.concurrent.CancellationException
09-03 03:29:11.891 27179 27179 W System.err:    at java.util.concurrent.FutureTask.report(FutureTask.java:122)
09-03 03:29:11.891 27179 27179 W System.err:    at java.util.concurrent.FutureTask.get(FutureTask.java:193)
09-03 03:29:11.891 27179 27179 W System.err:    at com.google.ar.core.instantpreview.ARCoreUpdateManager.onPause(ARCoreUpdateManager.java:55)
09-03 03:29:11.891 27179 27179 W System.err:    at com.google.ar.core.instantpreview.InstantPreviewActivity.onPause(InstantPreviewActivity.java:604)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.Activity.performPause(Activity.java:7122)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.Instrumentation.callActivityOnPause(Instrumentation.java:1408)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.ActivityThread.performPauseActivityIfNeeded(ActivityThread.java:4035)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.ActivityThread.performPauseActivity(ActivityThread.java:4012)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.ActivityThread.performPauseActivity(ActivityThread.java:3986)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.ActivityThread.handlePauseActivity(ActivityThread.java:3960)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.ActivityThread.-wrap15(Unknown Source:0)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1624)
09-03 03:29:11.891 27179 27179 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:105)
09-03 03:29:11.891 27179 27179 W System.err:    at android.os.Looper.loop(Looper.java:164)
09-03 03:29:11.891 27179 27179 W System.err:    at android.app.ActivityThread.main(ActivityThread.java:6710)
09-03 03:29:11.891 27179 27179 W System.err:    at java.lang.reflect.Method.invoke(Native Method)
09-03 03:29:11.891 27179 27179 W System.err:    at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:240)
09-03 03:29:11.891 27179 27179 W System.err:    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:770)
09-03 03:29:11.896 27179 27242 W System.err: java.lang.InterruptedException
09-03 03:29:11.896 27179 27242 W System.err:    at java.util.concurrent.LinkedTransferQueue.take(LinkedTransferQueue.java:1352)
09-03 03:29:11.896 27179 27242 W System.err:    at com.google.ar.core.instantpreview.ARCoreUpdateManager.sessionProc(ARCoreUpdateManager.java:106)
09-03 03:29:11.896 27179 27242 W System.err:    at com.google.ar.core.instantpreview.ARCoreUpdateManager.bridge$lambda$0$ARCoreUpdateManager(Unknown S
ource:0)
09-03 03:29:11.896 27179 27242 W System.err:    at com.google.ar.core.instantpreview.ARCoreUpdateManager$$Lambda$0.run(Unknown Source:2)
09-03 03:29:11.896 27179 27242 W System.err:    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:457)
09-03 03:29:11.896 27179 27242 W System.err:    at java.util.concurrent.FutureTask.run(FutureTask.java:266)
09-03 03:29:11.896 27179 27242 W System.err:    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1162)
09-03 03:29:11.896 27179 27242 W System.err:    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:636)
09-03 03:29:11.897 27179 27242 W System.err:    at java.lang.Thread.run(Thread.java:764)
gkiernozek commented 6 years ago

Thank you @kolboch for trying to dig deeper, I hope that ARCore team will be able to resolve this issue ASAP. Anyone was able to run this Instant Preview on any android device? I'm considering buying/renting one until S7 is causing issues.

kolboch commented 6 years ago

This is video cap of description written above. https://youtu.be/x589sd_QAh0

geeosp commented 6 years ago

This is exactly what's happens on Samsung Galaxy phones. At least, the S8 models

On Mon, Sep 3, 2018, 10:51 Karol notifications@github.com wrote:

This is video cap of description written above. https://youtu.be/x589sd_QAh0

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/google-ar/arcore-unity-sdk/issues/357#issuecomment-418121718, or mute the thread https://github.com/notifications/unsubscribe-auth/AH8Ga8YznTf9zp0ZjVURuyMNV5amKMmFks5uXTP1gaJpZM4WBhPA .

Rodrigo1426 commented 5 years ago

The same problem in Note 8!!!

gkiernozek commented 5 years ago

@Rodrigo1426 - probably it will be fixed in upcoming release, I can't wait for this update! :)

Rodrigo1426 commented 5 years ago

@FUBAR2077 Neither I!!! :D

pablisho commented 5 years ago

Hi, ARCore SDK for Unity 1.5.0 has been released and this issue should be fixed. Please feel free to comment if you still experience it.

kolboch commented 5 years ago

For me there is no improvement in clear project and ARCore HelloAR scene. logcat *:E output

09-29 14:21:31.905  3264  9944 E mm-camera: <E> 831: dmlroc_init: dmlroc_init cfg: camif 3120x4160, elem 130x130, thres 0.000900, accur 5
09-29 14:21:31.905  3264  9944 E mm-camera: <E> 832: dmlroc_init: dmlroc_init cfg: offsetH 0, offsetV 0
09-29 14:21:31.905  3264  9944 E mm-camera: <E> 833: dmlroc_init: dmlroc_init mesh: rxc 13x17, subs 4, hxw 66x66, offset vert 24, horz 32
09-29 14:21:31.993  3264  9944 E mm-camera: <E> 831: dmlroc_init: dmlroc_init cfg: camif 3120x4160, elem 130x130, thres 0.001600, accur 5
09-29 14:21:31.993  3264  9944 E mm-camera: <E> 832: dmlroc_init: dmlroc_init cfg: offsetH 0, offsetV 0
09-29 14:21:31.993  3264  9944 E mm-camera: <E> 833: dmlroc_init: dmlroc_init mesh: rxc 13x17, subs 4, hxw 66x66, offset vert 24, horz 32
09-29 14:21:32.746  9848  9898 E native  : ba_initialization.cc:648 Measurements not available in all keyframes. At least one keyframe has no features in any of the cameras.
09-29 14:21:32.746  9848  9898 E native  : ba_initialization.cc:72 Failed to initialize the network.
09-29 14:21:32.751  9848  9898 E native  : vio_initializer.cc:557 Initializer's BA failed to produce a valid output!
09-29 14:21:32.875  9848  9898 E native  : vio_initializer.cc:557 Initializer's BA failed to produce a valid output!
09-29 14:21:32.997  9848  9898 E native  : vio_initializer.cc:557 Initializer's BA failed to produce a valid output!
09-29 14:21:33.097  9848  9899 E native  : vio_initializer.cc:557 Initializer's BA failed to produce a valid output!
09-29 14:21:33.871  9848  9899 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:33.947  9848  9898 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:34.060  9848  9898 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:34.600  9848  9960 E native  : unique_id.cc:72 Failed to parse UUID from
09-29 14:21:34.600  9848  9960 E native  : unique_id.cc:72 Failed to parse UUID from
09-29 14:21:34.602  9848  9960 E native  : status.cc:155 ArStatusErrorSpace::AR_ERROR_DATA_UNSUPPORTED_VERSION: Database version is not compatible.
09-29 14:21:34.805  5257 10244 E NetworkScheduler: Invalid component specified.
09-29 14:21:35.231  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.231  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.231  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.231  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 0: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.231  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.231  3390  4477 E OMXNodeInstance: !!! Observer died. Quickly, do something, ... anything...
09-29 14:21:35.231  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.231  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.231  3620  8077 E WifiMulticastLockManager: Multicaster binderDied
09-29 14:21:35.232  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.232  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.233  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.234  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.235  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.236  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.237  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.238  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.239  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.240  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.241  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.242  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-OutputStream: getBufferLockedCommon: Stream 0: Can't dequeue next output buffer: Broken pipe (-32)
09-29 14:21:35.243  3374  9964 E Camera3-Device: RequestThread: Can't get output buffer, skipping request: Broken pipe (-32)
09-29 14:21:35.264  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.265  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 1: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.265  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.265  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.265  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 0: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.265  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.272  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.272  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 1: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.272  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.279  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.279  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 0: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.279  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.291  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.291  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 1: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.291  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.292  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.292  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 0: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.292  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.296  3374  3655 E Surface : queueBuffer: error queuing buffer to SurfaceTexture, -32
09-29 14:21:35.296  3374  3655 E Camera3-OutputStream: returnBufferCheckedLocked: Stream 1: Error queueing buffer to native window: Broken pipe (-32)
09-29 14:21:35.296  3374  3655 E Camera3-Device: Can't return buffer to its stream: Broken pipe (-32)
09-29 14:21:35.403  5687  5687 E PBSessionCacheImpl: sessionId[25013228732129413] not persisted.
09-29 14:21:35.434  3264  9956 E mm-camera: <SENSOR><E> 805: sensor_pick_resolution:  sensor name = imx258_imtech, res_idx: 2
09-29 14:21:35.434  3264  9956 E mm-camera: <SENSOR><E> 4885: sensor_get_output_info: [CHECK] sensor_get_output_info: sensor_util_get_fourcc_format called (is_flipped: 0)
09-29 14:21:35.436   516  3208 E QCamera3HWI: closeCamera: mCameraSessionActiveCount = 1
09-29 14:21:35.445  3264 10295 E mm-camera: <SENSOR><E> 1525: module_sensor_deinit_session: trying to disable ois
09-29 14:21:35.462  3264 10299 E quadracfa_dummy: inside dummy remosaic_deinit 1
09-29 14:21:35.468  3264 10298 E mm-camera: <STATS_AWB ><E> 142: lg_awb_unload_parm_library: lg_awb_unload_parm_library will close chromatix count 1
09-29 14:21:35.468  3264 10298 E mm-camera: <STATS_AWB ><E> 149: lg_awb_unload_parm_library: lg_awb_unload_parm_library release...... mode : 0x8005, addr : 0x2e4fb953
09-29 14:21:35.470  3264 10298 E mm-camera: <STATS_AEC ><E> 145: lg_ae_unload_parm_library: lg_ae_unload_parm_library will close chromatix count 1
09-29 14:21:35.470  3264 10298 E mm-camera: <STATS_AEC ><E> 154: lg_ae_unload_parm_library: lg_ae_unload_parm_library release... mode : 0x245, addr : 0xc4e8a9e1 name imx258_imtech op_mode zsl_video
09-29 14:21:35.470  3264 10298 E mm-camera: <STATS_AEC ><E> 406: aec_port_unload_function: aec_port_unload_function cur_lg_aec 1
09-29 14:21:35.470  3264 10298 E mm-camera: <STATS_AEC ><E> 406: aec_port_unload_function: aec_port_unload_function cur_lg_aec 1
09-29 14:21:35.474  3264 10295 E         : pdaf_mem_free 749 1 pdaf_mem_free handle pointer 0xe1400000 is pd 0, vendor id 3
09-29 14:21:35.476  3264 10295 E         : pdaf_mem_free 753 2 pdaf_mem_free !!!!!!!!!!! handle pointer 0x0
09-29 14:21:35.501   516  3208 E LGCameraPerf-8996ac_OOS: powerHintInternal_LGE: 352: mEnable = 1, enable = 0
09-29 14:21:35.501   516  3208 E LGCameraPerf-8996ac_OOS: powerHintInternal_LGE: 375: powerHint = 11, enable = 0,
09-29 14:21:35.501   516  3208 E LGCameraPerf-8996ac_OOS: ~LGCameraPerf: 405: E
09-29 14:21:35.501   516  3208 E LGCameraPerf-8996ac_OOS: ~LGCameraPerf: 411: X
09-29 14:21:35.541  3374  7692 E CameraService: binderDied: Java client's binder died, removing it from the list of active clients
09-29 14:21:35.728  5345  5345 E FMFRW_BcmFmRadio: mReceiver is null.
09-29 14:21:35.820  3390  4720 E         : Service not available yet
09-29 14:21:36.365   487   487 E SELinux : avc:  denied  { find } for interface=vendor.lge.hardware.configstore::IConfigStore pid=10301 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:hal_lge_configstore_hwservice:s0 tclass=hwservice_manager
09-29 14:21:36.365   487   487 E SELinux : avc:  denied  { find } for interface=vendor.lge.hardware.configstore::IConfigStore pid=10301 scontext=u:r:untrusted_app_25:s0:c512,c768 tcontext=u:object_r:hal_lge_configstore_hwservice:s0 tclass=hwservice_manager
09-29 14:21:36.378 10301 10373 E NdkImageReader: AImageReader_getWindow
09-29 14:21:36.386  3374 10292 E CameraService: initialize mCameraProviderManager for Treble mode
09-29 14:21:36.391   516 10306 E LGCameraPerf-8996ac_OOS: LGCameraPerf: 383: E
09-29 14:21:36.391   516 10306 E LGCameraPerf-8996ac_OOS: LGCameraPerf: 399: X
09-29 14:21:36.408  3264 10380 E         : [LG_cam_debug][mm-camera] module_sensor_init_session:1455: set log level 0
09-29 14:21:36.414  3264 10386 E mm-3a-core: start_accel_sensor: sensor1_open E
09-29 14:21:36.414  3264 10386 E mm-3a-core: start_accel_sensor: sensor1_open X, res = 0
09-29 14:21:36.415  3264 10386 E mm-camera: <STATS ><E> 3649: stats_port_init: mcc-mnc value
09-29 14:21:36.415  3264 10386 E mm-camera: <STATS ><E> 3669: stats_port_init: AFD Four is AUTO_50Hz & AFD Five is AUTO_60Hz - AFD_param - 5
09-29 14:21:36.420  3264  3264 E mm-camera: <SENSOR><E> 8208: module_sensor_get_session_data: module_sensor_get_session_data lg_ae 1 sensor_name imx258_imtech
09-29 14:21:36.420  3264  3264 E mm-camera: <SENSOR><E> 8234: module_sensor_get_session_data: module_sensor_get_session_data lg_awb 1 sensor_name imx258_imtech
09-29 14:21:36.420  3264  3264 E mm-camera: <STATS_AEC ><E> 374: aec_port_load_function: aec_port_load_function lg_aec 1
09-29 14:21:36.421  3264  3264 E         : lg_ae_data_init: lg_ae_main_update_date = Mar 22 2018
09-29 14:21:36.422  3264  3264 E mm-3a-core: af_lg_load_tuning_param(45) sensor_name =
09-29 14:21:36.425  3264  3264 E mm-3a-core: [ACCEL_SENSOR_USE_AF_DEBUG] af_core_initialize_internal_data: accel [#not#] enable
09-29 14:21:36.427  3264  3264 E         : product_name(lucye_global_com) VCX_Scene(1)
09-29 14:21:36.430   516 10306 E QCamera : <MCI><E> mm_camera_open: 317: mm_camera_open:  opened, break out while loop
09-29 14:21:36.438   516 10306 E LGCameraPerf-8996ac_OOS: powerHintInternal_LGE: 352: mEnable = 0, enable = 1
09-29 14:21:36.438   516 10306 E LGCameraPerf-8996ac_OOS: powerHintInternal_LGE: 375: powerHint = 11, enable = 1,
09-29 14:21:36.451   516 10306 E Camera2-Metadata: Mismatched tag type when updating entry enable (-2146762752) of type byte; got type int32 data instead
09-29 14:21:36.451   516 10306 E Camera2-Metadata: Mismatched tag type when updating entry is_main (-2146762751) of type byte; got type int32 data instead
09-29 14:21:36.454  3264 10382 E mm-camera: <SENSOR><ERROR> imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf: 1049: [LGAF_EEPROM] imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf , mac(820), inf(284), closed-loop gravity value g_0_90(0), g_90_180(0)
09-29 14:21:36.454  3264 10382 E mm-camera: <SENSOR><ERROR> imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf: 1070: [LGAF_EEPROM] imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf , mac(820), inf(284), g_0_90(0), g_90_180(0), vcm_type(1), cal_version(8), actuator_type(1)
09-29 14:21:36.454  3264 10382 E mm-camera: <SENSOR><E> 422: af_actuator_set_params: infinity_dac = [284], macro_dac = [820]
09-29 14:21:36.469   516 10306 E LGCameraPerf-8996ac_OOS: setBoostCameraPowerHint: myBoosting_8996+ [0]
09-29 14:21:36.507   516 10306 E LGCameraPerf-8996ac_OOS: setBoostCameraPowerHint: myBoosting_8996+ timed [10]
09-29 14:21:36.509  3264 10408 E mm-camera: <SENSOR><E> 1869: sensor_set_frame_rate: max fps 30.000000 min fps 30.000000,fixed_frame_rate=1
09-29 14:21:36.509  3264 10408 E mm-camera: <SENSOR><E> 805: sensor_pick_resolution:  sensor name = imx258_imtech, res_idx: 0
09-29 14:21:36.509  3264 10408 E mm-camera: <SENSOR><E> 4885: sensor_get_output_info: [CHECK] sensor_get_output_info: sensor_util_get_fourcc_format called (is_flipped: 0)
09-29 14:21:36.514  3264 10408 E mm-camera: <SENSOR><E> 805: sensor_pick_resolution:  sensor name = imx258_imtech, res_idx: 0
09-29 14:21:36.564  3264 10408 E mm-camera: <SENSOR><E> 805: sensor_pick_resolution:  sensor name = imx258_imtech, res_idx: 0
09-29 14:21:36.564  3264 10408 E mm-camera: <SENSOR><E> 4014: sensor_get_resolution_info: [PD_DBG] PD_conversion_coeff[0] = 657
09-29 14:21:36.564  3264 10408 E mm-camera: <SENSOR><E> 4159: module_sensor_config_choose_aeawb_algo: module_sensor_config_choose_aeawb_algo !!! mode 1 res 0 is_zzhdr 0
09-29 14:21:36.564  3264 10408 E mm-camera: <MCT   ><E> 957: mct_module_get_module_by_module: found!!! name stats input name stats
09-29 14:21:36.565  3264 10403 E mm-3a-core: lg_ae_iface_set_parm_qcom, op_mode_qcom 2
09-29 14:21:36.565  3264 10403 E mm-3a-core: lg_ae_iface_set_parm_qcom: destination, lg_zoom_inout_mode_ae = 0
09-29 14:21:36.568  3264 10408 E         : pdaf_init CTO InitPdaf handle pointer 0x0
09-29 14:21:36.568  3264 10408 E mm-camera: <SENSOR><E> 728: pdaf_get_native_pattern: [PD_DBG] :  ctrl->s_data->cur_res = 0
09-29 14:21:36.568  3264 10408 E mm-camera: <SENSOR><E> 729: pdaf_get_native_pattern: [PD_DBG] :  block_dim = 2 X 8
09-29 14:21:36.568  3264 10408 E mm-camera: <SENSOR><E> 730: pdaf_get_native_pattern: [PD_DBG] :  block_count_vertical = 96, block_count_horizontal 130
09-29 14:21:36.569  3264  3839 E quadracfa_dummy: inside dummy remosaic_init 1
09-29 14:21:36.569  3264  3839 E quadracfa_dummy: inside dummy remosaic_gainmap_gen 1
09-29 14:21:36.570  3264 10408 E         : pdaf_init pdaf parameter init cur_res 0
09-29 14:21:36.575  3264 10408 E mm-camera: <STATS_AEC ><E> 5163: aec_port_proc_downstream_event: chromatix_parse_lg_ae 1
09-29 14:21:36.576  3264 10403 E mm-camera: <STATS_AEC ><E> 93: lg_ae_load_parm_library: lg_ae_load_parm_library t_sensor 9 op_mode 5
09-29 14:21:36.576  3264 10403 E mm-camera: <STATS_AEC ><E> 129: lg_ae_load_parm_library: lg_ae_load_parm_library new open...mode : 0x245 addr : 0xe3300c73 lib_name imx258_imtech, mode zsl_video
09-29 14:21:36.576  3264 10403 E mm-camera: <STATS_AEC ><E> 132: lg_ae_load_parm_library: lg_ae_load_parm_library opened chromatix count 1
09-29 14:21:36.576  3264 10403 E mm-3a-core: lg_ae_iface_ev_value_param_init: zz_hdr_flag 0, ev_value 430
09-29 14:21:36.576  3264 10403 E mm-3a-core: lg_ae_flash_control_param_init: param -- center_sat_comp[0] 0.950000 histo_comp[0] 1.000000
09-29 14:21:36.576  3264 10408 E mm-camera: <STATS_AWB ><E> 2014: awb_process_downstream_mod_event: chromatix_parse_lg_awb 1
09-29 14:21:36.576  3264 10403 E mm-camera: <STATS_AWB ><E> 73: lg_awb_load_parm_library: lg_awb_load_parm_library : /system/vendor/lib/liblg_awb_parameter_imx258_imtech_zsl_video.so
09-29 14:21:36.577  3264 10403 E mm-camera: <STATS_AWB ><E> 88: lg_awb_load_parm_library: lg_awb_load_parm_library t_sensor 9 op_mode 5
09-29 14:21:36.577  3264 10403 E mm-camera: <STATS_AWB ><E> 126: lg_awb_load_parm_library: lg_awb_load_parm_library new open...mode : 0x8005 addr : 0x2e4fb953 lib_name imx258_imtech, mode zsl_video
09-29 14:21:36.577  3264 10403 E mm-camera: <STATS_AWB ><E> 129: lg_awb_load_parm_library: lg_awb_load_parm_library opened chromatix count 1
09-29 14:21:36.579  3264 10404 E mm-camera: <STATS_AF ><E> 590: af_core_set_param: invalid param!
09-29 14:21:36.579  3264 10404 E mm-camera: <STATS_AF ><E> 556: af_core_set_param: [AF_EVENT:AF_CORE_SET_PARAM_HDR_MODE]lgaf_algorithm->is_zzhdr_mode = 0
09-29 14:21:36.581  3264 10408 E mm-camera: <IFACE ><E> 9688: iface_util_io_cfg: iface_util_io_cfg: vfe_clk = 480000000
09-29 14:21:36.581  3264 10408 E mm-camera: <IFACE ><E> 9729: iface_util_io_cfg: Programmed VFE Clock 480000000
09-29 14:21:36.586  3264 10408 E mm-camera: <E> 5301: af_port_restart_proxy_value: af_port_restart_proxy_value
09-29 14:21:36.586  3264 10408 E mm-camera: <CPP   ><E> 2021: cpp_module_set_clock_freq: slave 0, session 2,  stream identity 20002
09-29 14:21:36.588  3264 10408 E mm-camera: <SENSOR><E> 2007: sensor_set_start_stream: [CHECK] sensor_set_start_stream: is_flipped: 0
09-29 14:21:36.588  3264 10408 E mm-camera: <SENSOR><E> 2027: sensor_set_start_stream: set preview tune for LGE Camera app, isVT = 0
09-29 14:21:36.595  3264 10408 E mm-camera: <SENSOR><E> 1869: sensor_set_frame_rate: max fps 30.000000 min fps 30.000000,fixed_frame_rate=1
09-29 14:21:36.595  3264 10408 E mm-camera: <SENSOR><ERROR> imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf: 1049: [LGAF_EEPROM] imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf , mac(820), inf(284), closed-loop gravity value g_0_90(0), g_90_180(0)
09-29 14:21:36.595  3264 10408 E mm-camera: <SENSOR><ERROR> imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf: 1070: [LGAF_EEPROM] imx258_gt24c128_eeprom_autofocus_calibration_bivcm_lgaf , mac(820), inf(284), g_0_90(0), g_90_180(0), vcm_type(1), cal_version(8), actuator_type(1)
09-29 14:21:36.595  3264 10408 E mm-camera: <STATS_AF ><E> 4991: af_port_handle_module_event: af_port_handle_module_event: EEPROM Cal Check!!!!!
09-29 14:21:36.595  3264 10404 E mm-camera: <STATS_AF ><E> 3349: af_biz_set_parameters:  set eeprom value
09-29 14:21:36.595  3264 10404 E mm-camera: <STATS_AF ><E> 390: af_core_set_param: [VENDOR_TYPE] vcm_type(1) vendor_type(20) reserved_id(255)
09-29 14:21:36.595  3264 10404 E mm-3a-core: af_lg_load_tuning_param(45) sensor_name = imx258_imtech
09-29 14:21:36.595  3264 10404 E mm-camera: <STATS_AF ><E> 424: af_core_set_param: AF_CORE 0_90 = 0, 90_180 = 0, inf = 284 mac = 820, actuator_type = 1, vcm_type = 1
09-29 14:21:36.595  3264 10404 E mm-camera: <STATS_AF ><E> 556: af_core_set_param: [AF_EVENT:AF_CORE_SET_PARAM_HDR_MODE]lgaf_algorithm->is_zzhdr_mode = 0
09-29 14:21:36.595  3264 10408 E mm-camera: <SENSOR><E> 4025: module_sensor_stream_on: macro_dac 820, EEPROM Cal Check!!!!!
09-29 14:21:36.597  3264 10408 E mm-camera: <E> 5301: af_port_restart_proxy_value: af_port_restart_proxy_value
09-29 14:21:36.598  3264 10408 E mm-camera: <CPP   ><E> 2021: cpp_module_set_clock_freq: slave 0, session 2,  stream identity 20003
09-29 14:21:36.607  3390  3572 E OMXNodeInstance: setParameter(0xf2025044:qcom.encoder.avc, OMX.google.android.index.allocateNativeHandle(0x7f00005d): Output:1 en=0) ERROR: UnsupportedSetting(0x80001019)
09-29 14:21:36.608  3264 10408 E mm-camera: <E> 5301: af_port_restart_proxy_value: af_port_restart_proxy_value
09-29 14:21:36.621   516 10306 E QCamera3HWI: CAM_DEBUG: Setting compensation:0
09-29 14:21:36.636  3390  4720 E OMXNodeInstance: getConfig(0xf2025044:qcom.encoder.avc, ConfigLatency(0x6f800005)) ERROR: UnsupportedIndex(0x8000101a)
09-29 14:21:36.640  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 1 frame_src = 0
09-29 14:21:36.640  3264 10409 E mm-camera: <E> 5276: af_port_pause_proxy_value: af_port_pause_proxy_value
09-29 14:21:36.641  3264 10404 E mm-camera: <STATS_AF ><E> 944: af_biz_focus_mode_internal:  af->af_mode.far_end = 1024
09-29 14:21:36.641  3264 10404 E mm-camera: <STATS_AF ><E> 556: af_core_set_param: [AF_EVENT:AF_CORE_SET_PARAM_HDR_MODE]lgaf_algorithm->is_zzhdr_mode = 0
09-29 14:21:36.641  3264 10409 E mm-camera: <SENSOR><E> 1869: sensor_set_frame_rate: max fps 30.000000 min fps 30.000000,fixed_frame_rate=1
09-29 14:21:36.642  3264 10409 E mm-camera: <SENSOR><E> 4014: sensor_get_resolution_info: [PD_DBG] PD_conversion_coeff[0] = 657
09-29 14:21:36.642  5257  7669 E NetworkScheduler: Invalid component specified.
09-29 14:21:36.642  3264 10382 E mm-camera: <SENSOR><E> 546: module_sensor_offload_ois_init_calibrate: Move OIS Init Code to module_sensor_init_session()
09-29 14:21:36.642  3264 10404 E mm-camera: <STATS_AF ><E> 480: af_core_set_param: AF_CORE_SET_PARAM_FIRST_MOVE_LENS laser value = 0, focus mode = 7!
09-29 14:21:36.645 10301 10321 E Fabric  : Failed to retrieve settings from https://settings.crashlytics.com/spi/v2/platforms/android/apps/com.google.ar.core.instantpreview/settings
09-29 14:21:36.648 10301 10322 E Answers : Failed to retrieve settings
09-29 14:21:36.655  3390  4720 E OMXNodeInstance: getConfig(0xf2025044:qcom.encoder.avc, ??(0x7f000062)) ERROR: UnsupportedSetting(0x80001019)
09-29 14:21:36.657  3390 10447 E OMXNodeInstance: getParameter(0xf2025044:qcom.encoder.avc, ParamConsumerUsageBits(0x6f800004)) ERROR: UnsupportedIndex(0x8000101a)
09-29 14:21:36.658  3390 10447 E OMXNodeInstance: getParameter(0xf2025044:qcom.encoder.avc, ParamConsumerUsageBits(0x6f800004)) ERROR: UnsupportedIndex(0x8000101a)
09-29 14:21:36.677  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 2 frame_src = 0
09-29 14:21:36.678  5257  7669 E NetworkScheduler: Invalid component specified.
09-29 14:21:36.680  3264 10403 E mm-3a-core: lg_ae_iface_set_parm_qcom, preview_width 1920, preview_height 1080
09-29 14:21:36.680  3264 10403 E mm-3a-core: left 0,top 0, config_width 4160, config_height 3120
09-29 14:21:36.709  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 3 frame_src = 0
09-29 14:21:36.712  3264 10398 E mm-camera: <E> 831: dmlroc_init: dmlroc_init cfg: camif 3120x4160, elem 130x130, thres 0.000100, accur 5
09-29 14:21:36.712  3264 10398 E mm-camera: <E> 832: dmlroc_init: dmlroc_init cfg: offsetH 0, offsetV 0
09-29 14:21:36.712  3264 10398 E mm-camera: <E> 833: dmlroc_init: dmlroc_init mesh: rxc 13x17, subs 4, hxw 66x66, offset vert 24, horz 32
09-29 14:21:36.730 10301 10373 E native  : status.cc:155 ArStatusErrorSpace::AR_ERROR_NOT_YET_AVAILABLE:
09-29 14:21:36.742  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 4 frame_src = 0
09-29 14:21:36.776  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 5 frame_src = 0
09-29 14:21:36.779  3264 10398 E mm-camera: <E> 831: dmlroc_init: dmlroc_init cfg: camif 3120x4160, elem 130x130, thres 0.001600, accur 5
09-29 14:21:36.779  3264 10398 E mm-camera: <E> 832: dmlroc_init: dmlroc_init cfg: offsetH 0, offsetV 0
09-29 14:21:36.779  3264 10398 E mm-camera: <E> 833: dmlroc_init: dmlroc_init mesh: rxc 13x17, subs 4, hxw 66x66, offset vert 24, horz 32
09-29 14:21:36.809  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 6 frame_src = 0
09-29 14:21:36.842  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 7 frame_src = 0
09-29 14:21:36.879  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 8 frame_src = 0
09-29 14:21:36.911  3264 10435 E mm-camera: <IFACE ><E> 8848: iface_util_hw_notify_sof: iface_util_hw_notify_sof: session 2 frame_id 9 frame_src = 0
09-29 14:21:41.311 10301 10352 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:41.518 10301 10351 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:41.726 10301 10352 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:41.774  3264 10403 E mm-camera: <SENSOR><E> 513: sensor_set_exposure: It's not ready for aec get, so skipped setting. This case is workaround for HAL3, only.
09-29 14:21:41.852 10301 10351 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:41.919 10301 10351 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:42.027 10301 10351 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:42.707  3264 10403 E mm-camera: <SENSOR><E> 513: sensor_set_exposure: It's not ready for aec get, so skipped setting. This case is workaround for HAL3, only.
09-29 14:21:43.071 10301 10351 E native  : vio_initializer.cc:557 Initializer's BA failed to produce a valid output!
09-29 14:21:43.103  3264 10403 E mm-camera: <SENSOR><E> 513: sensor_set_exposure: It's not ready for aec get, so skipped setting. This case is workaround for HAL3, only.
09-29 14:21:43.150 10301 10352 E native  : vio_initializer.cc:557 Initializer's BA failed to produce a valid output!
09-29 14:21:43.863 10301 10351 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:44.081 10301 10352 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:44.167 10301 10351 E native  : filter_update_base.cc:85 Temporary visual feature update failed when computing its residual and Jacobian.
09-29 14:21:44.749  3264 10398 E mm-camera: <E> 831: dmlroc_init: dmlroc_init cfg: camif 3120x4160, elem 130x130, thres 0.000900, accur 5
09-29 14:21:44.749  3264 10398 E mm-camera: <E> 832: dmlroc_init: dmlroc_init cfg: offsetH 0, offsetV 0
09-29 14:21:44.750  3264 10398 E mm-camera: <E> 833: dmlroc_init: dmlroc_init mesh: rxc 13x17, subs 4, hxw 66x66, offset vert 24, horz 32
09-29 14:21:45.094  3264 10398 E mm-camera: <E> 831: dmlroc_init: dmlroc_init cfg: camif 3120x4160, elem 130x130, thres 0.001600, accur 5
09-29 14:21:45.094  3264 10398 E mm-camera: <E> 832: dmlroc_init: dmlroc_init cfg: offsetH 0, offsetV 0
09-29 14:21:45.094  3264 10398 E mm-camera: <E> 833: dmlroc_init: dmlroc_init mesh: rxc 13x17, subs 4, hxw 66x66, offset vert 24, horz 32
09-29 14:21:46.921  3264 10403 E mm-camera: <SENSOR><E> 513: sensor_set_exposure: It's not ready for aec get, so skipped setting. This case is workaround for HAL3, only.

LG G6 there. Please share if it is fixed at your devices so I would know if it might be some other issue with my project or whatever.

kolboch commented 5 years ago

Can someone answer if it was fixed for Samsung's devices? Still cannot use Instant preview in my Unity project and the behaviour is the same as stated in this video which was already posted there before.| https://youtu.be/x589sd_QAh0

kolboch commented 5 years ago

@Rodrigo1426 @FUBAR2077 was it fixed for you? Please, maybe someone would care if more people would report that it has not been fixed for some devices/ users.

gkiernozek commented 5 years ago

Hello @kolboch - yes, it works for me partially - I have preview on my PC from the phone camera, still no image on the phone but it's better than before, at least I can test without building :P Try to import 1.5.0 to fresh project and test it then

kolboch commented 5 years ago

@FUBAR2077 thanks for response, was just curious as for me no progress, set up parallel project in 3d to test some things much faster :)

vinayak-vc commented 5 years ago

05-14 11:50:08.448 23458 23483 I InstantPreviewConnection: trying reconnect 05-14 11:50:08.448 23458 23483 I InstantPreviewConnection: onError: io.grpc.StatusRuntimeException: UNAVAILABLE: End of stream or IOException

I am getting this kind of error in adb logcat

ScottLaForge commented 5 years ago

Still no fix.

aymusbond commented 4 years ago

Still no fix, even with ARCore 1.18.0. Please team look at this issue.