Go to the documentation of this file.
21 #ifndef AVUTIL_X86_TIMER_H
22 #define AVUTIL_X86_TIMER_H
28 #define AV_READ_TIME read_time
33 __asm__
volatile(
"rdtsc" :
"=a" (
a),
"=d" (d));
34 return ((uint64_t)d << 32) + a;
39 #define AV_READ_TIME __rdtsc