Fix some protocol differences between netcdf-c and the Hyrax server.

re: Partly addresses issue https://github.com/Unidata/netcdf-c/issues/1712.

1. Turn on Hyrax Hack to accept Hyrax style attribute containers.
2. Support Url type as alias for String.
3. Accept the special attribute, "__DAP4_Checksum_CRC32",
   to control per-variable checksums.
4. Make _DAP4_xxx attributes be reserved and only accessible
   by name (ala _SuperBlock attribute).
5. Fix handling of checksums. There is a hack in the code
   that uses an extra flag in the chunk header to indicate
   that all variables have checksums. This violates the spec
   and will be removed once it is possible to regenerate the
   test cases.

Note that checksumming with the Hyrax test server has not
been tested. This, along with some other probable inconsistencies,
needs fixing when OPeNDAP and Unidata can agree on the proper
specification. Testing will be included.
This commit is contained in:
Dennis Heimbigner 2020-05-30 17:36:25 -06:00
parent 43417c9f7f
commit 65414eeaa4
146 changed files with 462 additions and 354 deletions

View File

@ -835,9 +835,11 @@ int main() {int x = CURLOPT_TCP_KEEPALIVE;}" HAVE_CURLOPT_KEEPALIVE)
# Check to see if we have libcurl 7.66 or later
CHECK_C_SOURCE_COMPILES("
#include <curl/curl.h>
#if (LIBCURL_VERSION_MAJOR*1000 + LIBCURL_VERSION_MINOR >= 7066)
choke me
#endif" HAVE_LIBCURL_766)
int main() {
#if (LIBCURL_VERSION_MAJOR*1000 + LIBCURL_VERSION_MINOR < 7066)
choke me;
#endif
}" HAVE_LIBCURL_766)
# Option to Build DAP2+DAP4 Clients
OPTION(ENABLE_DAP "Enable DAP2 and DAP4 Client." ON)
@ -859,7 +861,7 @@ ENDIF()
# Option to support byte-range reading of remote datasets
OPTION(ENABLE_BYTERANGE "Enable byte-range access to remote datasets.." OFF)
IF(NOT CURL_LIBRARY)
IF(NOT CURL_LIBRARIES AND NOT CURL_LIBRARY)
IF(ENABLE_BYTERANGE)
MESSAGE(FATAL_ERROR "Byte-range support specified, CURL libraries are not found.")
ENDIF()

View File

@ -7,6 +7,7 @@ This file contains a high-level description of this package's evolution. Release
## 4.8.0 - TBD
* [Bug Fix] Fix some protocol bugs/differences between the netcdf-c library and the OPeNDAP Hyrax server. Also cleanup checksum handling [https://github.com/Unidata/netcdf-c/issues/1712].
* [Bug Fix] Add necessary __declspec declarations to allow compilation
of netcdf library without causing errors or (_declspec related)
warnings [https://github.com/Unidata/netcdf-c/issues/1725].

View File

@ -14,7 +14,7 @@ include $(top_srcdir)/lib_flags.am
#TESTS_ENVIRONMENT = export SETX=1;
LDADD = ${top_builddir}/liblib/libnetcdf.la
AM_CPPFLAGS += -I$(top_srcdir)/libdap4
AM_CPPFLAGS += -I$(top_srcdir)/libdap4 -I${topdir}/include
# Set up the tests; do the .sh first, then .c
check_PROGRAMS =
@ -28,6 +28,7 @@ check_PROGRAMS += test_parse test_meta test_data
test_parse_SOURCES = test_parse.c test_common.h
test_meta_SOURCES = test_meta.c test_common.h
test_data_SOURCES = test_data.c test_common.h
TESTS += test_parse.sh
if BUILD_UTILITIES
@ -43,10 +44,13 @@ test_raw.log: test_parse.log
test_meta.log: test_raw.log
test_data.log: test_meta.log
noinst_PROGRAMS = dump
dump_SOURCES = dump.c
if ENABLE_DAP_REMOTE_TESTS
# Note: This program name was changed to findtestserver4
# to avoid cmake complaint about duplicate targets.
noinst_PROGRAMS = findtestserver4 pingurl4
noinst_PROGRAMS += findtestserver4 pingurl4
findtestserver4_SOURCES = findtestserver4.c
pingurl4_SOURCES = pingurl4.c
endif

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/vu32[0:3]" ;
:_DAP4_Little_Endian = 1UB ;
data:
vu32 = -1169720286, -920699049, -2088732436, 1060190036 ;

View File

@ -6,5 +6,4 @@ variables:
// global attributes:
string :_dap4.ce = "/vu32[0:3]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -4,8 +4,6 @@ dimensions:
variables:
int vu32(_Anonymous6) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vu32 = -1169720286, -920699049, -2088732436, 1060190036, -1123468835,

View File

@ -4,6 +4,4 @@ dimensions:
variables:
int vu32(_Anonymous6) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -12,7 +12,6 @@ variables:
// global attributes:
string :_dap4.ce = "/vu8[1][0:2:2];/vd[1];/vs[1][0];/vo[0][1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
vu8 =

View File

@ -12,5 +12,4 @@ variables:
// global attributes:
string :_dap4.ce = "/vu8[1][0:2:2];/vd[1];/vs[1][0];/vo[0][1]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/v16[0:1,3]" ;
:_DAP4_Little_Endian = 1UB ;
data:
v16 = 1, 2, 4 ;

View File

@ -6,5 +6,4 @@ variables:
// global attributes:
string :_dap4.ce = "/v16[0:1,3]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/v16[3,0:1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
v16 = 4, 1, 2 ;

View File

@ -6,5 +6,4 @@ variables:
// global attributes:
string :_dap4.ce = "/v16[3,0:1]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -22,8 +22,6 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vu8 =

View File

@ -22,6 +22,4 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -22,8 +22,6 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vu8 =

View File

@ -22,6 +22,4 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -24,8 +24,6 @@ variables:
cloud_class_t secondary_cloud ;
cloud_class_t secondary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v8 = -128 ;

View File

@ -24,6 +24,4 @@ variables:
cloud_class_t secondary_cloud ;
cloud_class_t secondary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -24,8 +24,6 @@ variables:
cloud_class_t secondary_cloud ;
cloud_class_t secondary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v8 = 58 ;

View File

@ -24,6 +24,4 @@ variables:
cloud_class_t secondary_cloud ;
cloud_class_t secondary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -8,8 +8,6 @@ variables:
cloud_class_t primary_cloud ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
primary_cloud = Stratus ;

View File

@ -8,6 +8,4 @@ variables:
cloud_class_t primary_cloud ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -5,8 +5,6 @@ types:
Altocumulus = 7, Cirrostratus = 8, Cirrocumulus = 9, Cirrus = 10,
Missing = 127} ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
group: h {
variables:

View File

@ -5,8 +5,6 @@ types:
Altocumulus = 7, Cirrostratus = 8, Cirrocumulus = 9, Cirrus = 10,
Missing = 127} ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
group: h {
variables:

View File

@ -12,7 +12,6 @@ variables:
// global attributes:
string :_dap4.ce = "/primary_cloud[1:2:4]" ;
:_DAP4_Little_Endian = 1UB ;
data:
primary_cloud = Stratus, Cumulonimbus ;

View File

@ -12,5 +12,4 @@ variables:
// global attributes:
string :_dap4.ce = "/primary_cloud[1:2:4]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -10,8 +10,6 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
primary_cloud = Clear, Stratus, Clear, Cumulonimbus, _ ;

View File

@ -10,6 +10,4 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -5,8 +5,6 @@ variables:
uint uv32 ;
uv32:_FillValue = 17U ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
uv8 = 240 ;

View File

@ -5,6 +5,4 @@ variables:
uint uv32 ;
uv32:_FillValue = 17U ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -2,8 +2,6 @@ netcdf test_groups1.nc {
dimensions:
dim1 = 5 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
group: g {
dimensions:

View File

@ -2,8 +2,6 @@ netcdf test_groups1 {
dimensions:
dim1 = 5 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
group: g {
dimensions:

View File

@ -2,8 +2,6 @@ netcdf test_one_var.nc {
variables:
int t ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
t = 17 ;

View File

@ -2,6 +2,4 @@ netcdf test_one_var {
variables:
int t ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/t[1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
t = 37 ;

View File

@ -6,5 +6,4 @@ variables:
// global attributes:
string :_dap4.ce = "/t[1]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/t[0:1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
t = 17, 37 ;

View File

@ -6,5 +6,4 @@ variables:
// global attributes:
string :_dap4.ce = "/t[0:1]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -4,8 +4,6 @@ dimensions:
variables:
int t(d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
t = 17, 37 ;

View File

@ -4,6 +4,4 @@ dimensions:
variables:
int t(d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -4,8 +4,6 @@ types:
variables:
opaque16_t vo1 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vo1 = 0X0123456789ABCDEF0000000000000000 ;

View File

@ -4,6 +4,4 @@ types:
variables:
opaque8_t vo1 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -9,7 +9,6 @@ variables:
// global attributes:
string :_dap4.ce = "/vo2[1][0:1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
vo2 =

View File

@ -9,5 +9,4 @@ variables:
// global attributes:
string :_dap4.ce = "/vo2[1][0:1]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -6,8 +6,6 @@ dimensions:
variables:
opaque16_t vo2(d2, d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vo2 =

View File

@ -6,6 +6,4 @@ dimensions:
variables:
opaque8_t vo2(d2, d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -8,8 +8,6 @@ types:
variables:
s_t s ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
s = {{-920699049, 896}} ;

View File

@ -8,6 +8,4 @@ types:
variables:
s_t s ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -10,8 +10,6 @@ dimensions:
variables:
s_t s(_Anonymous2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
s = {{-920699049, 896}},

View File

@ -10,6 +10,4 @@ dimensions:
variables:
s_t s(_Anonymous2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -7,8 +7,6 @@ types:
variables:
s_t s ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
s = {1, -2} ;

View File

@ -7,6 +7,4 @@ types:
variables:
s_t s ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -11,7 +11,6 @@ variables:
// global attributes:
string :_dap4.ce = "/s[0:2:3][0:1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
s =

View File

@ -11,5 +11,4 @@ variables:
// global attributes:
string :_dap4.ce = "/s[0:2:3][0:1]" ;
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -10,8 +10,6 @@ dimensions:
variables:
s_t s(dx, dy) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
s =

View File

@ -10,6 +10,4 @@ dimensions:
variables:
s_t s(dx, dy) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -13,8 +13,6 @@ variables:
s_t s(dx, dy) ;
string s:_edu.ucar.maps = "/z", "/t" ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
z = 0.7276533, 0.785633, 0.513679, 0.2468447 ;

View File

@ -13,6 +13,4 @@ variables:
s_t s(dx, dy) ;
string s:_edu.ucar.maps = "/z", "/t" ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -15,8 +15,6 @@ types:
variables:
x_t x ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
x = {{1, -2}, {255, 90}} ;

View File

@ -15,6 +15,4 @@ types:
variables:
x_t x ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -12,8 +12,6 @@ types:
variables:
x_t x ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
x = {{{17}}} ;

View File

@ -12,6 +12,4 @@ types:
variables:
x_t x ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -7,8 +7,6 @@ types:
variables:
s_t s ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
s = {1, -2} ;

View File

@ -7,6 +7,4 @@ types:
variables:
s_t s ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -16,7 +16,6 @@ variables:
string pr:_edu.ucar.maps = "/time", "/lat", "/lon" ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
string :title = "example for workshop" ;
data:

View File

@ -16,6 +16,5 @@ variables:
string pr:_edu.ucar.maps = "/time", "/lat", "/lon" ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
string :title = "example for workshop" ;
}

View File

@ -4,8 +4,6 @@ dimensions:
variables:
string vs(d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vs = "Καλημέα", "abc" ;

View File

@ -4,6 +4,4 @@ dimensions:
variables:
string vs(d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -7,8 +7,6 @@ types:
variables:
x_t x ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
x = {{1}, {3}, {5}, {7}} ;

View File

@ -7,6 +7,4 @@ types:
variables:
x_t x ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -10,8 +10,6 @@ dimensions:
variables:
x_t x(d3, d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
x =

View File

@ -10,6 +10,4 @@ dimensions:
variables:
x_t x(d3, d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -10,8 +10,6 @@ types:
variables:
v1_t v1 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v1 = {{{1}, {3}, {5}, {7}}} ;

View File

@ -10,6 +10,4 @@ types:
variables:
v1_t v1 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -12,8 +12,6 @@ dimensions:
variables:
v1_t v1 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v1 = {{{{1}, {3}, {5}, {7}}, {}}} ;

View File

@ -12,6 +12,4 @@ dimensions:
variables:
v1_t v1 ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -12,8 +12,6 @@ dimensions:
variables:
v1_t v1(d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v1 = {{{1}, {3}, {5}, {7}}}, {{{100}, {200}}} ;

View File

@ -12,6 +12,4 @@ dimensions:
variables:
v1_t v1(d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -9,8 +9,6 @@ dimensions:
variables:
v1_t v1(d) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v1 = {{1}, {3}, {5}, {7}}, {{17}, {19}} ;

View File

@ -9,6 +9,4 @@ dimensions:
variables:
v1_t v1(d) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -9,8 +9,6 @@ dimensions:
variables:
v1_t v1(d) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v1 = {{17}, {19}, {21}} ;

View File

@ -9,6 +9,4 @@ dimensions:
variables:
v1_t v1(d) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -10,8 +10,6 @@ dimensions:
variables:
v1_t v1(d1, d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v1 =

View File

@ -10,6 +10,4 @@ dimensions:
variables:
v1_t v1(d1, d2) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/vu32[0:3]" ;
:_DAP4_Little_Endian = 1UB ;
data:
vu32 = -1169720286, -920699049, -2088732436, 1060190036 ;

View File

@ -4,8 +4,6 @@ dimensions:
variables:
int vu32(_Anonymous6) ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vu32 = -1169720286, -920699049, -2088732436, 1060190036, -1123468835,

View File

@ -12,7 +12,6 @@ variables:
// global attributes:
string :_dap4.ce = "/vu8[1][0:2:2];/vd[1];/vs[1][0];/vo[0][1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
vu8 =

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/v16[0:1,3]" ;
:_DAP4_Little_Endian = 1UB ;
data:
v16 = 1, 2, 4 ;

View File

@ -6,7 +6,6 @@ variables:
// global attributes:
string :_dap4.ce = "/v16[3,0:1]" ;
:_DAP4_Little_Endian = 1UB ;
data:
v16 = 4, 1, 2 ;

View File

@ -22,8 +22,6 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vu8 =

View File

@ -22,8 +22,6 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
vu8 =

View File

@ -24,8 +24,6 @@ variables:
cloud_class_t secondary_cloud ;
cloud_class_t secondary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v8 = -128 ;

View File

@ -24,8 +24,6 @@ variables:
cloud_class_t secondary_cloud ;
cloud_class_t secondary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
v8 = 58 ;

View File

@ -8,8 +8,6 @@ variables:
cloud_class_t primary_cloud ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
primary_cloud = Stratus ;

View File

@ -5,8 +5,6 @@ types:
Altocumulus = 7, Cirrostratus = 8, Cirrocumulus = 9, Cirrus = 10,
Missing = 127} ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
group: h {
variables:

View File

@ -12,7 +12,6 @@ variables:
// global attributes:
string :_dap4.ce = "/primary_cloud[1:2:4]" ;
:_DAP4_Little_Endian = 1UB ;
data:
primary_cloud = Stratus, Cumulonimbus ;

View File

@ -10,8 +10,6 @@ variables:
cloud_class_t primary_cloud(d5) ;
cloud_class_t primary_cloud:_FillValue = Missing ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
primary_cloud = Clear, Stratus, Clear, Cumulonimbus, _ ;

View File

@ -5,8 +5,6 @@ variables:
uint uv32 ;
uv32:_FillValue = 17U ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
data:
uv8 = 240 ;

View File

@ -4,7 +4,4 @@ variables:
short v16 ;
uint uv32 ;
uv32:_FillValue = 17U ;
// global attributes:
:_DAP4_Little_Endian = 1UB ;
}

Some files were not shown because too many files have changed in this diff Show More