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.
*/
// Package h264 provides functions for processing and converting video from
// byte streams to H264 format.
// Package h264 provides functionality for handling the h264 video codec.
//This includes extraction from an RTP stream, lexing of NAL units from
// byte stream and decoding.
package h264
import (

View File

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

View File

@ -23,8 +23,9 @@ LICENSE
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
// RTP/JPEG stream defined by RFC 2435.
// Package mjpeg provides functionality for extraction of MJPEG from an
// RTP-MJPEG stream and lexing of individual JPEGs from a bare bones
// MJPEG stream.
package mjpeg
import (

View File

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

View File

@ -24,6 +24,7 @@ LICENSE
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).
*/
package pcm
import (

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -25,7 +25,7 @@ LICENSE
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
import (

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -24,6 +24,7 @@ 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.
*/
package flac
import (

View File

@ -22,8 +22,8 @@ LICENSE
in gpl.txt. If not, see http://www.gnu.org/licenses.
*/
// Package filter provides the interface and implementations of the filters to be used
// on video input that has been lexed.
// Package filter provides the interface and implementations of the filters
// to be used on video input that has been lexed.
package filter
import (