示例#1
0
文件: codecCtx.go 项目: tvib/gmf
func (this *CodecCtx) IsOpen() bool {
	return (int(C.avcodec_is_open(this.avCodecCtx)) > 0)
}
示例#2
0
文件: context.go 项目: gale320/goav
func (ctxt *Context) AvcodecIsOpen() int {
	return int(C.avcodec_is_open((*C.struct_AVCodecContext)(ctxt)))
}
示例#3
0
//int 	avcodec_is_open (AVCodecContext *s)
func Avcodec_is_open(ctxt *AVCodecContext) int {
	return int(C.avcodec_is_open((*C.struct_AVCodecContext)(ctxt)))
}