diff options
author | Nathan E. Egge <unlord@xiph.org> | 2024-07-29 19:13:13 +0000 |
---|---|---|
committer | Rémi Denis-Courmont <remi@remlab.net> | 2024-08-05 21:16:26 +0300 |
commit | ba88e8174a84858858f4575356b377b88506e2f2 (patch) | |
tree | 337de1baa318517872595502cd9b654d4fc3beab | |
parent | 4edfc11a28ed763ba93e7cf8a656bb3e1b425c5d (diff) | |
download | ffmpeg-ba88e8174a84858858f4575356b377b88506e2f2.tar.gz |
lavu: Set default FF_TIMER_UNITS to "ns"
Signed-off-by: Nathan E. Egge <unlord@xiph.org>
Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
-rw-r--r-- | libavutil/timer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/timer.h b/libavutil/timer.h index 663daf81c6..03706b0d10 100644 --- a/libavutil/timer.h +++ b/libavutil/timer.h @@ -80,6 +80,7 @@ return ts.tv_sec * INT64_C(1000000000) + ts.tv_nsec; } # define AV_READ_TIME ff_read_time +# define FF_TIMER_UNITS "ns" # endif #endif |