Ejemplo n.º 1
0
Archivo: codecCtx.go Proyecto: tvib/gmf
func (this *CodecCtx) IsOpen() bool {
	return (int(C.avcodec_is_open(this.avCodecCtx)) > 0)
}
Ejemplo n.º 2
0
func (ctxt *Context) AvcodecIsOpen() int {
	return int(C.avcodec_is_open((*C.struct_AVCodecContext)(ctxt)))
}
Ejemplo n.º 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)))
}