diff --git a/ChangeLog b/ChangeLog index 69b7550875e0ab227da0246150fa98abad3d2d64..82d63bbdb76c7d9c00a7f853f17bfa5a214dc20e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-07-17 Andrea Bulgarelli <bulgarelli@iasfbo.inaf.it> +TAG v4.3.0 ++ added exception generation if LZ4 decompression has problems ++ removed Packet::decompressData. Now Packet::getData() performs the decompression operation in a transparent way + 2014-07-14 Andrea Bulgarelli <bulgarelli@iasfbo.inaf.it>, Andrea Zoli <zoli@iasfbo.inaf.it> TAG v4.2.0 + Generating stream file in the same path of the xml diff --git a/PacketLib.xcodeproj/project.xcworkspace/xcuserdata/bulgarelli.xcuserdatad/UserInterfaceState.xcuserstate b/PacketLib.xcodeproj/project.xcworkspace/xcuserdata/bulgarelli.xcuserdatad/UserInterfaceState.xcuserstate index a178733408eaf3121a4ad6bd46705123277e33e5..d92c5f83fc8e31881d3a23ebc4afb5bd63522581 100644 Binary files a/PacketLib.xcodeproj/project.xcworkspace/xcuserdata/bulgarelli.xcuserdatad/UserInterfaceState.xcuserstate and b/PacketLib.xcodeproj/project.xcworkspace/xcuserdata/bulgarelli.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/include/Packet.h b/include/Packet.h index dae41844ac74733fc5582e079671222c5f151bcb..be75e4563d56857a55c81fa005c5d59547387ff5 100644 --- a/include/Packet.h +++ b/include/Packet.h @@ -84,7 +84,7 @@ public: ///\post the variable part of the "source data field" is compressed and should be sent or stored virtual ByteStreamPtr compressData(enum CompressionAlgorithms compressionAlgorithm, byte compressionLevel); - ///\return Get the the variable part of the source data field as a ByteStream that contains the data and decompress (if compressed) them without changing the packet (the variable part of the "source data field") + ///Get the the variable part of the source data field as a ByteStream that contains the data and decompress (if compressed) them without changing the packet (the variable part of the "source data field") virtual ByteStreamPtr getData(); ///Get the compression algorithm used for this packet