Index: libs/libmythtv/mpeg/pespacket.h
===================================================================
--- libs/libmythtv/mpeg/pespacket.h	(revision 9263)
+++ libs/libmythtv/mpeg/pespacket.h	(working copy)
@@ -58,8 +58,17 @@
           _fullbuffer(const_cast<unsigned char*>(pesdata)),
           _pesdataSize(0), _allocSize(0)
     {
+        bool test = false;
+        if (!HasCRC()) {
+            test = true;
+            VERBOSE(VB_SIPARSER, QString("PESPacket has no CRC and has length %1").arg(Length()));
+        }
+
         _badPacket = !VerifyCRC();
         _pesdataSize = max(Length()-1 + (HasCRC() ? 4 : 0), (uint)0);
+
+        if (test)
+            VERBOSE(VB_SIPARSER, "PESPacket created.");
     }
 
   private:
