コード例 #1
0
ファイル: swscale.go プロジェクト: stephenwithav/goav
//void sws_printVec2 (SwsVector *a, AVClass *log_ctx, int log_level)
//Print with av_log() a textual representation of the vector a if log_level <= av_log_level.
func Sws_printVec2(a *SwsVector, lctx *AVClass, l int) {
	C.sws_printVec2((*C.struct_SwsVector)(a), (*C.struct_AVClass)(lctx), C.int(l))
}
コード例 #2
0
ファイル: swscale.go プロジェクト: hyhy01/goav
//void sws_printVec2 (SwsVector *a, AVClass *log_ctx, int log_level)
//Print with av_log() a textual representation of the vector a if log_level <= av_log_level.
func Sws_printVec2(a *C.struct_SwsVector, lctx *C.struct_AVClass, l int) {
	C.sws_printVec2(a, lctx, C.int(l))
}
コード例 #3
0
ファイル: vector.go プロジェクト: gale320/goav
//Print with av_log() a textual representation of the vector a if log_level <= av_log_level.
func (a *Vector) SwsPrintvec2(lctx *Class, l int) {
	C.sws_printVec2((*C.struct_SwsVector)(a), (*C.struct_AVClass)(lctx), C.int(l))
}