Move av_gettime() back to lavf/utils.c
Originally committed as revision 9706 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
c993a83131
commit
82e4ac2c97
@ -25,8 +25,6 @@
|
|||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#endif
|
#endif
|
||||||
#include <sys/time.h>
|
|
||||||
#include <time.h>
|
|
||||||
|
|
||||||
#ifndef HAVE_SYS_POLL_H
|
#ifndef HAVE_SYS_POLL_H
|
||||||
#if defined(__MINGW32__)
|
#if defined(__MINGW32__)
|
||||||
@ -36,16 +34,6 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
|
||||||
* gets the current time in micro seconds.
|
|
||||||
*/
|
|
||||||
int64_t av_gettime(void)
|
|
||||||
{
|
|
||||||
struct timeval tv;
|
|
||||||
gettimeofday(&tv,NULL);
|
|
||||||
return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef CONFIG_NETWORK
|
#ifdef CONFIG_NETWORK
|
||||||
#include "network.h"
|
#include "network.h"
|
||||||
|
|
||||||
|
@ -23,6 +23,8 @@
|
|||||||
#include "opt.h"
|
#include "opt.h"
|
||||||
#include "avstring.h"
|
#include "avstring.h"
|
||||||
#include "riff.h"
|
#include "riff.h"
|
||||||
|
#include <sys/time.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
#undef NDEBUG
|
#undef NDEBUG
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
@ -2498,6 +2500,16 @@ int parse_frame_rate(int *frame_rate_num, int *frame_rate_den, const char *arg)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* gets the current time in micro seconds.
|
||||||
|
*/
|
||||||
|
int64_t av_gettime(void)
|
||||||
|
{
|
||||||
|
struct timeval tv;
|
||||||
|
gettimeofday(&tv,NULL);
|
||||||
|
return (int64_t)tv.tv_sec * 1000000 + tv.tv_usec;
|
||||||
|
}
|
||||||
|
|
||||||
int64_t parse_date(const char *datestr, int duration)
|
int64_t parse_date(const char *datestr, int duration)
|
||||||
{
|
{
|
||||||
const char *p;
|
const char *p;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user