时间戳处理新增接口支持获取相对时间戳

This commit is contained in:
xiongziliang
2023-03-22 21:18:46 +08:00
parent e08bb73604
commit dfd37ff350
2 changed files with 12 additions and 0 deletions

View File

@@ -20,6 +20,15 @@ using namespace toolkit;
namespace mediakit {
int64_t DeltaStamp::relativeStamp(int64_t stamp) {
_relative_stamp += deltaStamp(stamp);
return _relative_stamp;
}
int64_t DeltaStamp::relativeStamp(){
return _relative_stamp;
}
int64_t DeltaStamp::deltaStamp(int64_t stamp) {
if(!_last_stamp){
//第一次计算时间戳增量,时间戳增量为0