]> git.sesse.net Git - x264/blob - common/mdate.c
Update source file headers
[x264] / common / mdate.c
1 /*****************************************************************************
2  * mdate.c: time measurement
3  *****************************************************************************
4  * Copyright (C) 2003-2010 x264 project
5  *
6  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02111, USA.
21  *
22  * This program is also available under a commercial proprietary license.
23  * For more information, contact us at licensing@x264.com.
24  *****************************************************************************/
25
26 #ifndef __MINGW32__
27 #include <sys/time.h>
28 #else
29 #include <sys/types.h>
30 #include <sys/timeb.h>
31 #endif
32 #include <time.h>
33
34 #include "common.h"
35 #include "osdep.h"
36
37 int64_t x264_mdate( void )
38 {
39 #ifndef __MINGW32__
40     struct timeval tv_date;
41     gettimeofday( &tv_date, NULL );
42     return( (int64_t) tv_date.tv_sec * 1000000 + (int64_t) tv_date.tv_usec );
43 #else
44     struct _timeb tb;
45     _ftime(&tb);
46     return ((int64_t)tb.time * (1000) + (int64_t)tb.millitm) * (1000);
47 #endif
48 }
49