// Use of this source code is governed by a MIT license that can be found in the LICENSE file. // Giorgis (habtom@giorgis.io) //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 //#cgo pkg-config: libavformat libavcodec libavutil libavdevice libavfilter libswresample libswscale //#include //#include //#include //#include //#include //#include //#include import "C" const ( AVIO_FLAG_READ = int(C.AVIO_FLAG_READ) AVIO_FLAG_WRITE = int(C.AVIO_FLAG_WRITE) AVIO_FLAG_READ_WRITE = int(C.AVIO_FLAG_READ_WRITE) )