From 34ce81370d8fe327113a8e4dba7fdb1e31872850 Mon Sep 17 00:00:00 2001 From: Saxon Date: Sun, 4 Aug 2019 13:45:28 +0930 Subject: [PATCH] codec/h264/h264dec: added file headers to slice.go and slice_test.go --- codec/h264/h264dec/slice.go | 9 +++++++++ codec/h264/h264dec/slice_test.go | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/codec/h264/h264dec/slice.go b/codec/h264/h264dec/slice.go index 6930c89c..024ea13b 100644 --- a/codec/h264/h264dec/slice.go +++ b/codec/h264/h264dec/slice.go @@ -1,3 +1,12 @@ +/* +DESCRIPTION + slice.go provides parsing functionality for slice RBSP. + +AUTHORS + Saxon Nelson-Milton , The Australian Ocean Laboratory (AusOcean) + mrmod +*/ + package h264dec import ( diff --git a/codec/h264/h264dec/slice_test.go b/codec/h264/h264dec/slice_test.go index 59f8314b..b5de6a6a 100644 --- a/codec/h264/h264dec/slice_test.go +++ b/codec/h264/h264dec/slice_test.go @@ -1,3 +1,12 @@ +/* +DESCRIPTION + slice_test.go provides testing for parsing utilities found in slice.go. + +AUTHORS + Saxon Nelson-Milton , The Australian Ocean Laboratory (AusOcean) + Shawn Smith , The Australian Ocean Laboratory (AusOcean) +*/ + package h264dec import (