├── .clang-format ├── .clang_complete ├── .github └── workflows │ ├── build.yml │ └── check_format.yml ├── .gitignore ├── .readthedocs.yml ├── CHANGELOG.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake ├── embed_resource.cmake ├── embedded_resource.cpp.in ├── embedded_resource.hpp.in └── uninstall.cmake.in ├── codecov.yml ├── config ├── admConfig.cmake.in └── version.hpp.in ├── docs ├── Doxyfile ├── Makefile ├── changelog.rst ├── conf.py ├── element_api.rst ├── getting_started.rst ├── index.rst ├── irt_logo.png ├── library_design.rst ├── reference_document.rst ├── reference_elements.rst ├── reference_helpers.rst ├── reference_read_write.rst ├── reference_sadm_elements.rst ├── reference_utilities.rst ├── requirements.txt ├── tutorial.rst └── update_deps.sh ├── examples ├── CMakeLists.txt ├── create_from_scratch.cpp ├── create_sadm_from_scratch.cpp ├── foreground_background.cpp ├── multiple_languages_1.cpp ├── multiple_languages_2.cpp ├── multiple_storylines.cpp ├── parse_sadm_xml.cpp ├── parse_xml.cpp └── voice_over.cpp ├── format.sh ├── include └── adm │ ├── adm.hpp │ ├── common_definitions.hpp │ ├── detail │ ├── auto_base.hpp │ ├── auto_base_detail.hpp │ ├── enum_bitmask.hpp │ ├── id_assigner.hpp │ ├── id_map.hpp │ ├── id_parser.hpp │ ├── named_option_helper.hpp │ ├── named_type.hpp │ ├── named_type_validators.hpp │ ├── optional_comparison.hpp │ ├── print_helper.hpp │ └── type_traits.hpp │ ├── document.hpp │ ├── element_variant.hpp │ ├── elements.hpp │ ├── elements │ ├── audio_block_format_binaural.hpp │ ├── audio_block_format_direct_speakers.hpp │ ├── audio_block_format_hoa.hpp │ ├── audio_block_format_id.hpp │ ├── audio_block_format_matrix.hpp │ ├── audio_block_format_objects.hpp │ ├── audio_channel_format.hpp │ ├── audio_channel_format_id.hpp │ ├── audio_content.hpp │ ├── audio_content_id.hpp │ ├── audio_object.hpp │ ├── audio_object_id.hpp │ ├── audio_object_interaction.hpp │ ├── audio_pack_format.hpp │ ├── audio_pack_format_hoa.hpp │ ├── audio_pack_format_id.hpp │ ├── audio_programme.hpp │ ├── audio_programme_id.hpp │ ├── audio_programme_ref_screen.hpp │ ├── audio_stream_format.hpp │ ├── audio_stream_format_id.hpp │ ├── audio_track_format.hpp │ ├── audio_track_format_id.hpp │ ├── audio_track_uid.hpp │ ├── audio_track_uid_id.hpp │ ├── channel_lock.hpp │ ├── common_parameters.hpp │ ├── dialogue.hpp │ ├── format_descriptor.hpp │ ├── frequency.hpp │ ├── gain.hpp │ ├── gain_interaction_range.hpp │ ├── head_locked.hpp │ ├── headphone_virtualise.hpp │ ├── importance.hpp │ ├── jump_position.hpp │ ├── label.hpp │ ├── loudness_metadata.hpp │ ├── nfc_ref_dist.hpp │ ├── normalization.hpp │ ├── object_divergence.hpp │ ├── position.hpp │ ├── position_interaction_range.hpp │ ├── position_offset.hpp │ ├── position_offset_types.hpp │ ├── position_types.hpp │ ├── private │ │ ├── auto_parent.hpp │ │ └── parent_attorneys.hpp │ ├── profile_list.hpp │ ├── screen_edge_lock.hpp │ ├── screen_ref.hpp │ ├── speaker_position.hpp │ ├── time.hpp │ └── type_descriptor.hpp │ ├── elements_fwd.hpp │ ├── errors.hpp │ ├── helper │ ├── element_range.hpp │ └── get_optional_property.hpp │ ├── parse.hpp │ ├── path.hpp │ ├── private │ ├── changed_id_traits.hpp │ ├── copy.hpp │ ├── document_parser.hpp │ ├── rapidxml_formatter.hpp │ ├── rapidxml_utils.hpp │ ├── rapidxml_wrapper.hpp │ ├── xml_parser_helper.hpp │ └── xml_writer.hpp │ ├── route.hpp │ ├── route_tracer.hpp │ ├── serial.hpp │ ├── serial │ ├── audio_track.hpp │ ├── changed_ids.hpp │ ├── frame_format.hpp │ ├── frame_format_id.hpp │ ├── frame_header.hpp │ ├── frame_header_parser.hpp │ ├── transport_id.hpp │ └── transport_track_format.hpp │ ├── utilities │ ├── block_duration_assignment.hpp │ ├── comparator.hpp │ ├── copy.hpp │ ├── element_io.hpp │ ├── id_assignment.hpp │ ├── lookup.hpp │ ├── object_creation.hpp │ └── time_conversion.hpp │ └── write.hpp ├── resources └── common_definitions.xml ├── src ├── CMakeLists.txt ├── common_definitions.cpp ├── detail │ └── id_assigner.cpp ├── document.cpp ├── elements │ ├── audio_block_format_binaural.cpp │ ├── audio_block_format_direct_speakers.cpp │ ├── audio_block_format_hoa.cpp │ ├── audio_block_format_id.cpp │ ├── audio_block_format_matrix.cpp │ ├── audio_block_format_objects.cpp │ ├── audio_channel_format.cpp │ ├── audio_channel_format_id.cpp │ ├── audio_content.cpp │ ├── audio_content_id.cpp │ ├── audio_object.cpp │ ├── audio_object_id.cpp │ ├── audio_object_interaction.cpp │ ├── audio_pack_format.cpp │ ├── audio_pack_format_hoa.cpp │ ├── audio_pack_format_id.cpp │ ├── audio_programme.cpp │ ├── audio_programme_id.cpp │ ├── audio_stream_format.cpp │ ├── audio_stream_format_id.cpp │ ├── audio_track_format.cpp │ ├── audio_track_format_id.cpp │ ├── audio_track_uid.cpp │ ├── audio_track_uid_id.cpp │ ├── channel_lock.cpp │ ├── common_parameters.cpp │ ├── format_descriptor.cpp │ ├── frequency.cpp │ ├── gain_interaction_range.cpp │ ├── headphone_virtualise.cpp │ ├── jump_position.cpp │ ├── label.cpp │ ├── loudness_metadata.cpp │ ├── object_divergence.cpp │ ├── position.cpp │ ├── position_interaction_range.cpp │ ├── position_offset.cpp │ ├── profile_list.cpp │ ├── screen_edge_lock.cpp │ ├── speaker_position.cpp │ ├── time.cpp │ └── type_descriptor.cpp ├── errors.cpp ├── parse.cpp ├── path.cpp ├── private │ ├── copy.cpp │ ├── document_parser.cpp │ ├── rapidxml_formatter.cpp │ ├── rapidxml_wrapper.cpp │ └── xml_writer.cpp ├── serial │ ├── audio_track.cpp │ ├── changed_ids.cpp │ ├── frame_format.cpp │ ├── frame_format_id.cpp │ ├── frame_header.cpp │ ├── frame_header_parser.cpp │ ├── sadm_xml_reader.cpp │ ├── transport_id.cpp │ └── transport_track_format.cpp ├── utilities │ ├── block_duration_assignment.cpp │ ├── copy.cpp │ ├── id_assignment.cpp │ └── object_creation.cpp └── write.cpp ├── submodules ├── catch2.cmake ├── catch2 │ ├── catch.hpp │ └── catch_main.cpp ├── rapidxml.cmake └── rapidxml │ ├── license.txt │ ├── manual.html │ ├── rapidxml.hpp │ ├── rapidxml_iterators.hpp │ ├── rapidxml_print.hpp │ └── rapidxml_utils.hpp └── tests ├── CMakeLists.txt ├── adm_auto_parenting_tests.cpp ├── adm_common_definitions_tests.cpp ├── adm_document_tests.cpp ├── adm_id_tests.cpp ├── adm_time_tests.cpp ├── audio_block_format_binaural_tests.cpp ├── audio_block_format_common_tests.cpp ├── audio_block_format_direct_speakers_tests.cpp ├── audio_block_format_hoa_tests.cpp ├── audio_block_format_matrix_tests.cpp ├── audio_block_format_objects_tests.cpp ├── audio_channel_format_tests.cpp ├── audio_content_tests.cpp ├── audio_object_interaction_tests.cpp ├── audio_object_tests.cpp ├── audio_pack_format_hoa_tests.cpp ├── audio_pack_format_tests.cpp ├── audio_programme_tests.cpp ├── audio_stream_format_tests.cpp ├── audio_track_format_tests.cpp ├── audio_track_uid_tests.cpp ├── auto_base_tests.cpp ├── benchmarks.cpp ├── block_duration_fixing_tests.cpp ├── channel_lock_tests.cpp ├── dialogue_tests.cpp ├── enum_bitmask_options_tests.cpp ├── format_descriptor_tests.cpp ├── frame_format_tests.cpp ├── frame_header_parser_frame_format_tests.cpp ├── frequency_tests.cpp ├── gain_interaction_range_tests.cpp ├── gain_tests.cpp ├── headphone_virtualise_tests.cpp ├── helper ├── file_comparator.hpp ├── ostream_operators.hpp ├── parameter_checks.hpp └── parameter_comparators.hpp ├── id_parser_tests.cpp ├── jump_position_tests.cpp ├── label_tests.cpp ├── loudness_metadata_tests.cpp ├── named_type_tests.cpp ├── object_creation_tests.cpp ├── object_divergence_tests.cpp ├── position_interaction_range_tests.cpp ├── position_offset_tests.cpp ├── position_tests.cpp ├── profile_list_tests.cpp ├── route_tracer_tests.cpp ├── screen_edge_lock_tests.cpp ├── speaker_position_tests.cpp ├── test_data ├── loudness_metadata.accepted.xml ├── profile_list.accepted.xml ├── profile_list_frame_header.accepted.xml ├── simple_scene_default.accepted.xml ├── simple_scene_itu.accepted.xml ├── sink.xml ├── version.accepted.xml ├── write_audio_block_format_objects.accepted.xml ├── write_audio_content.accepted.xml ├── write_audio_object_interaction.accepted.xml ├── write_audio_programme.accepted.xml ├── write_audio_track_uid_channel_format_reference.accepted.xml ├── write_complementary_audio_objects.accepted.xml ├── write_default_HOA_block.accepted.xml ├── write_default_binaural_block.accepted.xml ├── write_default_cartesian_speaker.accepted.xml ├── write_default_spherical_speaker.accepted.xml ├── write_labels.accepted.xml ├── write_local_time_reference.accepted.xml ├── write_mixed_objects_and_structures.accepted.xml ├── write_object_attributes.accepted.xml ├── write_objects_silent_track_ref.accepted.xml ├── write_objects_with_position_offset.accepted.xml ├── write_optional_defaults.accepted.xml ├── write_partially_specified_cartesian.accepted.xml ├── write_partially_specified_spherical.accepted.xml ├── write_simple_common_definitions_object.accepted.xml ├── write_simple_object.accepted.xml ├── write_simple_object_short_structure.accepted.xml ├── write_specified_HOA_block.accepted.xml ├── write_specified_binaural_block.accepted.xml ├── write_specified_binaural_block_sadm.accepted.xml ├── write_specified_cartesian_speaker.accepted.xml ├── write_specified_headphone_virtualise.accepted.xml ├── write_specified_spherical_speaker.accepted.xml ├── write_time_format.accepted.xml ├── write_time_format_sadm.accepted.xml ├── write_total_time_reference.accepted.xml └── xml_parser │ ├── audio_block_format_binaural.xml │ ├── audio_block_format_direct_speakers.xml │ ├── audio_block_format_direct_speakers_cartesian.xml │ ├── audio_block_format_direct_speakers_cartesian_bad_bound.xml │ ├── audio_block_format_direct_speakers_cartesian_bad_coord.xml │ ├── audio_block_format_hoa.xml │ ├── audio_block_format_objects.xml │ ├── audio_block_format_objects_gain_unit_error.xml │ ├── audio_channel_format.xml │ ├── audio_channel_format_duplicate_id.xml │ ├── audio_content.xml │ ├── audio_content_duplicate_id.xml │ ├── audio_object.xml │ ├── audio_object_complementary_audio_objects.xml │ ├── audio_object_duplicate_id.xml │ ├── audio_object_interaction.xml │ ├── audio_object_position_offset.xml │ ├── audio_object_track_refs.xml │ ├── audio_pack_format.xml │ ├── audio_pack_format_duplicate_id.xml │ ├── audio_pack_format_hoa.xml │ ├── audio_programme.xml │ ├── audio_programme_duplicate_id.xml │ ├── audio_stream_format.xml │ ├── audio_stream_format_duplicate_id.xml │ ├── audio_track_format.xml │ ├── audio_track_format_duplicate_id.xml │ ├── audio_track_uid.xml │ ├── audio_track_uid_channel_format_reference.xml │ ├── audio_track_uid_duplicate_id.xml │ ├── audio_track_uid_track_format_reference.xml │ ├── find_audio_format_extended_ebu.xml │ ├── find_audio_format_extended_ebu_with_other_metadata.xml │ ├── find_audio_format_extended_itu.xml │ ├── labels.xml │ ├── loudness_metadata.xml │ ├── profile_list.xml │ ├── time_format.xml │ ├── time_format_sadm.xml │ ├── unresolved_references │ ├── audio_content.xml │ ├── audio_object_1.xml │ ├── audio_object_2.xml │ ├── audio_object_3.xml │ ├── audio_pack_format_1.xml │ ├── audio_pack_format_2.xml │ ├── audio_programme.xml │ ├── audio_stream_format_1.xml │ ├── audio_stream_format_2.xml │ ├── audio_track_format.xml │ ├── audio_track_uid_1.xml │ └── audio_track_uid_2.xml │ ├── version.xml │ └── with_common_definitions.xml ├── type_descriptor_tests.cpp ├── version_tests.cpp ├── xml_audio_block_format_objects_tests.cpp ├── xml_loudness_metadata_tests.cpp ├── xml_parser_audio_block_format_binaural_tests.cpp ├── xml_parser_audio_block_format_direct_speakers_tests.cpp ├── xml_parser_audio_block_format_hoa_tests.cpp ├── xml_parser_audio_channel_format_tests.cpp ├── xml_parser_audio_content_tests.cpp ├── xml_parser_audio_object_tests.cpp ├── xml_parser_audio_pack_format_tests.cpp ├── xml_parser_audio_programme_tests.cpp ├── xml_parser_audio_stream_format_tests.cpp ├── xml_parser_audio_track_format_tests.cpp ├── xml_parser_audio_track_uid_tests.cpp ├── xml_parser_common_definitions_tests.cpp ├── xml_parser_find_audio_format_extended_tests.cpp ├── xml_parser_label_tests.cpp ├── xml_parser_tests.cpp ├── xml_parser_unresolved_references_tests.cpp ├── xml_time_format_tests.cpp ├── xml_writer_audio_block_format_tests.cpp ├── xml_writer_audio_content_tests.cpp ├── xml_writer_audio_object_interaction_tests.cpp ├── xml_writer_audio_programme_tests.cpp ├── xml_writer_audio_track_uid_tests.cpp ├── xml_writer_label_tests.cpp ├── xml_writer_objects_creation_tests.cpp └── xml_writer_tests.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang_complete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/.clang_complete -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/check_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/.github/workflows/check_format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/README.md -------------------------------------------------------------------------------- /cmake/embed_resource.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/cmake/embed_resource.cmake -------------------------------------------------------------------------------- /cmake/embedded_resource.cpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/cmake/embedded_resource.cpp.in -------------------------------------------------------------------------------- /cmake/embedded_resource.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/cmake/embedded_resource.hpp.in -------------------------------------------------------------------------------- /cmake/uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/cmake/uninstall.cmake.in -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/codecov.yml -------------------------------------------------------------------------------- /config/admConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/config/admConfig.cmake.in -------------------------------------------------------------------------------- /config/version.hpp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/config/version.hpp.in -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. changelog: 2 | 3 | .. mdinclude:: ../CHANGELOG.md 4 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/element_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/element_api.rst -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/irt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/irt_logo.png -------------------------------------------------------------------------------- /docs/library_design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/library_design.rst -------------------------------------------------------------------------------- /docs/reference_document.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/reference_document.rst -------------------------------------------------------------------------------- /docs/reference_elements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/reference_elements.rst -------------------------------------------------------------------------------- /docs/reference_helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/reference_helpers.rst -------------------------------------------------------------------------------- /docs/reference_read_write.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/reference_read_write.rst -------------------------------------------------------------------------------- /docs/reference_sadm_elements.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/reference_sadm_elements.rst -------------------------------------------------------------------------------- /docs/reference_utilities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/reference_utilities.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /docs/update_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/docs/update_deps.sh -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/create_from_scratch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/create_from_scratch.cpp -------------------------------------------------------------------------------- /examples/create_sadm_from_scratch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/create_sadm_from_scratch.cpp -------------------------------------------------------------------------------- /examples/foreground_background.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/foreground_background.cpp -------------------------------------------------------------------------------- /examples/multiple_languages_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/multiple_languages_1.cpp -------------------------------------------------------------------------------- /examples/multiple_languages_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/multiple_languages_2.cpp -------------------------------------------------------------------------------- /examples/multiple_storylines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/multiple_storylines.cpp -------------------------------------------------------------------------------- /examples/parse_sadm_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/parse_sadm_xml.cpp -------------------------------------------------------------------------------- /examples/parse_xml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/parse_xml.cpp -------------------------------------------------------------------------------- /examples/voice_over.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/examples/voice_over.cpp -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/format.sh -------------------------------------------------------------------------------- /include/adm/adm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/adm.hpp -------------------------------------------------------------------------------- /include/adm/common_definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/common_definitions.hpp -------------------------------------------------------------------------------- /include/adm/detail/auto_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/auto_base.hpp -------------------------------------------------------------------------------- /include/adm/detail/auto_base_detail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/auto_base_detail.hpp -------------------------------------------------------------------------------- /include/adm/detail/enum_bitmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/enum_bitmask.hpp -------------------------------------------------------------------------------- /include/adm/detail/id_assigner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/id_assigner.hpp -------------------------------------------------------------------------------- /include/adm/detail/id_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/id_map.hpp -------------------------------------------------------------------------------- /include/adm/detail/id_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/id_parser.hpp -------------------------------------------------------------------------------- /include/adm/detail/named_option_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/named_option_helper.hpp -------------------------------------------------------------------------------- /include/adm/detail/named_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/named_type.hpp -------------------------------------------------------------------------------- /include/adm/detail/named_type_validators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/named_type_validators.hpp -------------------------------------------------------------------------------- /include/adm/detail/optional_comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/optional_comparison.hpp -------------------------------------------------------------------------------- /include/adm/detail/print_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/print_helper.hpp -------------------------------------------------------------------------------- /include/adm/detail/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/detail/type_traits.hpp -------------------------------------------------------------------------------- /include/adm/document.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/document.hpp -------------------------------------------------------------------------------- /include/adm/element_variant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/element_variant.hpp -------------------------------------------------------------------------------- /include/adm/elements.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_block_format_binaural.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_block_format_binaural.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_block_format_direct_speakers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_block_format_direct_speakers.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_block_format_hoa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_block_format_hoa.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_block_format_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_block_format_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_block_format_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_block_format_matrix.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_block_format_objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_block_format_objects.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_channel_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_channel_format.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_channel_format_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_channel_format_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_content.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_content.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_content_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_content_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_object.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_object_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_object_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_object_interaction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_object_interaction.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_pack_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_pack_format.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_pack_format_hoa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_pack_format_hoa.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_pack_format_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_pack_format_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_programme.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_programme.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_programme_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_programme_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_programme_ref_screen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_programme_ref_screen.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_stream_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_stream_format.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_stream_format_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_stream_format_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_track_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_track_format.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_track_format_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_track_format_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_track_uid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_track_uid.hpp -------------------------------------------------------------------------------- /include/adm/elements/audio_track_uid_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/audio_track_uid_id.hpp -------------------------------------------------------------------------------- /include/adm/elements/channel_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/channel_lock.hpp -------------------------------------------------------------------------------- /include/adm/elements/common_parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/common_parameters.hpp -------------------------------------------------------------------------------- /include/adm/elements/dialogue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/dialogue.hpp -------------------------------------------------------------------------------- /include/adm/elements/format_descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/format_descriptor.hpp -------------------------------------------------------------------------------- /include/adm/elements/frequency.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/frequency.hpp -------------------------------------------------------------------------------- /include/adm/elements/gain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/gain.hpp -------------------------------------------------------------------------------- /include/adm/elements/gain_interaction_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/gain_interaction_range.hpp -------------------------------------------------------------------------------- /include/adm/elements/head_locked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/head_locked.hpp -------------------------------------------------------------------------------- /include/adm/elements/headphone_virtualise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/headphone_virtualise.hpp -------------------------------------------------------------------------------- /include/adm/elements/importance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/importance.hpp -------------------------------------------------------------------------------- /include/adm/elements/jump_position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/jump_position.hpp -------------------------------------------------------------------------------- /include/adm/elements/label.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/label.hpp -------------------------------------------------------------------------------- /include/adm/elements/loudness_metadata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/loudness_metadata.hpp -------------------------------------------------------------------------------- /include/adm/elements/nfc_ref_dist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/nfc_ref_dist.hpp -------------------------------------------------------------------------------- /include/adm/elements/normalization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/normalization.hpp -------------------------------------------------------------------------------- /include/adm/elements/object_divergence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/object_divergence.hpp -------------------------------------------------------------------------------- /include/adm/elements/position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/position.hpp -------------------------------------------------------------------------------- /include/adm/elements/position_interaction_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/position_interaction_range.hpp -------------------------------------------------------------------------------- /include/adm/elements/position_offset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/position_offset.hpp -------------------------------------------------------------------------------- /include/adm/elements/position_offset_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/position_offset_types.hpp -------------------------------------------------------------------------------- /include/adm/elements/position_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/position_types.hpp -------------------------------------------------------------------------------- /include/adm/elements/private/auto_parent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/private/auto_parent.hpp -------------------------------------------------------------------------------- /include/adm/elements/private/parent_attorneys.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/private/parent_attorneys.hpp -------------------------------------------------------------------------------- /include/adm/elements/profile_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/profile_list.hpp -------------------------------------------------------------------------------- /include/adm/elements/screen_edge_lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/screen_edge_lock.hpp -------------------------------------------------------------------------------- /include/adm/elements/screen_ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/screen_ref.hpp -------------------------------------------------------------------------------- /include/adm/elements/speaker_position.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/speaker_position.hpp -------------------------------------------------------------------------------- /include/adm/elements/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/time.hpp -------------------------------------------------------------------------------- /include/adm/elements/type_descriptor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements/type_descriptor.hpp -------------------------------------------------------------------------------- /include/adm/elements_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/elements_fwd.hpp -------------------------------------------------------------------------------- /include/adm/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/errors.hpp -------------------------------------------------------------------------------- /include/adm/helper/element_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/helper/element_range.hpp -------------------------------------------------------------------------------- /include/adm/helper/get_optional_property.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/helper/get_optional_property.hpp -------------------------------------------------------------------------------- /include/adm/parse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/parse.hpp -------------------------------------------------------------------------------- /include/adm/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/path.hpp -------------------------------------------------------------------------------- /include/adm/private/changed_id_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/changed_id_traits.hpp -------------------------------------------------------------------------------- /include/adm/private/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/copy.hpp -------------------------------------------------------------------------------- /include/adm/private/document_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/document_parser.hpp -------------------------------------------------------------------------------- /include/adm/private/rapidxml_formatter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/rapidxml_formatter.hpp -------------------------------------------------------------------------------- /include/adm/private/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/rapidxml_utils.hpp -------------------------------------------------------------------------------- /include/adm/private/rapidxml_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/rapidxml_wrapper.hpp -------------------------------------------------------------------------------- /include/adm/private/xml_parser_helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/xml_parser_helper.hpp -------------------------------------------------------------------------------- /include/adm/private/xml_writer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/private/xml_writer.hpp -------------------------------------------------------------------------------- /include/adm/route.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/route.hpp -------------------------------------------------------------------------------- /include/adm/route_tracer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/route_tracer.hpp -------------------------------------------------------------------------------- /include/adm/serial.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial.hpp -------------------------------------------------------------------------------- /include/adm/serial/audio_track.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/audio_track.hpp -------------------------------------------------------------------------------- /include/adm/serial/changed_ids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/changed_ids.hpp -------------------------------------------------------------------------------- /include/adm/serial/frame_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/frame_format.hpp -------------------------------------------------------------------------------- /include/adm/serial/frame_format_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/frame_format_id.hpp -------------------------------------------------------------------------------- /include/adm/serial/frame_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/frame_header.hpp -------------------------------------------------------------------------------- /include/adm/serial/frame_header_parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/frame_header_parser.hpp -------------------------------------------------------------------------------- /include/adm/serial/transport_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/transport_id.hpp -------------------------------------------------------------------------------- /include/adm/serial/transport_track_format.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/serial/transport_track_format.hpp -------------------------------------------------------------------------------- /include/adm/utilities/block_duration_assignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/block_duration_assignment.hpp -------------------------------------------------------------------------------- /include/adm/utilities/comparator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/comparator.hpp -------------------------------------------------------------------------------- /include/adm/utilities/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/copy.hpp -------------------------------------------------------------------------------- /include/adm/utilities/element_io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/element_io.hpp -------------------------------------------------------------------------------- /include/adm/utilities/id_assignment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/id_assignment.hpp -------------------------------------------------------------------------------- /include/adm/utilities/lookup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/lookup.hpp -------------------------------------------------------------------------------- /include/adm/utilities/object_creation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/object_creation.hpp -------------------------------------------------------------------------------- /include/adm/utilities/time_conversion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/utilities/time_conversion.hpp -------------------------------------------------------------------------------- /include/adm/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/include/adm/write.hpp -------------------------------------------------------------------------------- /resources/common_definitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/resources/common_definitions.xml -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/common_definitions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/common_definitions.cpp -------------------------------------------------------------------------------- /src/detail/id_assigner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/detail/id_assigner.cpp -------------------------------------------------------------------------------- /src/document.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/document.cpp -------------------------------------------------------------------------------- /src/elements/audio_block_format_binaural.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_block_format_binaural.cpp -------------------------------------------------------------------------------- /src/elements/audio_block_format_direct_speakers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_block_format_direct_speakers.cpp -------------------------------------------------------------------------------- /src/elements/audio_block_format_hoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_block_format_hoa.cpp -------------------------------------------------------------------------------- /src/elements/audio_block_format_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_block_format_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_block_format_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_block_format_matrix.cpp -------------------------------------------------------------------------------- /src/elements/audio_block_format_objects.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_block_format_objects.cpp -------------------------------------------------------------------------------- /src/elements/audio_channel_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_channel_format.cpp -------------------------------------------------------------------------------- /src/elements/audio_channel_format_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_channel_format_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_content.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_content.cpp -------------------------------------------------------------------------------- /src/elements/audio_content_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_content_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_object.cpp -------------------------------------------------------------------------------- /src/elements/audio_object_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_object_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_object_interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_object_interaction.cpp -------------------------------------------------------------------------------- /src/elements/audio_pack_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_pack_format.cpp -------------------------------------------------------------------------------- /src/elements/audio_pack_format_hoa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_pack_format_hoa.cpp -------------------------------------------------------------------------------- /src/elements/audio_pack_format_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_pack_format_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_programme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_programme.cpp -------------------------------------------------------------------------------- /src/elements/audio_programme_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_programme_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_stream_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_stream_format.cpp -------------------------------------------------------------------------------- /src/elements/audio_stream_format_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_stream_format_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_track_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_track_format.cpp -------------------------------------------------------------------------------- /src/elements/audio_track_format_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_track_format_id.cpp -------------------------------------------------------------------------------- /src/elements/audio_track_uid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_track_uid.cpp -------------------------------------------------------------------------------- /src/elements/audio_track_uid_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/audio_track_uid_id.cpp -------------------------------------------------------------------------------- /src/elements/channel_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/channel_lock.cpp -------------------------------------------------------------------------------- /src/elements/common_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/common_parameters.cpp -------------------------------------------------------------------------------- /src/elements/format_descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/format_descriptor.cpp -------------------------------------------------------------------------------- /src/elements/frequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/frequency.cpp -------------------------------------------------------------------------------- /src/elements/gain_interaction_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/gain_interaction_range.cpp -------------------------------------------------------------------------------- /src/elements/headphone_virtualise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/headphone_virtualise.cpp -------------------------------------------------------------------------------- /src/elements/jump_position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/jump_position.cpp -------------------------------------------------------------------------------- /src/elements/label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/label.cpp -------------------------------------------------------------------------------- /src/elements/loudness_metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/loudness_metadata.cpp -------------------------------------------------------------------------------- /src/elements/object_divergence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/object_divergence.cpp -------------------------------------------------------------------------------- /src/elements/position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/position.cpp -------------------------------------------------------------------------------- /src/elements/position_interaction_range.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/position_interaction_range.cpp -------------------------------------------------------------------------------- /src/elements/position_offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/position_offset.cpp -------------------------------------------------------------------------------- /src/elements/profile_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/profile_list.cpp -------------------------------------------------------------------------------- /src/elements/screen_edge_lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/screen_edge_lock.cpp -------------------------------------------------------------------------------- /src/elements/speaker_position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/speaker_position.cpp -------------------------------------------------------------------------------- /src/elements/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/time.cpp -------------------------------------------------------------------------------- /src/elements/type_descriptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/elements/type_descriptor.cpp -------------------------------------------------------------------------------- /src/errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/errors.cpp -------------------------------------------------------------------------------- /src/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/parse.cpp -------------------------------------------------------------------------------- /src/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/path.cpp -------------------------------------------------------------------------------- /src/private/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/private/copy.cpp -------------------------------------------------------------------------------- /src/private/document_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/private/document_parser.cpp -------------------------------------------------------------------------------- /src/private/rapidxml_formatter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/private/rapidxml_formatter.cpp -------------------------------------------------------------------------------- /src/private/rapidxml_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/private/rapidxml_wrapper.cpp -------------------------------------------------------------------------------- /src/private/xml_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/private/xml_writer.cpp -------------------------------------------------------------------------------- /src/serial/audio_track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/audio_track.cpp -------------------------------------------------------------------------------- /src/serial/changed_ids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/changed_ids.cpp -------------------------------------------------------------------------------- /src/serial/frame_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/frame_format.cpp -------------------------------------------------------------------------------- /src/serial/frame_format_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/frame_format_id.cpp -------------------------------------------------------------------------------- /src/serial/frame_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/frame_header.cpp -------------------------------------------------------------------------------- /src/serial/frame_header_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/frame_header_parser.cpp -------------------------------------------------------------------------------- /src/serial/sadm_xml_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/sadm_xml_reader.cpp -------------------------------------------------------------------------------- /src/serial/transport_id.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/transport_id.cpp -------------------------------------------------------------------------------- /src/serial/transport_track_format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/serial/transport_track_format.cpp -------------------------------------------------------------------------------- /src/utilities/block_duration_assignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/utilities/block_duration_assignment.cpp -------------------------------------------------------------------------------- /src/utilities/copy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/utilities/copy.cpp -------------------------------------------------------------------------------- /src/utilities/id_assignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/utilities/id_assignment.cpp -------------------------------------------------------------------------------- /src/utilities/object_creation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/utilities/object_creation.cpp -------------------------------------------------------------------------------- /src/write.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/src/write.cpp -------------------------------------------------------------------------------- /submodules/catch2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/catch2.cmake -------------------------------------------------------------------------------- /submodules/catch2/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/catch2/catch.hpp -------------------------------------------------------------------------------- /submodules/catch2/catch_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/catch2/catch_main.cpp -------------------------------------------------------------------------------- /submodules/rapidxml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/rapidxml.cmake -------------------------------------------------------------------------------- /submodules/rapidxml/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/rapidxml/license.txt -------------------------------------------------------------------------------- /submodules/rapidxml/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/rapidxml/manual.html -------------------------------------------------------------------------------- /submodules/rapidxml/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/rapidxml/rapidxml.hpp -------------------------------------------------------------------------------- /submodules/rapidxml/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/rapidxml/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /submodules/rapidxml/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/rapidxml/rapidxml_print.hpp -------------------------------------------------------------------------------- /submodules/rapidxml/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/submodules/rapidxml/rapidxml_utils.hpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/adm_auto_parenting_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/adm_auto_parenting_tests.cpp -------------------------------------------------------------------------------- /tests/adm_common_definitions_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/adm_common_definitions_tests.cpp -------------------------------------------------------------------------------- /tests/adm_document_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/adm_document_tests.cpp -------------------------------------------------------------------------------- /tests/adm_id_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/adm_id_tests.cpp -------------------------------------------------------------------------------- /tests/adm_time_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/adm_time_tests.cpp -------------------------------------------------------------------------------- /tests/audio_block_format_binaural_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_block_format_binaural_tests.cpp -------------------------------------------------------------------------------- /tests/audio_block_format_common_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_block_format_common_tests.cpp -------------------------------------------------------------------------------- /tests/audio_block_format_direct_speakers_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_block_format_direct_speakers_tests.cpp -------------------------------------------------------------------------------- /tests/audio_block_format_hoa_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_block_format_hoa_tests.cpp -------------------------------------------------------------------------------- /tests/audio_block_format_matrix_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_block_format_matrix_tests.cpp -------------------------------------------------------------------------------- /tests/audio_block_format_objects_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_block_format_objects_tests.cpp -------------------------------------------------------------------------------- /tests/audio_channel_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_channel_format_tests.cpp -------------------------------------------------------------------------------- /tests/audio_content_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_content_tests.cpp -------------------------------------------------------------------------------- /tests/audio_object_interaction_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_object_interaction_tests.cpp -------------------------------------------------------------------------------- /tests/audio_object_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_object_tests.cpp -------------------------------------------------------------------------------- /tests/audio_pack_format_hoa_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_pack_format_hoa_tests.cpp -------------------------------------------------------------------------------- /tests/audio_pack_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_pack_format_tests.cpp -------------------------------------------------------------------------------- /tests/audio_programme_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_programme_tests.cpp -------------------------------------------------------------------------------- /tests/audio_stream_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_stream_format_tests.cpp -------------------------------------------------------------------------------- /tests/audio_track_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_track_format_tests.cpp -------------------------------------------------------------------------------- /tests/audio_track_uid_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/audio_track_uid_tests.cpp -------------------------------------------------------------------------------- /tests/auto_base_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/auto_base_tests.cpp -------------------------------------------------------------------------------- /tests/benchmarks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/benchmarks.cpp -------------------------------------------------------------------------------- /tests/block_duration_fixing_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/block_duration_fixing_tests.cpp -------------------------------------------------------------------------------- /tests/channel_lock_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/channel_lock_tests.cpp -------------------------------------------------------------------------------- /tests/dialogue_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/dialogue_tests.cpp -------------------------------------------------------------------------------- /tests/enum_bitmask_options_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/enum_bitmask_options_tests.cpp -------------------------------------------------------------------------------- /tests/format_descriptor_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/format_descriptor_tests.cpp -------------------------------------------------------------------------------- /tests/frame_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/frame_format_tests.cpp -------------------------------------------------------------------------------- /tests/frame_header_parser_frame_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/frame_header_parser_frame_format_tests.cpp -------------------------------------------------------------------------------- /tests/frequency_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/frequency_tests.cpp -------------------------------------------------------------------------------- /tests/gain_interaction_range_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/gain_interaction_range_tests.cpp -------------------------------------------------------------------------------- /tests/gain_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/gain_tests.cpp -------------------------------------------------------------------------------- /tests/headphone_virtualise_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/headphone_virtualise_tests.cpp -------------------------------------------------------------------------------- /tests/helper/file_comparator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/helper/file_comparator.hpp -------------------------------------------------------------------------------- /tests/helper/ostream_operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/helper/ostream_operators.hpp -------------------------------------------------------------------------------- /tests/helper/parameter_checks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/helper/parameter_checks.hpp -------------------------------------------------------------------------------- /tests/helper/parameter_comparators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/helper/parameter_comparators.hpp -------------------------------------------------------------------------------- /tests/id_parser_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/id_parser_tests.cpp -------------------------------------------------------------------------------- /tests/jump_position_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/jump_position_tests.cpp -------------------------------------------------------------------------------- /tests/label_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/label_tests.cpp -------------------------------------------------------------------------------- /tests/loudness_metadata_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/loudness_metadata_tests.cpp -------------------------------------------------------------------------------- /tests/named_type_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/named_type_tests.cpp -------------------------------------------------------------------------------- /tests/object_creation_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/object_creation_tests.cpp -------------------------------------------------------------------------------- /tests/object_divergence_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/object_divergence_tests.cpp -------------------------------------------------------------------------------- /tests/position_interaction_range_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/position_interaction_range_tests.cpp -------------------------------------------------------------------------------- /tests/position_offset_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/position_offset_tests.cpp -------------------------------------------------------------------------------- /tests/position_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/position_tests.cpp -------------------------------------------------------------------------------- /tests/profile_list_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/profile_list_tests.cpp -------------------------------------------------------------------------------- /tests/route_tracer_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/route_tracer_tests.cpp -------------------------------------------------------------------------------- /tests/screen_edge_lock_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/screen_edge_lock_tests.cpp -------------------------------------------------------------------------------- /tests/speaker_position_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/speaker_position_tests.cpp -------------------------------------------------------------------------------- /tests/test_data/loudness_metadata.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/loudness_metadata.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/profile_list.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/profile_list.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/profile_list_frame_header.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/profile_list_frame_header.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/simple_scene_default.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/simple_scene_default.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/simple_scene_itu.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/simple_scene_itu.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/sink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/sink.xml -------------------------------------------------------------------------------- /tests/test_data/version.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/version.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_audio_block_format_objects.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_audio_block_format_objects.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_audio_content.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_audio_content.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_audio_object_interaction.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_audio_object_interaction.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_audio_programme.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_audio_programme.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_audio_track_uid_channel_format_reference.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_audio_track_uid_channel_format_reference.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_complementary_audio_objects.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_complementary_audio_objects.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_default_HOA_block.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_default_HOA_block.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_default_binaural_block.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_default_binaural_block.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_default_cartesian_speaker.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_default_cartesian_speaker.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_default_spherical_speaker.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_default_spherical_speaker.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_labels.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_labels.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_local_time_reference.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_local_time_reference.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_mixed_objects_and_structures.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_mixed_objects_and_structures.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_object_attributes.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_object_attributes.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_objects_silent_track_ref.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_objects_silent_track_ref.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_objects_with_position_offset.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_objects_with_position_offset.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_optional_defaults.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_optional_defaults.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_partially_specified_cartesian.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_partially_specified_cartesian.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_partially_specified_spherical.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_partially_specified_spherical.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_simple_common_definitions_object.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_simple_common_definitions_object.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_simple_object.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_simple_object.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_simple_object_short_structure.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_simple_object_short_structure.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_specified_HOA_block.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_specified_HOA_block.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_specified_binaural_block.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_specified_binaural_block.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_specified_binaural_block_sadm.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_specified_binaural_block_sadm.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_specified_cartesian_speaker.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_specified_cartesian_speaker.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_specified_headphone_virtualise.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_specified_headphone_virtualise.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_specified_spherical_speaker.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_specified_spherical_speaker.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_time_format.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_time_format.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_time_format_sadm.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_time_format_sadm.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/write_total_time_reference.accepted.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/write_total_time_reference.accepted.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_binaural.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_binaural.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_direct_speakers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_direct_speakers.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_direct_speakers_cartesian.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_direct_speakers_cartesian.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_direct_speakers_cartesian_bad_bound.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_direct_speakers_cartesian_bad_bound.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_direct_speakers_cartesian_bad_coord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_direct_speakers_cartesian_bad_coord.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_hoa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_hoa.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_objects.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_block_format_objects_gain_unit_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_block_format_objects_gain_unit_error.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_channel_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_channel_format.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_channel_format_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_channel_format_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_content.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_content_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_content_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_object.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_object.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_object_complementary_audio_objects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_object_complementary_audio_objects.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_object_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_object_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_object_interaction.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_object_interaction.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_object_position_offset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_object_position_offset.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_object_track_refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_object_track_refs.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_pack_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_pack_format.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_pack_format_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_pack_format_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_pack_format_hoa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_pack_format_hoa.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_programme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_programme.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_programme_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_programme_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_stream_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_stream_format.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_stream_format_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_stream_format_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_track_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_track_format.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_track_format_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_track_format_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_track_uid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_track_uid.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_track_uid_channel_format_reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_track_uid_channel_format_reference.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_track_uid_duplicate_id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_track_uid_duplicate_id.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/audio_track_uid_track_format_reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/audio_track_uid_track_format_reference.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/find_audio_format_extended_ebu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/find_audio_format_extended_ebu.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/find_audio_format_extended_ebu_with_other_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/find_audio_format_extended_ebu_with_other_metadata.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/find_audio_format_extended_itu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/find_audio_format_extended_itu.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/labels.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/labels.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/loudness_metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/loudness_metadata.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/profile_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/profile_list.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/time_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/time_format.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/time_format_sadm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/time_format_sadm.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_content.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_object_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_object_1.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_object_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_object_2.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_object_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_object_3.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_pack_format_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_pack_format_1.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_pack_format_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_pack_format_2.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_programme.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_programme.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_stream_format_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_stream_format_1.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_stream_format_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_stream_format_2.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_track_format.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_track_format.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_track_uid_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_track_uid_1.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/unresolved_references/audio_track_uid_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/unresolved_references/audio_track_uid_2.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/version.xml -------------------------------------------------------------------------------- /tests/test_data/xml_parser/with_common_definitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/test_data/xml_parser/with_common_definitions.xml -------------------------------------------------------------------------------- /tests/type_descriptor_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/type_descriptor_tests.cpp -------------------------------------------------------------------------------- /tests/version_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/version_tests.cpp -------------------------------------------------------------------------------- /tests/xml_audio_block_format_objects_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_audio_block_format_objects_tests.cpp -------------------------------------------------------------------------------- /tests/xml_loudness_metadata_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_loudness_metadata_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_block_format_binaural_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_block_format_binaural_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_block_format_direct_speakers_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_block_format_direct_speakers_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_block_format_hoa_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_block_format_hoa_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_channel_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_channel_format_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_content_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_content_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_object_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_object_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_pack_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_pack_format_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_programme_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_programme_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_stream_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_stream_format_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_track_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_track_format_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_audio_track_uid_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_audio_track_uid_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_common_definitions_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_common_definitions_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_find_audio_format_extended_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_find_audio_format_extended_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_label_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_label_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_tests.cpp -------------------------------------------------------------------------------- /tests/xml_parser_unresolved_references_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_parser_unresolved_references_tests.cpp -------------------------------------------------------------------------------- /tests/xml_time_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_time_format_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_audio_block_format_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_audio_block_format_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_audio_content_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_audio_content_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_audio_object_interaction_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_audio_object_interaction_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_audio_programme_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_audio_programme_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_audio_track_uid_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_audio_track_uid_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_label_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_label_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_objects_creation_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_objects_creation_tests.cpp -------------------------------------------------------------------------------- /tests/xml_writer_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ebu/libadm/HEAD/tests/xml_writer_tests.cpp --------------------------------------------------------------------------------