annotate osdep/gettimeofday.c @ 15447:a246c4454efc
1.961: vo_quartz and vo_macosx support -ontop as well.
1.962: vo_ggi now supports ontop.
1.963: sync to x264 rev223 (options: ratetol, vbv_*)
+ also added: qp_step
1.964: Document -vf pp=ac.
1.965: Document -hr-edl-seek, based on a description by Oded Shimon.
1.966: added some hyphens in quoted examples
1.967: -edl works with MEncoder as well.
1.968: wording fix (skipped)
+ That key is really called 'Apfel'. happily fixed
author |
kraymer |
date |
Fri, 13 May 2005 23:19:06 +0000 |
parents |
5c639ec8c39e |
children |
08cac43f1e38 |
rev |
line source |
9834
|
1 #include "../config.h"
|
9829
|
2
|
|
3 #ifndef HAVE_GETTIMEOFDAY
|
|
4 #include <sys/time.h>
|
|
5 #include <sys/timeb.h>
|
|
6 void gettimeofday(struct timeval* t,void* timezone)
|
|
7 { struct timeb timebuffer;
|
|
8 ftime( &timebuffer );
|
|
9 t->tv_sec=timebuffer.time;
|
|
10 t->tv_usec=1000*timebuffer.millitm;
|
|
11 }
|
|
12 #endif
|