~ubuntu-branches/ubuntu/maverick/vlc/maverick

« back to all changes in this revision

Viewing changes to include/vlc_mtime.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-09-17 21:56:14 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20080917215614-tj0vx8xzd57e52t8
Tags: 0.9.2-1ubuntu1
* New Upstream Release, exception granted by
    - dktrkranz, norsetto, Hobbsee (via irc). LP: #270404

Changes done in ubuntu:

* add libxul-dev to build-depends
* make sure that vlc is build against libxul in configure. This doesn't
  change anything in the package, but makes it more robust if building
  in an 'unclean' chroot or when modifying the package.
* debian/control: make Vcs-* fields point to the motumedia branch
* add libx264-dev and libass-dev to build-depends
  LP: #210354, #199870
* actually enable libass support by passing --enable-libass to configure
* enable libdca: add libdca-dev to build depends and --enable-libdca
* install the x264 plugin.

Changes already in the pkg-multimedia branch in debian:

* don't install usr/share/vlc/mozilla in debian/mozilla-plugin-vlc.install  
* new upstream .desktop file now registers flash video mimetype LP: #261567
* add Xb-Npp-Applications to mozilla-plugin-vlc
* remove duplicate entries in debian/vlc-nox.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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: 079f791dec08be8fa0631eac6e4fbbd160dede1f $
 
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
 
 
32
#ifndef __VLC_MTIME_H
 
33
# define __VLC_MTIME_H 1
 
34
 
 
35
/*****************************************************************************
 
36
 * LAST_MDATE: date which will never happen
 
37
 *****************************************************************************
 
38
 * This date can be used as a 'never' date, to mark missing events in a function
 
39
 * supposed to return a date, such as nothing to display in a function
 
40
 * returning the date of the first image to be displayed. It can be used in
 
41
 * comparaison with other values: all existing dates will be earlier.
 
42
 *****************************************************************************/
 
43
#define LAST_MDATE ((mtime_t)((uint64_t)(-1)/2))
 
44
 
 
45
/*****************************************************************************
 
46
 * MSTRTIME_MAX_SIZE: maximum possible size of mstrtime
 
47
 *****************************************************************************
 
48
 * This values is the maximal possible size of the string returned by the
 
49
 * mstrtime() function, including '-' and the final '\0'. It should be used to
 
50
 * allocate the buffer.
 
51
 *****************************************************************************/
 
52
#define MSTRTIME_MAX_SIZE 22
 
53
 
 
54
/* Well, Duh? But it does clue us in that we are converting from
 
55
   millisecond quantity to a second quantity or vice versa.
 
56
*/
 
57
#define MILLISECONDS_PER_SEC 1000
 
58
 
 
59
#define msecstotimestr(psz_buffer, msecs) \
 
60
  secstotimestr( psz_buffer, (msecs / (int) MILLISECONDS_PER_SEC) )
 
61
 
 
62
/*****************************************************************************
 
63
 * Prototypes
 
64
 *****************************************************************************/
 
65
VLC_EXPORT( char *,  mstrtime, ( char *psz_buffer, mtime_t date ) );
 
66
VLC_EXPORT( mtime_t, mdate,    ( void ) );
 
67
VLC_EXPORT( void,    mwait,    ( mtime_t date ) );
 
68
VLC_EXPORT( void,    msleep,   ( mtime_t delay ) );
 
69
VLC_EXPORT( char *,  secstotimestr, ( char *psz_buffer, int secs ) );
 
70
 
 
71
/*****************************************************************************
 
72
 * date_t: date incrementation without long-term rounding errors
 
73
 *****************************************************************************/
 
74
struct date_t
 
75
{
 
76
    mtime_t  date;
 
77
    uint32_t i_divider_num;
 
78
    uint32_t i_divider_den;
 
79
    uint32_t i_remainder;
 
80
};
 
81
 
 
82
VLC_EXPORT( void,    date_Init,      ( date_t *, uint32_t, uint32_t ) );
 
83
VLC_EXPORT( void,    date_Change,    ( date_t *, uint32_t, uint32_t ) );
 
84
VLC_EXPORT( void,    date_Set,       ( date_t *, mtime_t ) );
 
85
VLC_EXPORT( mtime_t, date_Get,       ( const date_t * ) );
 
86
VLC_EXPORT( void,    date_Move,      ( date_t *, mtime_t ) );
 
87
VLC_EXPORT( mtime_t, date_Increment, ( date_t *, uint32_t ) );
 
88
VLC_EXPORT( uint64_t, NTPtime64,     ( void ) );
 
89
#endif /* !__VLC_MTIME_ */