view osdep/gettimeofday.c @ 12179:aeb377ccb110

Fix vp61 keyframe search (do not skip blocks if 1st frame is keyframe)
author rtognimp
date Mon, 12 Apr 2004 17:13:15 +0000
parents 5c639ec8c39e
children 08cac43f1e38
line wrap: on
line source

#include "../config.h"

#ifndef HAVE_GETTIMEOFDAY
#include <sys/time.h>
#include <sys/timeb.h>
void gettimeofday(struct timeval* t,void* timezone)
{       struct timeb timebuffer;
        ftime( &timebuffer );
        t->tv_sec=timebuffer.time;
        t->tv_usec=1000*timebuffer.millitm;
}
#endif