no package level comments in test files

This commit is contained in:
Ella Pietraroia 2020-04-23 12:34:11 +09:30
parent f55ecd2a9d
commit 149f95af84
22 changed files with 13 additions and 27 deletions

View File

@ -25,8 +25,9 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package h264 provides functions for processing and converting video from // Package h264 provides functionality for handling the h264 video codec.
// byte streams to H264 format. //This includes extraction from an RTP stream, lexing of NAL units from
// byte stream and decoding.
package h264 package h264
import ( import (

View File

@ -5,7 +5,6 @@ AUTHORS
Saxon Nelson-Milton <saxon@ausocean.org>, The Australian Ocean Laboratory (AusOcean) Saxon Nelson-Milton <saxon@ausocean.org>, The Australian Ocean Laboratory (AusOcean)
*/ */
// Package provides general helper utilities to the h264 package.
package h264dec package h264dec
import ( import (

View File

@ -23,8 +23,9 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package mjpeg provides provides an extractor to get JPEG images from a // Package mjpeg provides functionality for extraction of MJPEG from an
// RTP/JPEG stream defined by RFC 2435. // RTP-MJPEG stream and lexing of individual JPEGs from a bare bones
// MJPEG stream.
package mjpeg package mjpeg
import ( import (

View File

@ -30,7 +30,6 @@ LICENSE
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
// Package mjpeg a lexer and decoder for mjpeg video.
package mjpeg package mjpeg
import ( import (

View File

@ -24,6 +24,7 @@ LICENSE
You should have received a copy of the GNU General Public License in gpl.txt. You should have received a copy of the GNU General Public License in gpl.txt.
If not, see [GNU licenses](http://www.gnu.org/licenses). If not, see [GNU licenses](http://www.gnu.org/licenses).
*/ */
package pcm package pcm
import ( import (

View File

@ -26,7 +26,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package flv provides FLV encoding and related functions.
package flv package flv
import ( import (

View File

@ -22,8 +22,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package meta provides functions for adding to, modifying and reading
// metadata, as well as encoding and decoding functions.
package meta package meta
import ( import (

View File

@ -26,7 +26,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package pes provides encoding of PES packets.
package pes package pes
import ( import (

View File

@ -25,7 +25,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package psi provides encoding of PSI packets.
package psi package psi
import ( import (

View File

@ -25,7 +25,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package psi provides encoding of PSI packets.
package psi package psi
import ( import (

View File

@ -26,7 +26,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package psi provides encoding of PSI packets.
package psi package psi
import ( import (

View File

@ -25,7 +25,7 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package psi provides encoding of PSI packets. // Package psi provides encoding of MPEG-TS program specific information.
package psi package psi
import ( import (

View File

@ -25,7 +25,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package psi provides encoding of PSI packets.
package psi package psi
import ( import (

View File

@ -25,7 +25,6 @@ LICENSE
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
// Package psi provides encoding of PSI packets.
package psi package psi
const ( const (

View File

@ -23,7 +23,6 @@ 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

@ -36,8 +36,8 @@ import (
"bitbucket.org/ausocean/av/revid/config" "bitbucket.org/ausocean/av/revid/config"
) )
// AVDevice describes a configurable audio or video device from which media data // Package device provides an interface and implementations for input devices
// can be obtained. AVDevice is an io.Reader. // that can be started and stopped from which media data can be obtained.
type AVDevice interface { type AVDevice interface {
io.Reader io.Reader

View File

@ -22,7 +22,6 @@ 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,8 +22,6 @@ 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,8 +22,6 @@ 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

@ -22,7 +22,6 @@ 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 (

View File

@ -24,6 +24,7 @@ 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
along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. along with revid in gpl.txt. If not, see http://www.gnu.org/licenses.
*/ */
package flac package flac
import ( import (

View File

@ -22,8 +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 filter provides the interface and implementations of the filters to be used // Package filter provides the interface and implementations of the filters
// on video input that has been lexed. // to be used on video input that has been lexed.
package filter package filter
import ( import (