Skip to content

Commit

Permalink
fix: ts inspect ptsTime/dtsTime typo (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey authored Feb 24, 2021
1 parent b87ed0f commit 112e6e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tools/ts-inspector.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ var adjustTimestamp_ = function(segmentInfo, baseTimestamp) {
frame.pts = handleRollover(frame.pts, videoBaseTimestamp);
// time in seconds
frame.dtsTime = frame.dts / ONE_SECOND_IN_TS;
frame.ptsTime = frame.dts / ONE_SECOND_IN_TS;
frame.ptsTime = frame.pts / ONE_SECOND_IN_TS;
}
}
};
Expand Down

0 comments on commit 112e6e1

Please sign in to comment.