├── LICENSE ├── README.md ├── buftype ├── consts.go ├── doc.go └── type.go ├── cap.go ├── dev_video.go ├── device.go ├── device_businfo.go ├── device_cap.go ├── device_card.go ├── device_driver.go ├── device_formatfamilies.go ├── device_setformat.go ├── device_unfit.go ├── device_version.go ├── doc.go ├── errors.go ├── format ├── cast.go ├── doc.go ├── pix.go └── type.go ├── formatfamily.go ├── formatfamily_description.go ├── formatfamily_flags.go ├── formatfamily_framesizes.go ├── formatfamily_pixelformat.go ├── framesize ├── cast.go ├── continuous.go ├── discrete.go ├── doc.go ├── stepwise.go └── type.go ├── internal_capabilities.go ├── ioc.go ├── pixelformat ├── doc.go ├── type.go └── type_test.go └── vidioc.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/README.md -------------------------------------------------------------------------------- /buftype/consts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/buftype/consts.go -------------------------------------------------------------------------------- /buftype/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/buftype/doc.go -------------------------------------------------------------------------------- /buftype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/buftype/type.go -------------------------------------------------------------------------------- /cap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/cap.go -------------------------------------------------------------------------------- /dev_video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/dev_video.go -------------------------------------------------------------------------------- /device.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device.go -------------------------------------------------------------------------------- /device_businfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_businfo.go -------------------------------------------------------------------------------- /device_cap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_cap.go -------------------------------------------------------------------------------- /device_card.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_card.go -------------------------------------------------------------------------------- /device_driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_driver.go -------------------------------------------------------------------------------- /device_formatfamilies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_formatfamilies.go -------------------------------------------------------------------------------- /device_setformat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_setformat.go -------------------------------------------------------------------------------- /device_unfit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_unfit.go -------------------------------------------------------------------------------- /device_version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/device_version.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/doc.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/errors.go -------------------------------------------------------------------------------- /format/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/format/cast.go -------------------------------------------------------------------------------- /format/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/format/doc.go -------------------------------------------------------------------------------- /format/pix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/format/pix.go -------------------------------------------------------------------------------- /format/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/format/type.go -------------------------------------------------------------------------------- /formatfamily.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/formatfamily.go -------------------------------------------------------------------------------- /formatfamily_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/formatfamily_description.go -------------------------------------------------------------------------------- /formatfamily_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/formatfamily_flags.go -------------------------------------------------------------------------------- /formatfamily_framesizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/formatfamily_framesizes.go -------------------------------------------------------------------------------- /formatfamily_pixelformat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/formatfamily_pixelformat.go -------------------------------------------------------------------------------- /framesize/cast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/framesize/cast.go -------------------------------------------------------------------------------- /framesize/continuous.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/framesize/continuous.go -------------------------------------------------------------------------------- /framesize/discrete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/framesize/discrete.go -------------------------------------------------------------------------------- /framesize/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/framesize/doc.go -------------------------------------------------------------------------------- /framesize/stepwise.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/framesize/stepwise.go -------------------------------------------------------------------------------- /framesize/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/framesize/type.go -------------------------------------------------------------------------------- /internal_capabilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/internal_capabilities.go -------------------------------------------------------------------------------- /ioc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/ioc.go -------------------------------------------------------------------------------- /pixelformat/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/pixelformat/doc.go -------------------------------------------------------------------------------- /pixelformat/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/pixelformat/type.go -------------------------------------------------------------------------------- /pixelformat/type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/pixelformat/type_test.go -------------------------------------------------------------------------------- /vidioc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reiver/go-v4l2/HEAD/vidioc.go --------------------------------------------------------------------------------