vlc_mtime.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:6k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * vlc_mtime.h: high resolution time management functions
  3.  *****************************************************************************
  4.  * This header provides portable high precision time management functions,
  5.  * which should be the only ones used in other segments of the program, since
  6.  * functions like gettimeofday() and ftime() are not always supported.
  7.  * Most functions are declared as inline or as macros since they are only
  8.  * interfaces to system calls and have to be called frequently.
  9.  * 'm' stands for 'micro', since maximum resolution is the microsecond.
  10.  * Functions prototyped are implemented in interface/mtime.c.
  11.  *****************************************************************************
  12.  * Copyright (C) 1996, 1997, 1998, 1999, 2000 the VideoLAN team
  13.  * $Id: 0a75dacdf964f4c3a19c47f709ff2ec6eaa6abec $
  14.  *
  15.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  16.  *
  17.  * This program is free software; you can redistribute it and/or modify
  18.  * it under the terms of the GNU General Public License as published by
  19.  * the Free Software Foundation; either version 2 of the License, or
  20.  * (at your option) any later version.
  21.  *
  22.  * This program is distributed in the hope that it will be useful,
  23.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  25.  * GNU General Public License for more details.
  26.  *
  27.  * You should have received a copy of the GNU General Public License
  28.  * along with this program; if not, write to the Free Software
  29.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  30.  *****************************************************************************/
  31. #ifndef __VLC_MTIME_H
  32. # define __VLC_MTIME_H 1
  33. /*****************************************************************************
  34.  * LAST_MDATE: date which will never happen
  35.  *****************************************************************************
  36.  * This date can be used as a 'never' date, to mark missing events in a function
  37.  * supposed to return a date, such as nothing to display in a function
  38.  * returning the date of the first image to be displayed. It can be used in
  39.  * comparaison with other values: all existing dates will be earlier.
  40.  *****************************************************************************/
  41. #define LAST_MDATE ((mtime_t)((uint64_t)(-1)/2))
  42. /*****************************************************************************
  43.  * MSTRTIME_MAX_SIZE: maximum possible size of mstrtime
  44.  *****************************************************************************
  45.  * This values is the maximal possible size of the string returned by the
  46.  * mstrtime() function, including '-' and the final ''. It should be used to
  47.  * allocate the buffer.
  48.  *****************************************************************************/
  49. #define MSTRTIME_MAX_SIZE 22
  50. /* Well, Duh? But it does clue us in that we are converting from
  51.    millisecond quantity to a second quantity or vice versa.
  52. */
  53. #define MILLISECONDS_PER_SEC 1000
  54. #define msecstotimestr(psz_buffer, msecs) 
  55.   secstotimestr( psz_buffer, (msecs / (int) MILLISECONDS_PER_SEC) )
  56. /*****************************************************************************
  57.  * Prototypes
  58.  *****************************************************************************/
  59. VLC_EXPORT( char *,  mstrtime, ( char *psz_buffer, mtime_t date ) );
  60. VLC_EXPORT( mtime_t, mdate,    ( void ) );
  61. VLC_EXPORT( void,    mwait,    ( mtime_t date ) );
  62. VLC_EXPORT( void,    msleep,   ( mtime_t delay ) );
  63. VLC_EXPORT( char *,  secstotimestr, ( char *psz_buffer, int secs ) );
  64. #if defined (__GNUC__) && defined (__linux__)
  65. # define VLC_HARD_MIN_SLEEP 1000 /* Linux has 100, 250, 300 or 1000Hz */
  66. # define VLC_SOFT_MIN_SLEEP 9000000
  67. static
  68. __attribute__((unused))
  69. __attribute__((noinline))
  70. __attribute__((error("sorry, cannot sleep for such short a time")))
  71. mtime_t impossible_delay( mtime_t delay )
  72. {
  73.     (void) delay;
  74.     return VLC_HARD_MIN_SLEEP;
  75. }
  76. static
  77. __attribute__((unused))
  78. __attribute__((noinline))
  79. __attribute__((warning("use proper event handling instead of short delay")))
  80. mtime_t harmful_delay( mtime_t delay )
  81. {
  82.     return delay;
  83. }
  84. # define check_delay( d ) 
  85.     ((__builtin_constant_p(d < VLC_HARD_MIN_SLEEP) 
  86.    && (d < VLC_HARD_MIN_SLEEP)) 
  87.        ? impossible_delay(d) 
  88.        : ((__builtin_constant_p(d < VLC_SOFT_MIN_SLEEP) 
  89.        && (d < VLC_SOFT_MIN_SLEEP)) 
  90.            ? harmful_delay(d) 
  91.            : d))
  92. static
  93. __attribute__((unused))
  94. __attribute__((noinline))
  95. __attribute__((error("deadlines can not be constant")))
  96. mtime_t impossible_deadline( mtime_t deadline )
  97. {
  98.     return deadline;
  99. }
  100. # define check_deadline( d ) 
  101.     (__builtin_constant_p(d) ? impossible_deadline(d) : d)
  102. #else
  103. # define check_delay(d) (d)
  104. # define check_deadline(d) (d)
  105. #endif
  106. #define msleep(d) msleep(check_delay(d))
  107. #define mwait(d) mwait(check_deadline(d))
  108. /*****************************************************************************
  109.  * date_t: date incrementation without long-term rounding errors
  110.  *****************************************************************************/
  111. struct date_t
  112. {
  113.     mtime_t  date;
  114.     uint32_t i_divider_num;
  115.     uint32_t i_divider_den;
  116.     uint32_t i_remainder;
  117. };
  118. VLC_EXPORT( void,    date_Init,      ( date_t *, uint32_t, uint32_t ) );
  119. VLC_EXPORT( void,    date_Change,    ( date_t *, uint32_t, uint32_t ) );
  120. VLC_EXPORT( void,    date_Set,       ( date_t *, mtime_t ) );
  121. VLC_EXPORT( mtime_t, date_Get,       ( const date_t * ) );
  122. VLC_EXPORT( void,    date_Move,      ( date_t *, mtime_t ) );
  123. VLC_EXPORT( mtime_t, date_Increment, ( date_t *, uint32_t ) );
  124. VLC_EXPORT( mtime_t, date_Decrement, ( date_t *, uint32_t ) );
  125. VLC_EXPORT( uint64_t, NTPtime64,     ( void ) );
  126. #endif /* !__VLC_MTIME_ */