Fixed some of the style issues from golint

This commit is contained in:
H.G. Giorgis
2015-09-05 13:59:18 -04:00
parent e15811505d
commit 4874e06746
8 changed files with 13 additions and 11 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// Giorgis (habtom@giorgis.io)
//The codecs (decoders and encoders) provided by the libavcodec library
//libavcodec provides some generic global options, which can be set on all the encoders and decoders.
//Package avcodec contains the codecs (decoders and encoders) provided by the libavcodec library
//Provides some generic global options, which can be set on all the encoders and decoders.
package avcodec
//#cgo pkg-config: libavformat libavcodec libavutil libswresample
+1 -1
View File
@@ -1,7 +1,7 @@
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// Giorgis (habtom@giorgis.io)
// The input and output devices provided by the libavdevice library
// Package avdevice deals with the input and output devices provided by the libavdevice library
// The libavdevice library provides the same interface as libavformat.
// Namely, an input device is considered like a demuxer, and an output device like a muxer,
// and the interface and generic device options are the same provided by libavformat
+2 -1
View File
@@ -1,7 +1,8 @@
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// Giorgis (habtom@giorgis.io)
//Filters in the same linear chain are separated by commas, and distinct linear chains of filters are separated by semicolons.
//Package avfilter contains methods that deal with ffmpeg filters
//filters in the same linear chain are separated by commas, and distinct linear chains of filters are separated by semicolons.
//FFmpeg is enabled through the "C" libavfilter library
package avfilter
+1 -1
View File
@@ -1,7 +1,7 @@
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// Giorgis (habtom@giorgis.io)
//The libavformat library provides some generic global options, which can be set on all the muxers and demuxers.
//Package avformat provides some generic global options, which can be set on all the muxers and demuxers.
//In addition each muxer or demuxer may support so-called private options, which are specific for that component.
//Supported formats (muxers and demuxers) provided by the libavformat library
package avformat
+1 -1
View File
@@ -1,7 +1,7 @@
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// Giorgis (habtom@giorgis.io)
// The libavutil library is a utility library to aid portable multimedia programming.
// Package avutil is a utility library to aid portable multimedia programming.
// It contains safe portable string functions, random number generators, data structures,
// additional mathematics functions, cryptography and multimedia related functionality.
// Some generic features and utilities provided by the libavutil library
+4 -3
View File
@@ -2,11 +2,12 @@
//Giorgis (habtom@giorgis.io)
/*
Golang binding for FFmpeg: A comprehensive binding to the ffmpeg video/audio manipulation library.
Package goav contains golang binding for FFmpeg.
https://www.ffmpeg.org/
A comprehensive binding to the ffmpeg video/audio manipulation library:
https://www.ffmpeg.org/
Contains:
Contains:
libavcodec: encoding/decoding library
libavfilter: graph-based frame editing library
+1 -1
View File
@@ -1,8 +1,8 @@
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// Giorgis (habtom@giorgis.io)
// Package swresample provides a high-level interface to the libswresample library audio resampling utilities
// 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
/*
+1 -1
View File
@@ -1,7 +1,7 @@
// Use of this source code is governed by a MIT license that can be found in the LICENSE file.
// Giorgis (habtom@giorgis.io)
//libswscale library performs highly optimized image scaling and colorspace and pixel format conversion operations.
//Package swscale performs highly optimized image scaling and colorspace and pixel format conversion operations.
//Rescaling: is the process of changing the video size. Several rescaling options and algorithms are available.
//Pixel format conversion: is the process of converting the image format and colorspace of the image.
package swscale