//If hwaccel is NULL, returns the first registered hardware accelerator, if hwaccel is non-NULL, //returns the next registered hardware accelerator after hwaccel, or NULL if hwaccel is the last one. func (a *AvHWAccel) AvHwaccelNext() *AvHWAccel { return (*AvHWAccel)(C.av_hwaccel_next((*C.struct_AVHWAccel)(a))) }
//If hwaccel is NULL, returns the first registered hardware accelerator, if hwaccel is non-NULL, //returns the next registered hardware accelerator after hwaccel, or NULL if hwaccel is the last one. //AVHWAccel *av_hwaccel_next (const AVHWAccel *hwaccel) func Av_hwaccel_next(a *AVHWAccel) *AVHWAccel { return (*AVHWAccel)(C.av_hwaccel_next((*C.struct_AVHWAccel)(a))) }