Ejemplo n.º 1
0
Archivo: context.go Proyecto: ovr/goav
//Pause a network-based stream (e.g.
func (s *Context) AvReadPause() int {
	return int(C.av_read_pause((*C.struct_AVFormatContext)(s)))
}
Ejemplo n.º 2
0
//int av_read_pause (AVFormatContext *s)
//Pause a network-based stream (e.g.
func Av_read_pause(s *AVFormatContext) int {
	return int(C.av_read_pause((*C.struct_AVFormatContext)(s)))
}