From fcf540af8ed22247d58d8921d01ef453f6a74862 Mon Sep 17 00:00:00 2001 From: Erik Zandvliet Date: Thu, 4 Dec 2014 13:39:03 +0100 Subject: [PATCH] Removed a debug message --- lib/ts_packet.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ts_packet.cpp b/lib/ts_packet.cpp index 28ef9696..a7c072ed 100644 --- a/lib/ts_packet.cpp +++ b/lib/ts_packet.cpp @@ -923,7 +923,6 @@ namespace TS { unsigned int loc = 4 + (AdaptationField() > 1 ? AdaptationFieldLen() + 1 : 0) + getOffset() + getSectionLength(); unsigned int newVal;//this will hold the CRC32 value; unsigned int pidLoc = 4 + (AdaptationField() > 1 ? AdaptationFieldLen() + 1 : 0) + getOffset() + 1;//location of PCRPID - INFO_MSG("Calculating checksum from offset %d, over %d bytes", pidLoc, loc - pidLoc); newVal = checksum::crc32(-1, strBuf.c_str() + pidLoc, loc - pidLoc);//calculating checksum over all the fields from table ID to the last stream element if (strBuf.size() < 188) { strBuf.resize(188);