From 0213c89b1b5365a69b7b4bea9652c521418cd943 Mon Sep 17 00:00:00 2001 From: Ella Pietraroia Date: Thu, 23 Apr 2020 14:42:34 +0930 Subject: [PATCH] small formatting changes --- codec/h264/extract.go | 6 +++--- codec/h264/h264dec/helpers.go | 19 ++++++++++++++++++- protocol/rtp/rtp.go | 2 +- 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/codec/h264/extract.go b/codec/h264/extract.go index 2741ea09..62d4453b 100644 --- a/codec/h264/extract.go +++ b/codec/h264/extract.go @@ -25,9 +25,9 @@ LICENSE along with revid in gpl.txt. If not, see http://www.gnu.org/licenses. */ -// 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 provides functionality for handling the H.264 video codec. +// This includes extraction from an RTP stream, lexing of NAL units from +// byte stream, and decoding. package h264 import ( diff --git a/codec/h264/h264dec/helpers.go b/codec/h264/h264dec/helpers.go index 5c9ea076..9078b7e7 100644 --- a/codec/h264/h264dec/helpers.go +++ b/codec/h264/h264dec/helpers.go @@ -1,8 +1,25 @@ /* - +DESCRIPTION + helpers.go provides general helper utilities. AUTHORS Saxon Nelson-Milton , 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 diff --git a/protocol/rtp/rtp.go b/protocol/rtp/rtp.go index 5a9851bf..7068441b 100644 --- a/protocol/rtp/rtp.go +++ b/protocol/rtp/rtp.go @@ -5,7 +5,7 @@ NAME DESCRIPTION See Readme.md - See https://tools.ietf.org/html/rfc6184 and https://tools.ietf.org/html/rfc3550 + See https://tools.ietf.org/html/rfc6184 and https://tools.ietf.org/html/rfc3550 for rtp-h264 and rtp standards. AUTHOR