Example #1
0
//void sws_shiftVec (SwsVector *a, int shift)
func Sws_shiftVec(a *SwsVector, s int) {
	C.sws_shiftVec((*C.struct_SwsVector)(a), C.int(s))
}
Example #2
0
//void sws_shiftVec (SwsVector *a, int shift)
func Sws_shiftVec(a *C.struct_SwsVector, s int) {
	C.sws_shiftVec(a, C.int(s))
}
Example #3
0
func (a *Vector) SwsShiftvec(s int) {
	C.sws_shiftVec((*C.struct_SwsVector)(a), C.int(s))
}