Hi , Does anyone have idea about timestamp used by ffserver? In ffserver.c, function http_server(), I can see the code : cur_time = av_gettime() / 1000; As my understanding, the return value of av_gettime() is "us"(microsecond), but why ffserver set cur_time=av_gettime()/1000? it is in "ns"(nanosecond), right?