Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
c62d2f9c
Commit
c62d2f9c
authored
Nov 09, 2017
by
Uwe Schulzweida
Browse files
printinfo.h: added ccsds compression.
parent
f570a7b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/printinfo.h
View file @
c62d2f9c
...
...
@@ -97,8 +97,8 @@ void printFiletype(int streamID, int vlistID)
int
comptype
=
vlistInqVarCompType
(
vlistID
,
varID
);
if
(
comptype
)
{
if
(
comptype
==
CDI_COMPRESS_SZIP
)
printf
(
"
SZIP
"
);
else
if
(
comptype
==
CDI_COMPRESS_ZIP
)
printf
(
"
ZIP
"
);
if
(
comptype
==
CDI_COMPRESS_SZIP
)
printf
(
"
szip
"
);
else
if
(
comptype
==
CDI_COMPRESS_ZIP
)
printf
(
"
zip
"
);
break
;
}
...
...
@@ -113,7 +113,8 @@ void printFiletype(int streamID, int vlistID)
int
comptype
=
vlistInqVarCompType
(
vlistID
,
varID
);
if
(
comptype
)
{
if
(
comptype
==
CDI_COMPRESS_JPEG
)
printf
(
" JPEG"
);
if
(
comptype
==
CDI_COMPRESS_JPEG
)
printf
(
" jpeg"
);
else
if
(
comptype
==
CDI_COMPRESS_SZIP
)
printf
(
" ccsds"
);
break
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment