fix: remove android mjpeg option

This commit is contained in:
xucong053
2022-09-28 14:57:41 +08:00
parent 2ad38c2031
commit 2a8e8a965c
4 changed files with 4 additions and 10 deletions

View File

@@ -65,12 +65,6 @@ func WithSerialNumber(serial string) AndroidDeviceOption {
}
}
func WithMjpegPortA(port int) AndroidDeviceOption {
return func(device *AndroidDevice) {
device.MjpegPort = port
}
}
func WithAdbIP(ip string) AndroidDeviceOption {
return func(device *AndroidDevice) {
device.IP = ip

View File

@@ -5,6 +5,7 @@ package uixt
import (
"bytes"
"image"
"io/ioutil"
"os"
cvHelper "github.com/electricbubble/opencv-helper"