mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2025-11-05 11:56:37 +00:00
support nv12 capture pixel format on linux
This commit is contained in:
parent
38f0068411
commit
364909cfa3
3 changed files with 4 additions and 3 deletions
|
|
@ -74,7 +74,7 @@ dependencies {
|
||||||
implementation('com.fasterxml.jackson.core:jackson-databind:2.17.2')
|
implementation('com.fasterxml.jackson.core:jackson-databind:2.17.2')
|
||||||
implementation('com.sparrowwallet:hummingbird:1.7.4')
|
implementation('com.sparrowwallet:hummingbird:1.7.4')
|
||||||
implementation('co.nstant.in:cbor:0.9')
|
implementation('co.nstant.in:cbor:0.9')
|
||||||
implementation('org.openpnp:openpnp-capture-java:0.0.28-5')
|
implementation('org.openpnp:openpnp-capture-java:0.0.28-6')
|
||||||
implementation("io.matthewnelson.kmp-tor:runtime:2.2.1")
|
implementation("io.matthewnelson.kmp-tor:runtime:2.2.1")
|
||||||
implementation("io.matthewnelson.kmp-tor:resource-exec-tor-gpl:408.16.3")
|
implementation("io.matthewnelson.kmp-tor:resource-exec-tor-gpl:408.16.3")
|
||||||
implementation('org.jetbrains.kotlinx:kotlinx-coroutines-javafx:1.10.1') {
|
implementation('org.jetbrains.kotlinx:kotlinx-coroutines-javafx:1.10.1') {
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ public enum WebcamPixelFormat {
|
||||||
//Only V4L2 formats defined in linux/videodev2.h are required here, declared in order of priority for supported formats
|
//Only V4L2 formats defined in linux/videodev2.h are required here, declared in order of priority for supported formats
|
||||||
PIX_FMT_RGB24("RGB3", true),
|
PIX_FMT_RGB24("RGB3", true),
|
||||||
PIX_FMT_YUYV("YUYV", true),
|
PIX_FMT_YUYV("YUYV", true),
|
||||||
|
PIX_FMT_NV12("NV12", true),
|
||||||
PIX_FMT_MJPG("MJPG", true);
|
PIX_FMT_MJPG("MJPG", true);
|
||||||
|
|
||||||
private final String name;
|
private final String name;
|
||||||
|
|
|
||||||
|
|
@ -182,9 +182,9 @@ public class WebcamService extends ScheduledService<Image> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//On Linux, formats not defined in WebcamPixelFormat are unsupported so ask for RGB3
|
//On Linux, formats not defined in WebcamPixelFormat are unsupported
|
||||||
if(OsType.getCurrent() == OsType.UNIX && WebcamPixelFormat.fromFourCC(format.getFormatInfo().fourcc) == null) {
|
if(OsType.getCurrent() == OsType.UNIX && WebcamPixelFormat.fromFourCC(format.getFormatInfo().fourcc) == null) {
|
||||||
format.getFormatInfo().fourcc = WebcamPixelFormat.PIX_FMT_RGB24.getFourCC();
|
log.warn("Unsupported camera pixel format " + WebcamPixelFormat.fourCCToString(format.getFormatInfo().fourcc));
|
||||||
}
|
}
|
||||||
|
|
||||||
if(log.isDebugEnabled()) {
|
if(log.isDebugEnabled()) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue