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