OnTick() private méthode

private OnTick ( long current_time, long stream_length, double current_position ) : void
current_time long
stream_length long
current_position double
Résultat void
Exemple #1
0
 static void tick_cb(IntPtr bvw, long current_time, long stream_length, double current_position)
 {
     try {
         GstPlayer bvw_managed = GLib.Object.GetObject(bvw, false) as GstPlayer;
         bvw_managed.OnTick(current_time, stream_length, current_position);
     } catch (Exception e) {
         GLib.ExceptionManager.RaiseUnhandledException(e, false);
     }
 }