From ac21b7d8081b845d4b2adfc8ab7368ba855f1d3f Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 26 Feb 2020 14:27:19 +1030 Subject: [PATCH] codec: add package comments to codec packages --- codec/h264/extract.go | 1 + codec/h264/h264dec/decode.go | 1 + codec/h264/h264dec/helpers.go | 1 + codec/h264/lex_test.go | 2 -- codec/mjpeg/jpeg.go | 1 + 5 files changed, 4 insertions(+), 2 deletions(-) diff --git a/codec/h264/extract.go b/codec/h264/extract.go index dfe07e7c..9c7da115 100644 --- a/codec/h264/extract.go +++ b/codec/h264/extract.go @@ -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 h264 import ( diff --git a/codec/h264/h264dec/decode.go b/codec/h264/h264dec/decode.go index 9cb1e7b1..f209de5b 100644 --- a/codec/h264/h264dec/decode.go +++ b/codec/h264/h264dec/decode.go @@ -22,6 +22,7 @@ LICENSE in gpl.txt. If not, see http://www.gnu.org/licenses. */ +// Package h264dec provides a decoder for h264 frames. package h264dec import ( diff --git a/codec/h264/h264dec/helpers.go b/codec/h264/h264dec/helpers.go index 92124cec..d215b839 100644 --- a/codec/h264/h264dec/helpers.go +++ b/codec/h264/h264dec/helpers.go @@ -5,6 +5,7 @@ DESCRIPTION AUTHORS Saxon Nelson-Milton , The Australian Ocean Laboratory (AusOcean) */ + package h264dec import ( diff --git a/codec/h264/lex_test.go b/codec/h264/lex_test.go index 87e6b7d2..c6db34e2 100644 --- a/codec/h264/lex_test.go +++ b/codec/h264/lex_test.go @@ -26,8 +26,6 @@ LICENSE along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. */ -// lex_test.go provides tests for the lexer in lex.go. - package h264 import ( diff --git a/codec/mjpeg/jpeg.go b/codec/mjpeg/jpeg.go index 6506fc39..be09289a 100644 --- a/codec/mjpeg/jpeg.go +++ b/codec/mjpeg/jpeg.go @@ -30,6 +30,7 @@ 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 (