You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
366 B

  1. /* time.h -- time declarations
  2. *
  3. * Copyright (C) 2004 Svend Sorensen
  4. * For license terms, see the file COPYING in this distribution.
  5. */
  6. #ifndef TIME_H
  7. #define TIME_H
  8. long time_msf_to_frame (int m, int s, int f);
  9. long time_mmssff_to_frame (char *mmssff);
  10. void time_frame_to_msf (long frame, int *m, int *s, int *f);
  11. char *time_frame_to_mmssff (long f);
  12. #endif