예제 #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)))
}