//int64_t av_stream_get_end_pts (const Stream *st) //Returns the pts of the last muxed packet + its duration. func (s *Stream) AvStreamGetEndPts() int64 { return int64(C.av_stream_get_end_pts((*C.struct_AVStream)(s))) }
//int64_t av_stream_get_end_pts (const AVStream *st) //Returns the pts of the last muxed packet + its duration. func Av_stream_get_end_pts(s *AVStream) int64 { return int64(C.av_stream_get_end_pts((*C.struct_AVStream)(s))) }