From 7fc65516ab90f5736ffa5236a13cef6cff390045 Mon Sep 17 00:00:00 2001 From: nareix Date: Sat, 30 Jul 2016 15:03:43 +0800 Subject: [PATCH] add comments --- av/av.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/av/av.go b/av/av.go index 3f8e722..5fe1d0b 100644 --- a/av/av.go +++ b/av/av.go @@ -76,7 +76,7 @@ func (self SampleFormat) IsPlanar() bool { } } -// Audio channel layout +// Audio channel layout. type ChannelLayout uint16 func (self ChannelLayout) String() string { @@ -153,13 +153,13 @@ func (self CodecType) IsVideo() bool { return self&codecTypeAudioBit == 0 } -// Make a new audio codec type +// Make a new audio codec type. func MakeAudioCodecType(base uint32) (c CodecType) { c = CodecType(base)<