[Liblas-commits] laszip: added test for new WAVEPACKET13 compressor
liblas-commits at liblas.org
liblas-commits at liblas.org
Thu Dec 23 09:11:45 EST 2010
changeset 294dfaf3b0d3 in /Volumes/Data/www/liblas.org/laszip
details: http://hg.liblas.orglaszip?cmd=changeset;node=294dfaf3b0d3
summary: added test for new WAVEPACKET13 compressor
diffstat:
tools/laszippertest.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (21 lines):
diff -r 30313ba06a38 -r 294dfaf3b0d3 tools/laszippertest.cpp
--- a/tools/laszippertest.cpp Thu Dec 23 06:02:14 2010 -0800
+++ b/tools/laszippertest.cpp Thu Dec 23 06:11:29 2010 -0800
@@ -308,7 +308,7 @@
istream2 = new ifstream();
istream2->open("test2.lax", std::ios::in | std::ios::binary );
#endif
- if (lasunzipper2->open(istream2, num_items, items, LASZIP_COMPRESSION_ARITHMETIC) != 0)
+ if (lasunzipper2->open(*istream2, num_items, items, LASZIP_COMPRESSION_ARITHMETIC) != 0)
{
fprintf(stderr, "ERROR: could not open lasunzipper2\n");
return 0;
@@ -321,7 +321,7 @@
istream3 = new ifstream();
istream3->open("test3.lax", std::ios::in | std::ios::binary );
#endif
- if (lasunzipper3->open(istream3, num_items, items, LASZIP_COMPRESSION_RANGE) != 0)
+ if (lasunzipper3->open(*istream3, num_items, items, LASZIP_COMPRESSION_RANGE) != 0)
{
fprintf(stderr, "ERROR: could not open lasunzipper3\n");
return 0;
More information about the Liblas-commits
mailing list