OSDN Git Service

Canonのステータス受信部をkotlin化
[gokigen/A01d.git] / app / src / main / java / net / osdn / gokigen / a01d / camera / canon / wrapper / liveview / CanonLiveViewControl.java
index d849167..49ae960 100644 (file)
@@ -26,7 +26,7 @@ public class CanonLiveViewControl implements ILiveViewControl, ILiveViewListener
     private final int delayMs;
     private final boolean isDumpLog = false;
     private final boolean isSearchJpegHeader;
-    private final int retryCount = 1500;
+    private final int retryCount = 1200;
     private final CanonLiveViewImageReceiver imageReceiver;
     private IImageDataReceiver dataReceiver = null;
     private boolean liveViewIsReceiving = false;
@@ -37,7 +37,6 @@ public class CanonLiveViewControl implements ILiveViewControl, ILiveViewListener
         this.commandIssuer = interfaceProvider.getCommandPublisher();
         this.isSearchJpegHeader = isSearchJpegHeader;
         this.delayMs = delayMs;
-        //this.imageReceiver = new CanonLiveViewImageReceiver(this);
         this.imageReceiver = new CanonLiveViewImageReceiver(context,this);
         Log.v(TAG, " -=-=-=-=-=- CanonLiveViewControl : delay " + delayMs + " ms");
     }