Use only ContextEnd for TimestampPacket completion check

Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
This commit is contained in:
Bartosz Dunajski
2021-03-31 12:50:04 +00:00
committed by Compute-Runtime-Automation
parent 6d164fa8b5
commit 2f59fafb96
2 changed files with 6 additions and 6 deletions

View File

@@ -55,7 +55,7 @@ class TimestampPackets : public TagTypeBase {
}
for (uint32_t i = 0; i < packetsUsed; i++) {
if ((packets[i].contextEnd == 1) || (packets[i].globalEnd == 1)) {
if (packets[i].contextEnd == 1) {
return false;
}
}