Skip to content

Commit aa26601

Browse files
committed
fix linter errors
1 parent 93aa555 commit aa26601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/detectors/VideoDecoderIssueDetector.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ class VideoDecoderIssueDetector extends BaseIssueDetector {
7070
}
7171

7272
if (deltaTotalDecodeTime > 0 && deltaFramesDecoded > 0) {
73-
decodeTimePerFrame = deltaTotalDecodeTime * 1000 / deltaFramesDecoded;
73+
decodeTimePerFrame = (deltaTotalDecodeTime * 1000) / deltaFramesDecoded;
7474
}
7575

7676
allDecodeTimePerFrame.push(decodeTimePerFrame);

0 commit comments

Comments
 (0)