device: add package comments to file, raspivid, geovision and webcam packages

This commit is contained in:
Scott 2020-02-26 12:20:57 +10:30
parent cd3351543c
commit 6e1ccf6bda
5 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,7 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
// Package file provides an implementation of AVDevice for files.
package file
import (

View File

@ -22,6 +22,7 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
// config-cli is a command-line program for configuring the GeoVision camera.
package main
import (

View File

@ -23,6 +23,8 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
// Package geovision provides an implementation of the AVDevice interface
// for the GeoVision IP camera.
package geovision
import (

View File

@ -22,6 +22,7 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
// Package raspivid provides an implementation of AVDevice for the raspberry pi camera.
package raspivid
import (

View File

@ -22,6 +22,7 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
// Package webcam provides an implementation of AVDevice for webcams.
package webcam
import (