예제 #1
0
파일: swresample.go 프로젝트: hyhy01/goav
//int swr_is_initialized (struct SwrContext *s)
//Check whether an swr context has been initialized or not.
func Swr_is_initialized(s *SwrContext) int {
	return int(C.swr_is_initialized((*C.struct_SwrContext)(s)))
}
예제 #2
0
파일: context.go 프로젝트: gale320/goav
//Check whether an swr context has been initialized or not.
func (s *Context) SwrIsInitialized() int {
	return int(C.swr_is_initialized((*C.struct_SwrContext)(s)))
}