Skip to content

Commit fb98a03

Browse files
authored
Merge branch 'AOMediaCodec:main' into main
2 parents 1911de2 + 5119e38 commit fb98a03

File tree

669 files changed

+54
-235
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

669 files changed

+54
-235
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 0 deletions

README.md

Lines changed: 9 additions & 2 deletions

code/test/tools/iamfplayer/include/a2b_endian.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static inline uint16_t bswap64(const uint64_t u64) {
7171
((__GNUC__ > 4) || ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)))
7272
return __builtin_bswap64(u64);
7373
#else
74-
return bswap32(u64) + 0ULL << 32 | bswap32(u64 >> 32);
74+
return (bswap32(u64) + 0ULL) << 32 | bswap32(u64 >> 32);
7575
#endif
7676
#else
7777
return u64;

proto/sync.proto

Lines changed: 0 additions & 23 deletions
This file was deleted.

tests/coverage.csv

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
"primary_tested_spec_section","primary_tested_spec_section_field","tests"
2-
"3.1","Immersive Audio OBU Syntax and Semantics","test_000013"
32
"3.1","obu_type","test_000018"
43
"3.2","num_samples_to_trim_at_end","test_000000_3, test_000003, test_000005, test_000012, test_000017, test_000085, test_000090, test_000212, test_000213, test_000214, test_000215, test_000216, test_000217, test_000218, test_000219, test_000220"
54
"3.2","num_samples_to_trim_at_start","test_000023, test_000212, test_000213, test_000214, test_000215, test_000216, test_000217, test_000218, test_000219, test_000220"
@@ -25,8 +24,8 @@
2524
"3.6.1","constant_subblock_duration","test_000071"
2625
"3.6.1","constant_subblock_duration == 0","test_000088"
2726
"3.6.1","num_subblocks","test_000071, test_000088"
28-
"3.6.1","param_definition_mode","test_000013, test_000016, test_000061, test_000066, test_000068, test_000071, test_000088"
29-
"3.6.1","parameter_id","test_000013, test_000071, test_000088, test_000408"
27+
"3.6.1","param_definition_mode","test_000016, test_000061, test_000066, test_000068, test_000071, test_000088"
28+
"3.6.1","parameter_id","test_000071, test_000088, test_000408"
3029
"3.6.1","parameter_rate","test_000061, test_000071, test_000088"
3130
"3.6.1","subblock_duration","test_000088"
3231
"3.6.2","Scalable Channel Layout Config Syntax and Semantics","test_000059, test_000227, test_000228, test_000229, test_000230"

tests/test_000000_3_f.mp4

10 Bytes
Binary file not shown.

tests/test_000000_3_s.mp4

10 Bytes
Binary file not shown.

tests/test_000002_f.mp4

10 Bytes
Binary file not shown.

tests/test_000002_s.mp4

10 Bytes
Binary file not shown.

tests/test_000003_f.mp4

10 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)