10 lines
		
	
	
		
			241 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			241 B
		
	
	
	
		
			Python
		
	
	
	
	
	
import ctypes
 | 
						|
from ctypes.util import find_library
 | 
						|
 | 
						|
 | 
						|
libopus = ctypes.CDLL(find_library('opus'))
 | 
						|
 | 
						|
c_int_pointer = ctypes.POINTER(ctypes.c_int)
 | 
						|
c_int16_pointer = ctypes.POINTER(ctypes.c_int16)
 | 
						|
c_float_pointer = ctypes.POINTER(ctypes.c_float)
 |