mirror of https://bitbucket.org/ausocean/av.git
device: package level comments
This commit is contained in:
parent
945bc61a26
commit
892e1b92da
|
@ -23,6 +23,7 @@ LICENSE
|
|||
If not, see http://www.gnu.org/licenses.
|
||||
*/
|
||||
|
||||
// Package alsa provides access to input from ALSA audio devices.
|
||||
package alsa
|
||||
|
||||
import (
|
||||
|
|
|
@ -24,6 +24,9 @@ LICENSE
|
|||
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
|
||||
|
||||
import (
|
||||
|
|
|
@ -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 (
|
||||
|
|
|
@ -22,6 +22,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 (
|
||||
|
|
|
@ -22,7 +22,8 @@ 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 provides an implementation of AVDevice for the raspberry
|
||||
// pi camera.
|
||||
package raspivid
|
||||
|
||||
import (
|
||||
|
|
|
@ -21,6 +21,9 @@ LICENSE
|
|||
You should have received a copy of the GNU General Public 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 (
|
||||
|
|
|
@ -21,6 +21,8 @@ LICENSE
|
|||
You should have received a copy of the GNU General Public License
|
||||
in gpl.txt. If not, see http://www.gnu.org/licenses.
|
||||
*/
|
||||
|
||||
// Package webcam provides an implementation of AVDevice for webcams.
|
||||
package webcam
|
||||
|
||||
import (
|
||||
|
|
Loading…
Reference in New Issue