device: package level comments

This commit is contained in:
Ella Pietraroia 2020-03-12 15:56:29 +10:30
parent 945bc61a26
commit 892e1b92da
7 changed files with 14 additions and 1 deletions

View File

@ -23,6 +23,7 @@ LICENSE
If not, see http://www.gnu.org/licenses. If not, see http://www.gnu.org/licenses.
*/ */
// Package alsa provides access to input from ALSA audio devices.
package alsa package alsa
import ( import (

View File

@ -24,6 +24,9 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses. in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package device provides AVDevice, an interface that describes a configurable
// audio or video device that can be started and stopped from which data may
// be obtained.
package device package device
import ( import (

View File

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

View File

@ -22,6 +22,8 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses. 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 package geovision
import ( import (

View File

@ -22,7 +22,8 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses. 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 provides an implementation of AVDevice for the raspberry
// pi camera.
package raspivid package raspivid
import ( import (

View File

@ -21,6 +21,9 @@ LICENSE
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
in gpl.txt. If not, see http://www.gnu.org/licenses. 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 package raspivid
import ( import (

View File

@ -21,6 +21,8 @@ LICENSE
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
in gpl.txt. If not, see http://www.gnu.org/licenses. in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package webcam provides an implementation of AVDevice for webcams.
package webcam package webcam
import ( import (