-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.properties
47 lines (43 loc) · 1.16 KB
/
build.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#project locations
project.dir=.
project.src=src
project.lib=lib
project.classes=classes
project.rsrc=resources
project.name=v4l4j
project.jar.file=${project.name}.jar
project.jni.file=lib${project.name}.so
project.javadoc.dir=doc
libvideo.dir=libvideo
#install locations
platform.standard.jar.location=/usr/share/java
platform.standard.javadoc.location=/usr/share/doc/libv4l4j-doc/api
platform.standard.jni.location=/usr/lib/jni
platform.standard.icons.location=/usr/share/pixmaps
#java compatibility
source=1.8
#JUNIT test
test.class.name.single=au.edu.jcu.v4l4j.test.FrameGrabberTest
#device file from which capture will be tested
test.device=/dev/video0
#desired capture width
test.width=640
#desired capture height
test.height=480
#Video standard (0 for webcams, 1 for PAL, 2 for SECAM, 3 for NTSC)
test.standard=0
#Capture channel (0 for webcams)
test.channel=0
#Capture image format (-1 means 'use first available format', run
#'ant deviceInfo' for device-specific image formats)
test.inFormat=-1
#Output image format
#0: raw (format in which frames were captured)
#1: JPEG
#2: RGB24
#3: BGR24
#4: YUV420
#5: YVU420
test.outFormat=0
#Number of jobs to run
make.jobs=4