Exemple #1
0
//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)))
}
Exemple #2
0
//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)))
}