small formatting changes

This commit is contained in:
Ella Pietraroia 2020-04-23 14:42:34 +09:30
parent 2f95c3836c
commit 0213c89b1b
3 changed files with 22 additions and 5 deletions

View File

@ -25,9 +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 functionality for handling the h264 video codec. // Package h264 provides functionality for handling the H.264 video codec.
// This includes extraction from an RTP stream, lexing of NAL units from // This includes extraction from an RTP stream, lexing of NAL units from
// byte stream and decoding. // byte stream, and decoding.
package h264 package h264
import ( import (

View File

@ -1,8 +1,25 @@
/* /*
DESCRIPTION
helpers.go provides general helper utilities.
AUTHORS AUTHORS
Saxon Nelson-Milton <saxon@ausocean.org>, The Australian Ocean Laboratory (AusOcean) Saxon Nelson-Milton <saxon@ausocean.org>, The Australian Ocean Laboratory (AusOcean)
LICENSE
rtp.go is Copyright (C) 2018 the Australian Ocean Lab (AusOcean)
It is free software: you can redistribute it and/or modify them
under the terms of the GNU General Public License as published by the
Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
It is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with revid in gpl.txt. If not, see [GNU licenses](http://www.gnu.org/licenses).
*/ */
package h264dec package h264dec