diff --git a/avcodec/avpicture.go b/avcodec/avpicture.go index e51b247..ff6a1e5 100644 --- a/avcodec/avpicture.go +++ b/avcodec/avpicture.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Avpicture package avcodec //#cgo pkg-config: libavcodec diff --git a/avcodec/bitstreamfilter.go b/avcodec/bitstreamfilter.go index 625e838..583d99b 100644 --- a/avcodec/bitstreamfilter.go +++ b/avcodec/bitstreamfilter.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Bit Stream Filters package avcodec //#cgo pkg-config: libavcodec diff --git a/avcodec/codecs.go b/avcodec/codecs.go index 2abf6cb..040f5bb 100644 --- a/avcodec/codecs.go +++ b/avcodec/codecs.go @@ -1,13 +1,13 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Multiple encoders have the same ID and are able to encode compatible streams. package avcodec //#cgo pkg-config: libavformat //#include import "C" +// Multiple encoders have the same ID and are able to encode compatible streams. const ( AV_CODEC_ID_012V = int(C.AV_CODEC_ID_012V) AV_CODEC_ID_4XM = int(C.AV_CODEC_ID_4XM) diff --git a/avcodec/context.go b/avcodec/context.go index 39b94e9..1807df5 100644 --- a/avcodec/context.go +++ b/avcodec/context.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Avcodec context methods package avcodec //#cgo pkg-config: libavcodec diff --git a/avcodec/context_struct.go b/avcodec/context_struct.go index 38ccf7f..31765db 100644 --- a/avcodec/context_struct.go +++ b/avcodec/context_struct.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Context struct values package avcodec func (ctxt *Context) ActiveThreadType() int { diff --git a/avcodec/packet.go b/avcodec/packet.go index b152fd8..37384d4 100644 --- a/avcodec/packet.go +++ b/avcodec/packet.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Packet methods package avcodec //#cgo pkg-config: libavcodec diff --git a/avcodec/packet_struct.go b/avcodec/packet_struct.go index a05f40c..eb86b7a 100644 --- a/avcodec/packet_struct.go +++ b/avcodec/packet_struct.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Packet package avcodec func (p *Packet) Buf() *AvBufferRef { diff --git a/avcodec/pixelformat.go b/avcodec/pixelformat.go index 2ef2995..80921e6 100644 --- a/avcodec/pixelformat.go +++ b/avcodec/pixelformat.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Pixelformat package avcodec //#cgo pkg-config: libavcodec diff --git a/avdevice/format.go b/avdevice/format.go index fc347a2..a5cf9bf 100644 --- a/avdevice/format.go +++ b/avdevice/format.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Input and Output format package avdevice /* diff --git a/avfilter/filter.go b/avfilter/filter.go index 11a8be3..2f09320 100644 --- a/avfilter/filter.go +++ b/avfilter/filter.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Filer Graphs package avfilter /* diff --git a/avfilter/graph.go b/avfilter/graph.go index 2ef0210..9e082d0 100644 --- a/avfilter/graph.go +++ b/avfilter/graph.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Filer Graphs package avfilter /* diff --git a/avformat/context.go b/avformat/context.go index 1776e18..41ed56d 100644 --- a/avformat/context.go +++ b/avformat/context.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Format Context package avformat //#cgo pkg-config: libavformat diff --git a/avformat/context_struct.go b/avformat/context_struct.go index e5e44cf..d0abc53 100644 --- a/avformat/context_struct.go +++ b/avformat/context_struct.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Format Context package avformat //#cgo pkg-config: libavformat diff --git a/avformat/stream.go b/avformat/stream.go index f996d4b..69ea508 100644 --- a/avformat/stream.go +++ b/avformat/stream.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Streams package avformat //#cgo pkg-config: libavformat diff --git a/avformat/stream_struct.go b/avformat/stream_struct.go index ef5dc5a..d518330 100644 --- a/avformat/stream_struct.go +++ b/avformat/stream_struct.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Stream methods package avformat //#cgo pkg-config: libavformat diff --git a/avutil/frame.go b/avutil/frame.go index e2670c3..2d50759 100644 --- a/avutil/frame.go +++ b/avutil/frame.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Utility Frames package avutil /* diff --git a/avutil/memory.go b/avutil/memory.go index 5699a41..5fb9f01 100644 --- a/avutil/memory.go +++ b/avutil/memory.go @@ -1,7 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// Utility Memory package avutil /* diff --git a/swresample/context.go b/swresample/context.go index 1e01293..705ba09 100644 --- a/swresample/context.go +++ b/swresample/context.go @@ -1,8 +1,6 @@ // Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) -// The process of changing the sampling rate of a discrete signal to obtain a new discrete representation of the underlying continuous signal. -// resampler provides a high-level interface to the libswresample library audio resampling utilities package swresample /*