mirror of https://bitbucket.org/ausocean/av.git
container: add package comments to flv, pes, meta and psi packages
This commit is contained in:
parent
6e1ccf6bda
commit
48a3aea7f4
|
@ -25,6 +25,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 flv
|
||||
|
||||
import (
|
||||
|
|
|
@ -29,6 +29,7 @@ LICENSE
|
|||
// See https://wwwimages2.adobe.com/content/dam/acom/en/devnet/flv/video_file_format_spec_v10.pdf
|
||||
// for format specification.
|
||||
|
||||
// Package flv provides FLV encoding and related functions.
|
||||
package flv
|
||||
|
||||
import "encoding/binary"
|
||||
|
|
|
@ -3,7 +3,8 @@ NAME
|
|||
meta.go
|
||||
|
||||
DESCRIPTION
|
||||
See Readme.md
|
||||
Package meta provides functions for adding to, modifying and reading
|
||||
metadata, as well as encoding and decoding functions.
|
||||
|
||||
AUTHOR
|
||||
Saxon Nelson-Milton <saxon@ausocean.org>
|
||||
|
@ -25,6 +26,8 @@ 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 (
|
||||
|
|
|
@ -2,9 +2,6 @@
|
|||
NAME
|
||||
meta_test.go
|
||||
|
||||
DESCRIPTION
|
||||
See Readme.md
|
||||
|
||||
AUTHOR
|
||||
Saxon Nelson-Milton <saxon@ausocean.org>
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ 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 "github.com/Comcast/gots"
|
||||
|
|
|
@ -24,6 +24,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
|
||||
|
||||
import (
|
||||
|
|
Loading…
Reference in New Issue