コード例 #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
ファイル: avcodec.go プロジェクト: stephenwithav/goav
//int 	avcodec_is_open (AVCodecContext *s)
func Avcodec_is_open(ctxt *AVCodecContext) int {
	return int(C.avcodec_is_open((*C.struct_AVCodecContext)(ctxt)))
}