mdate.c
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:2k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual 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. //配置MS VC环境 --@lia
  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. #include "common.h"
  29. #include "osdep.h"
  30. int64_t x264_mdate( void )
  31. {
  32. #if !(defined(_MSC_VER) || defined(__MINGW32__))
  33.     struct timeval tv_date;
  34.     gettimeofday( &tv_date, NULL );
  35.     return( (int64_t) tv_date.tv_sec * 1000000 + (int64_t) tv_date.tv_usec );
  36. #else
  37.     struct _timeb tb;
  38.     _ftime(&tb);
  39.     return ((int64_t)tb.time * (1000) + (int64_t)tb.millitm) * (1000);
  40. #endif
  41. }