mtime.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * mtime.h: high resolution time management functions
  3.  * This header provides portable high precision time management functions,
  4.  * which should be the only ones used in other segments of the program, since
  5.  * functions like gettimeofday() and ftime() are not always supported.
  6.  * Most functions are declared as inline or as macros since they are only
  7.  * interfaces to system calls and have to be called frequently.
  8.  * 'm' stands for 'micro', since maximum resolution is the microsecond.
  9.  * Functions prototyped are implemented in interface/mtime.c.
  10.  *****************************************************************************
  11.  * Copyright (C) 1996, 1997, 1998, 1999, 2000 VideoLAN
  12.  * $Id: mtime.h 8647 2004-09-06 04:38:46Z rocky $
  13.  *
  14.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  15.  *
  16.  * This program is free software; you can redistribute it and/or modify
  17.  * it under the terms of the GNU General Public License as published by
  18.  * the Free Software Foundation; either version 2 of the License, or
  19.  * (at your option) any later version.
  20.  * 
  21.  * This program is distributed in the hope that it will be useful,
  22.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  24.  * GNU General Public License for more details.
  25.  *
  26.  * You should have received a copy of the GNU General Public License
  27.  * along with this program; if not, write to the Free Software
  28.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  29.  *****************************************************************************/
  30. /*****************************************************************************
  31.  * LAST_MDATE: date which will never happen
  32.  *****************************************************************************
  33.  * This date can be used as a 'never' date, to mark missing events in a function
  34.  * supposed to return a date, such as nothing to display in a function
  35.  * returning the date of the first image to be displayed. It can be used in
  36.  * comparaison with other values: all existing dates will be earlier.
  37.  *****************************************************************************/
  38. #define LAST_MDATE ((mtime_t)((uint64_t)(-1)/2))
  39. /*****************************************************************************
  40.  * MSTRTIME_MAX_SIZE: maximum possible size of mstrtime
  41.  *****************************************************************************
  42.  * This values is the maximal possible size of the string returned by the
  43.  * mstrtime() function, including '-' and the final ''. It should be used to
  44.  * allocate the buffer.
  45.  *****************************************************************************/
  46. #define MSTRTIME_MAX_SIZE 22
  47. /* Well, Duh? But it does clue us in that we are converting from
  48.    millisecond quantity to a second quantity or vice versa.
  49. */
  50. #define MILLISECONDS_PER_SEC 1000
  51. #define msecstotimestr(psz_buffer, msecs) 
  52.   secstotimestr( psz_buffer, (msecs / (int) MILLISECONDS_PER_SEC) )
  53. /*****************************************************************************
  54.  * Prototypes
  55.  *****************************************************************************/
  56. VLC_EXPORT( char *,  mstrtime, ( char *psz_buffer, mtime_t date ) );
  57. VLC_EXPORT( mtime_t, mdate,    ( void ) );
  58. VLC_EXPORT( void,    mwait,    ( mtime_t date ) );
  59. VLC_EXPORT( void,    msleep,   ( mtime_t delay ) );
  60. VLC_EXPORT( char *,  secstotimestr, ( char *psz_buffer, int secs ) );
  61. /*****************************************************************************
  62.  * date_t: date incrementation without long-term rounding errors
  63.  *****************************************************************************/
  64. struct date_t
  65. {
  66.     mtime_t  date;
  67.     uint32_t i_divider_num;
  68.     uint32_t i_divider_den;
  69.     uint32_t i_remainder;
  70. };
  71. VLC_EXPORT( void,    date_Init,      ( date_t *, uint32_t, uint32_t ) );
  72. VLC_EXPORT( void,    date_Change,    ( date_t *, uint32_t, uint32_t ) );
  73. VLC_EXPORT( void,    date_Set,       ( date_t *, mtime_t ) );
  74. VLC_EXPORT( mtime_t, date_Get,       ( const date_t * ) );
  75. VLC_EXPORT( void,    date_Move,      ( date_t *, mtime_t ) );
  76. VLC_EXPORT( mtime_t, date_Increment, ( date_t *, uint32_t ) );