Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QcmpCompressionLibrary
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BioinformaticDataCompression
QcmpCompressionLibrary
Commits
426fbaa3
Commit
426fbaa3
authored
4 years ago
by
Vojtech Moravec
Browse files
Options
Downloads
Patches
Plain Diff
Report plane data sizes on inspection, when verbose is ON.
parent
f3f46a45
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/azgracompress/compression/ImageDecompressor.java
+10
-0
10 additions, 0 deletions
...ain/java/azgracompress/compression/ImageDecompressor.java
with
10 additions
and
0 deletions
src/main/java/azgracompress/compression/ImageDecompressor.java
+
10
−
0
View file @
426fbaa3
...
@@ -117,6 +117,7 @@ public class ImageDecompressor extends CompressorDecompressorBase {
...
@@ -117,6 +117,7 @@ public class ImageDecompressor extends CompressorDecompressorBase {
final
long
headerSize
=
header
.
getHeaderSize
();
final
long
headerSize
=
header
.
getHeaderSize
();
final
long
dataSize
=
fileSize
-
headerSize
;
final
long
dataSize
=
fileSize
-
headerSize
;
final
IImageDecompressor
decompressor
=
getImageDecompressor
(
header
);
final
IImageDecompressor
decompressor
=
getImageDecompressor
(
header
);
if
(
decompressor
!=
null
)
{
if
(
decompressor
!=
null
)
{
...
@@ -150,6 +151,15 @@ public class ImageDecompressor extends CompressorDecompressorBase {
...
@@ -150,6 +151,15 @@ public class ImageDecompressor extends CompressorDecompressorBase {
}
}
logBuilder
.
append
(
"\n=== Input file is "
).
append
(
validFile
?
"VALID"
:
"INVALID"
).
append
(
" ===\n"
);
logBuilder
.
append
(
"\n=== Input file is "
).
append
(
validFile
?
"VALID"
:
"INVALID"
).
append
(
" ===\n"
);
if
(
header
!=
null
&&
options
.
isVerbose
())
{
final
long
[]
planeDataSizes
=
header
.
getPlaneDataSizes
();
long
planeIndex
=
0
;
for
(
final
long
planeDataSize
:
planeDataSizes
)
{
logBuilder
.
append
(
String
.
format
(
"Plane: %d - %d Bytes\n"
,
planeIndex
++,
planeDataSize
));
}
}
return
logBuilder
.
toString
();
return
logBuilder
.
toString
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment