├── .gitattributes ├── .gitignore ├── AEC3Demo.sln ├── AEC3Lib ├── 1.wav ├── 2.wav ├── AEC3Lib.vcxproj ├── AEC3Lib.vcxproj.filters ├── echo1.wav ├── echo2.wav ├── framework.h ├── main.cpp ├── output.wav ├── rec1.wav ├── rec2.wav ├── wave_file.cpp └── wave_file.h ├── README.md ├── absl ├── BUILD.bazel ├── CMakeLists.txt ├── abseil.podspec.gen.py ├── algorithm │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── algorithm.h │ ├── algorithm_test.cc │ ├── container.h │ ├── container_test.cc │ └── equal_benchmark.cc ├── base │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── attributes.h │ ├── bit_cast_test.cc │ ├── call_once.h │ ├── call_once_test.cc │ ├── casts.h │ ├── config.h │ ├── config_test.cc │ ├── const_init.h │ ├── dynamic_annotations.h │ ├── exception_safety_testing_test.cc │ ├── inline_variable_test.cc │ ├── inline_variable_test_a.cc │ ├── inline_variable_test_b.cc │ ├── internal │ │ ├── atomic_hook.h │ │ ├── atomic_hook_test.cc │ │ ├── atomic_hook_test_helper.cc │ │ ├── atomic_hook_test_helper.h │ │ ├── cmake_thread_test.cc │ │ ├── cycleclock.cc │ │ ├── cycleclock.h │ │ ├── cycleclock_config.h │ │ ├── direct_mmap.h │ │ ├── endian.h │ │ ├── endian_test.cc │ │ ├── errno_saver.h │ │ ├── errno_saver_test.cc │ │ ├── exception_safety_testing.cc │ │ ├── exception_safety_testing.h │ │ ├── exception_testing.h │ │ ├── fast_type_id.h │ │ ├── fast_type_id_test.cc │ │ ├── hide_ptr.h │ │ ├── identity.h │ │ ├── inline_variable.h │ │ ├── inline_variable_testing.h │ │ ├── invoke.h │ │ ├── low_level_alloc.cc │ │ ├── low_level_alloc.h │ │ ├── low_level_alloc_test.cc │ │ ├── low_level_scheduling.h │ │ ├── per_thread_tls.h │ │ ├── prefetch.h │ │ ├── prefetch_test.cc │ │ ├── pretty_function.h │ │ ├── raw_logging.cc │ │ ├── raw_logging.h │ │ ├── scheduling_mode.h │ │ ├── scoped_set_env.cc │ │ ├── scoped_set_env.h │ │ ├── scoped_set_env_test.cc │ │ ├── spinlock.cc │ │ ├── spinlock.h │ │ ├── spinlock_akaros.inc │ │ ├── spinlock_benchmark.cc │ │ ├── spinlock_linux.inc │ │ ├── spinlock_posix.inc │ │ ├── spinlock_wait.cc │ │ ├── spinlock_wait.h │ │ ├── spinlock_win32.inc │ │ ├── strerror.cc │ │ ├── strerror.h │ │ ├── strerror_benchmark.cc │ │ ├── strerror_test.cc │ │ ├── sysinfo.cc │ │ ├── sysinfo.h │ │ ├── sysinfo_test.cc │ │ ├── thread_identity.cc │ │ ├── thread_identity.h │ │ ├── thread_identity_benchmark.cc │ │ ├── thread_identity_test.cc │ │ ├── throw_delegate.cc │ │ ├── throw_delegate.h │ │ ├── tsan_mutex_interface.h │ │ ├── unaligned_access.h │ │ ├── unique_small_name_test.cc │ │ ├── unscaledcycleclock.cc │ │ ├── unscaledcycleclock.h │ │ └── unscaledcycleclock_config.h │ ├── invoke_test.cc │ ├── log_severity.cc │ ├── log_severity.h │ ├── log_severity_test.cc │ ├── macros.h │ ├── optimization.h │ ├── optimization_test.cc │ ├── options.h │ ├── policy_checks.h │ ├── port.h │ ├── prefetch.h │ ├── prefetch_test.cc │ ├── raw_logging_test.cc │ ├── spinlock_test_common.cc │ ├── thread_annotations.h │ └── throw_delegate_test.cc ├── cleanup │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── cleanup.h │ ├── cleanup_test.cc │ └── internal │ │ └── cleanup.h ├── container │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── btree_benchmark.cc │ ├── btree_map.h │ ├── btree_set.h │ ├── btree_test.cc │ ├── btree_test.h │ ├── fixed_array.h │ ├── fixed_array_benchmark.cc │ ├── fixed_array_exception_safety_test.cc │ ├── fixed_array_test.cc │ ├── flat_hash_map.h │ ├── flat_hash_map_test.cc │ ├── flat_hash_set.h │ ├── flat_hash_set_test.cc │ ├── inlined_vector.h │ ├── inlined_vector_benchmark.cc │ ├── inlined_vector_exception_safety_test.cc │ ├── inlined_vector_test.cc │ ├── internal │ │ ├── btree.h │ │ ├── btree_container.h │ │ ├── common.h │ │ ├── common_policy_traits.h │ │ ├── common_policy_traits_test.cc │ │ ├── compressed_tuple.h │ │ ├── compressed_tuple_test.cc │ │ ├── container_memory.h │ │ ├── container_memory_test.cc │ │ ├── counting_allocator.h │ │ ├── hash_function_defaults.h │ │ ├── hash_function_defaults_test.cc │ │ ├── hash_generator_testing.cc │ │ ├── hash_generator_testing.h │ │ ├── hash_policy_testing.h │ │ ├── hash_policy_testing_test.cc │ │ ├── hash_policy_traits.h │ │ ├── hash_policy_traits_test.cc │ │ ├── hashtable_debug.h │ │ ├── hashtable_debug_hooks.h │ │ ├── hashtablez_sampler.cc │ │ ├── hashtablez_sampler.h │ │ ├── hashtablez_sampler_force_weak_definition.cc │ │ ├── hashtablez_sampler_test.cc │ │ ├── inlined_vector.h │ │ ├── layout.h │ │ ├── layout_benchmark.cc │ │ ├── layout_test.cc │ │ ├── node_slot_policy.h │ │ ├── node_slot_policy_test.cc │ │ ├── raw_hash_map.h │ │ ├── raw_hash_set.cc │ │ ├── raw_hash_set.h │ │ ├── raw_hash_set_allocator_test.cc │ │ ├── raw_hash_set_benchmark.cc │ │ ├── raw_hash_set_probe_benchmark.cc │ │ ├── raw_hash_set_test.cc │ │ ├── test_instance_tracker.cc │ │ ├── test_instance_tracker.h │ │ ├── test_instance_tracker_test.cc │ │ ├── tracked.h │ │ ├── unordered_map_constructor_test.h │ │ ├── unordered_map_lookup_test.h │ │ ├── unordered_map_members_test.h │ │ ├── unordered_map_modifiers_test.h │ │ ├── unordered_map_test.cc │ │ ├── unordered_set_constructor_test.h │ │ ├── unordered_set_lookup_test.h │ │ ├── unordered_set_members_test.h │ │ ├── unordered_set_modifiers_test.h │ │ └── unordered_set_test.cc │ ├── node_hash_map.h │ ├── node_hash_map_test.cc │ ├── node_hash_set.h │ ├── node_hash_set_test.cc │ └── sample_element_size_test.cc ├── copts │ ├── AbseilConfigureCopts.cmake │ ├── GENERATED_AbseilCopts.cmake │ ├── GENERATED_copts.bzl │ ├── configure_copts.bzl │ ├── copts.py │ └── generate_copts.py ├── crc │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── crc32c.cc │ ├── crc32c.h │ ├── crc32c_benchmark.cc │ ├── crc32c_test.cc │ └── internal │ │ ├── cpu_detect.cc │ │ ├── cpu_detect.h │ │ ├── crc.cc │ │ ├── crc.h │ │ ├── crc32_x86_arm_combined_simd.h │ │ ├── crc32c.h │ │ ├── crc32c_inline.h │ │ ├── crc_cord_state.cc │ │ ├── crc_cord_state.h │ │ ├── crc_cord_state_test.cc │ │ ├── crc_internal.h │ │ ├── crc_memcpy.h │ │ ├── crc_memcpy_fallback.cc │ │ ├── crc_memcpy_test.cc │ │ ├── crc_memcpy_x86_64.cc │ │ ├── crc_non_temporal_memcpy.cc │ │ ├── crc_x86_arm_combined.cc │ │ ├── non_temporal_arm_intrinsics.h │ │ ├── non_temporal_memcpy.h │ │ └── non_temporal_memcpy_test.cc ├── debugging │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── failure_signal_handler.cc │ ├── failure_signal_handler.h │ ├── failure_signal_handler_test.cc │ ├── internal │ │ ├── address_is_readable.cc │ │ ├── address_is_readable.h │ │ ├── demangle.cc │ │ ├── demangle.h │ │ ├── demangle_test.cc │ │ ├── elf_mem_image.cc │ │ ├── elf_mem_image.h │ │ ├── examine_stack.cc │ │ ├── examine_stack.h │ │ ├── stack_consumption.cc │ │ ├── stack_consumption.h │ │ ├── stack_consumption_test.cc │ │ ├── stacktrace_aarch64-inl.inc │ │ ├── stacktrace_arm-inl.inc │ │ ├── stacktrace_config.h │ │ ├── stacktrace_emscripten-inl.inc │ │ ├── stacktrace_generic-inl.inc │ │ ├── stacktrace_powerpc-inl.inc │ │ ├── stacktrace_riscv-inl.inc │ │ ├── stacktrace_unimplemented-inl.inc │ │ ├── stacktrace_win32-inl.inc │ │ ├── stacktrace_x86-inl.inc │ │ ├── symbolize.h │ │ ├── vdso_support.cc │ │ └── vdso_support.h │ ├── leak_check.cc │ ├── leak_check.h │ ├── leak_check_fail_test.cc │ ├── leak_check_test.cc │ ├── stacktrace.cc │ ├── stacktrace.h │ ├── stacktrace_benchmark.cc │ ├── stacktrace_test.cc │ ├── symbolize.cc │ ├── symbolize.h │ ├── symbolize_darwin.inc │ ├── symbolize_elf.inc │ ├── symbolize_emscripten.inc │ ├── symbolize_test.cc │ ├── symbolize_unimplemented.inc │ └── symbolize_win32.inc ├── flags │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── commandlineflag.cc │ ├── commandlineflag.h │ ├── commandlineflag_test.cc │ ├── config.h │ ├── config_test.cc │ ├── declare.h │ ├── flag.cc │ ├── flag.h │ ├── flag_benchmark.cc │ ├── flag_benchmark.lds │ ├── flag_test.cc │ ├── flag_test_defs.cc │ ├── internal │ │ ├── commandlineflag.cc │ │ ├── commandlineflag.h │ │ ├── flag.cc │ │ ├── flag.h │ │ ├── flag_msvc.inc │ │ ├── parse.h │ │ ├── path_util.h │ │ ├── path_util_test.cc │ │ ├── private_handle_accessor.cc │ │ ├── private_handle_accessor.h │ │ ├── program_name.cc │ │ ├── program_name.h │ │ ├── program_name_test.cc │ │ ├── registry.h │ │ ├── sequence_lock.h │ │ ├── sequence_lock_test.cc │ │ ├── usage.cc │ │ ├── usage.h │ │ └── usage_test.cc │ ├── marshalling.cc │ ├── marshalling.h │ ├── marshalling_test.cc │ ├── parse.cc │ ├── parse.h │ ├── parse_test.cc │ ├── reflection.cc │ ├── reflection.h │ ├── reflection_test.cc │ ├── usage.cc │ ├── usage.h │ ├── usage_config.cc │ ├── usage_config.h │ └── usage_config_test.cc ├── functional │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── any_invocable.h │ ├── any_invocable_test.cc │ ├── bind_front.h │ ├── bind_front_test.cc │ ├── function_ref.h │ ├── function_ref_test.cc │ ├── function_type_benchmark.cc │ └── internal │ │ ├── any_invocable.h │ │ ├── front_binder.h │ │ └── function_ref.h ├── hash │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── hash.h │ ├── hash_benchmark.cc │ ├── hash_test.cc │ ├── hash_testing.h │ └── internal │ │ ├── city.cc │ │ ├── city.h │ │ ├── city_test.cc │ │ ├── hash.cc │ │ ├── hash.h │ │ ├── low_level_hash.cc │ │ ├── low_level_hash.h │ │ ├── low_level_hash_test.cc │ │ ├── print_hash_of.cc │ │ └── spy_hash_state.h ├── memory │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── memory.h │ └── memory_test.cc ├── meta │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── type_traits.h │ └── type_traits_test.cc ├── numeric │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── bits.h │ ├── bits_benchmark.cc │ ├── bits_test.cc │ ├── int128.cc │ ├── int128.h │ ├── int128_benchmark.cc │ ├── int128_have_intrinsic.inc │ ├── int128_no_intrinsic.inc │ ├── int128_stream_test.cc │ ├── int128_test.cc │ └── internal │ │ ├── bits.h │ │ └── representation.h ├── profiling │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ └── internal │ │ ├── exponential_biased.cc │ │ ├── exponential_biased.h │ │ ├── exponential_biased_test.cc │ │ ├── periodic_sampler.cc │ │ ├── periodic_sampler.h │ │ ├── periodic_sampler_benchmark.cc │ │ ├── periodic_sampler_test.cc │ │ ├── sample_recorder.h │ │ └── sample_recorder_test.cc ├── random │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── benchmarks.cc │ ├── bernoulli_distribution.h │ ├── bernoulli_distribution_test.cc │ ├── beta_distribution.h │ ├── beta_distribution_test.cc │ ├── bit_gen_ref.h │ ├── bit_gen_ref_test.cc │ ├── discrete_distribution.cc │ ├── discrete_distribution.h │ ├── discrete_distribution_test.cc │ ├── distributions.h │ ├── distributions_test.cc │ ├── examples_test.cc │ ├── exponential_distribution.h │ ├── exponential_distribution_test.cc │ ├── gaussian_distribution.cc │ ├── gaussian_distribution.h │ ├── gaussian_distribution_test.cc │ ├── generators_test.cc │ ├── internal │ │ ├── BUILD.bazel │ │ ├── BUILD.gn │ │ ├── chi_square.cc │ │ ├── chi_square.h │ │ ├── chi_square_test.cc │ │ ├── distribution_caller.h │ │ ├── distribution_test_util.cc │ │ ├── distribution_test_util.h │ │ ├── distribution_test_util_test.cc │ │ ├── explicit_seed_seq.h │ │ ├── explicit_seed_seq_test.cc │ │ ├── fast_uniform_bits.h │ │ ├── fast_uniform_bits_test.cc │ │ ├── fastmath.h │ │ ├── fastmath_test.cc │ │ ├── gaussian_distribution_gentables.cc │ │ ├── generate_real.h │ │ ├── generate_real_test.cc │ │ ├── iostream_state_saver.h │ │ ├── iostream_state_saver_test.cc │ │ ├── mock_helpers.h │ │ ├── mock_overload_set.h │ │ ├── nanobenchmark.cc │ │ ├── nanobenchmark.h │ │ ├── nanobenchmark_test.cc │ │ ├── nonsecure_base.h │ │ ├── nonsecure_base_test.cc │ │ ├── pcg_engine.h │ │ ├── pcg_engine_test.cc │ │ ├── platform.h │ │ ├── pool_urbg.cc │ │ ├── pool_urbg.h │ │ ├── pool_urbg_test.cc │ │ ├── randen.cc │ │ ├── randen.h │ │ ├── randen_benchmarks.cc │ │ ├── randen_detect.cc │ │ ├── randen_detect.h │ │ ├── randen_engine.h │ │ ├── randen_engine_test.cc │ │ ├── randen_hwaes.cc │ │ ├── randen_hwaes.h │ │ ├── randen_hwaes_test.cc │ │ ├── randen_round_keys.cc │ │ ├── randen_slow.cc │ │ ├── randen_slow.h │ │ ├── randen_slow_test.cc │ │ ├── randen_test.cc │ │ ├── randen_traits.h │ │ ├── salted_seed_seq.h │ │ ├── salted_seed_seq_test.cc │ │ ├── seed_material.cc │ │ ├── seed_material.h │ │ ├── seed_material_test.cc │ │ ├── sequence_urbg.h │ │ ├── traits.h │ │ ├── traits_test.cc │ │ ├── uniform_helper.h │ │ ├── uniform_helper_test.cc │ │ ├── wide_multiply.h │ │ └── wide_multiply_test.cc │ ├── log_uniform_int_distribution.h │ ├── log_uniform_int_distribution_test.cc │ ├── mock_distributions.h │ ├── mock_distributions_test.cc │ ├── mocking_bit_gen.h │ ├── mocking_bit_gen_test.cc │ ├── poisson_distribution.h │ ├── poisson_distribution_test.cc │ ├── random.h │ ├── seed_gen_exception.cc │ ├── seed_gen_exception.h │ ├── seed_sequences.cc │ ├── seed_sequences.h │ ├── seed_sequences_test.cc │ ├── uniform_int_distribution.h │ ├── uniform_int_distribution_test.cc │ ├── uniform_real_distribution.h │ ├── uniform_real_distribution_test.cc │ ├── zipf_distribution.h │ └── zipf_distribution_test.cc ├── status │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── internal │ │ ├── status_internal.h │ │ └── statusor_internal.h │ ├── status.cc │ ├── status.h │ ├── status_payload_printer.cc │ ├── status_payload_printer.h │ ├── status_test.cc │ ├── statusor.cc │ ├── statusor.h │ └── statusor_test.cc ├── strings │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── ascii.cc │ ├── ascii.h │ ├── ascii_benchmark.cc │ ├── ascii_test.cc │ ├── atod_manual_test.cc │ ├── charconv.cc │ ├── charconv.h │ ├── charconv_benchmark.cc │ ├── charconv_test.cc │ ├── cord.cc │ ├── cord.h │ ├── cord_analysis.cc │ ├── cord_analysis.h │ ├── cord_buffer.cc │ ├── cord_buffer.h │ ├── cord_buffer_test.cc │ ├── cord_ring_reader_test.cc │ ├── cord_ring_test.cc │ ├── cord_test.cc │ ├── cord_test_helpers.h │ ├── cordz_test.cc │ ├── cordz_test_helpers.h │ ├── escaping.cc │ ├── escaping.h │ ├── escaping_benchmark.cc │ ├── escaping_test.cc │ ├── internal │ │ ├── char_map.h │ │ ├── char_map_benchmark.cc │ │ ├── char_map_test.cc │ │ ├── charconv_bigint.cc │ │ ├── charconv_bigint.h │ │ ├── charconv_bigint_test.cc │ │ ├── charconv_parse.cc │ │ ├── charconv_parse.h │ │ ├── charconv_parse_test.cc │ │ ├── cord_data_edge.h │ │ ├── cord_data_edge_test.cc │ │ ├── cord_internal.cc │ │ ├── cord_internal.h │ │ ├── cord_rep_btree.cc │ │ ├── cord_rep_btree.h │ │ ├── cord_rep_btree_navigator.cc │ │ ├── cord_rep_btree_navigator.h │ │ ├── cord_rep_btree_navigator_test.cc │ │ ├── cord_rep_btree_reader.cc │ │ ├── cord_rep_btree_reader.h │ │ ├── cord_rep_btree_reader_test.cc │ │ ├── cord_rep_btree_test.cc │ │ ├── cord_rep_consume.cc │ │ ├── cord_rep_consume.h │ │ ├── cord_rep_crc.cc │ │ ├── cord_rep_crc.h │ │ ├── cord_rep_crc_test.cc │ │ ├── cord_rep_flat.h │ │ ├── cord_rep_ring.cc │ │ ├── cord_rep_ring.h │ │ ├── cord_rep_ring_reader.h │ │ ├── cord_rep_test_util.h │ │ ├── cordz_functions.cc │ │ ├── cordz_functions.h │ │ ├── cordz_functions_test.cc │ │ ├── cordz_handle.cc │ │ ├── cordz_handle.h │ │ ├── cordz_handle_test.cc │ │ ├── cordz_info.cc │ │ ├── cordz_info.h │ │ ├── cordz_info_statistics_test.cc │ │ ├── cordz_info_test.cc │ │ ├── cordz_sample_token.cc │ │ ├── cordz_sample_token.h │ │ ├── cordz_sample_token_test.cc │ │ ├── cordz_statistics.h │ │ ├── cordz_update_scope.h │ │ ├── cordz_update_scope_test.cc │ │ ├── cordz_update_tracker.h │ │ ├── cordz_update_tracker_test.cc │ │ ├── damerau_levenshtein_distance.cc │ │ ├── damerau_levenshtein_distance.h │ │ ├── damerau_levenshtein_distance_test.cc │ │ ├── escaping.cc │ │ ├── escaping.h │ │ ├── escaping_test_common.h │ │ ├── has_absl_stringify.h │ │ ├── memutil.cc │ │ ├── memutil.h │ │ ├── memutil_benchmark.cc │ │ ├── memutil_test.cc │ │ ├── numbers_test_common.h │ │ ├── ostringstream.cc │ │ ├── ostringstream.h │ │ ├── ostringstream_benchmark.cc │ │ ├── ostringstream_test.cc │ │ ├── pow10_helper.cc │ │ ├── pow10_helper.h │ │ ├── pow10_helper_test.cc │ │ ├── resize_uninitialized.h │ │ ├── resize_uninitialized_test.cc │ │ ├── stl_type_traits.h │ │ ├── str_format │ │ │ ├── arg.cc │ │ │ ├── arg.h │ │ │ ├── arg_test.cc │ │ │ ├── bind.cc │ │ │ ├── bind.h │ │ │ ├── bind_test.cc │ │ │ ├── checker.h │ │ │ ├── checker_test.cc │ │ │ ├── constexpr_parser.h │ │ │ ├── convert_test.cc │ │ │ ├── extension.cc │ │ │ ├── extension.h │ │ │ ├── extension_test.cc │ │ │ ├── float_conversion.cc │ │ │ ├── float_conversion.h │ │ │ ├── output.cc │ │ │ ├── output.h │ │ │ ├── output_test.cc │ │ │ ├── parser.cc │ │ │ ├── parser.h │ │ │ └── parser_test.cc │ │ ├── str_join_internal.h │ │ ├── str_split_internal.h │ │ ├── string_constant.h │ │ ├── string_constant_test.cc │ │ ├── stringify_sink.cc │ │ ├── stringify_sink.h │ │ ├── utf8.cc │ │ ├── utf8.h │ │ └── utf8_test.cc │ ├── match.cc │ ├── match.h │ ├── match_test.cc │ ├── numbers.cc │ ├── numbers.h │ ├── numbers_benchmark.cc │ ├── numbers_test.cc │ ├── str_cat.cc │ ├── str_cat.h │ ├── str_cat_benchmark.cc │ ├── str_cat_test.cc │ ├── str_format.h │ ├── str_format_test.cc │ ├── str_join.h │ ├── str_join_benchmark.cc │ ├── str_join_test.cc │ ├── str_replace.cc │ ├── str_replace.h │ ├── str_replace_benchmark.cc │ ├── str_replace_test.cc │ ├── str_split.cc │ ├── str_split.h │ ├── str_split_benchmark.cc │ ├── str_split_test.cc │ ├── string_view.cc │ ├── string_view.h │ ├── string_view_benchmark.cc │ ├── string_view_test.cc │ ├── strip.h │ ├── strip_test.cc │ ├── substitute.cc │ ├── substitute.h │ └── substitute_test.cc ├── synchronization │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── barrier.cc │ ├── barrier.h │ ├── barrier_test.cc │ ├── blocking_counter.cc │ ├── blocking_counter.h │ ├── blocking_counter_benchmark.cc │ ├── blocking_counter_test.cc │ ├── internal │ │ ├── create_thread_identity.cc │ │ ├── create_thread_identity.h │ │ ├── futex.h │ │ ├── futex_waiter.cc │ │ ├── futex_waiter.h │ │ ├── graphcycles.cc │ │ ├── graphcycles.h │ │ ├── graphcycles_benchmark.cc │ │ ├── graphcycles_test.cc │ │ ├── kernel_timeout.cc │ │ ├── kernel_timeout.h │ │ ├── kernel_timeout_test.cc │ │ ├── per_thread_sem.cc │ │ ├── per_thread_sem.h │ │ ├── per_thread_sem_test.cc │ │ ├── pthread_waiter.cc │ │ ├── pthread_waiter.h │ │ ├── sem_waiter.cc │ │ ├── sem_waiter.h │ │ ├── thread_pool.h │ │ ├── waiter.h │ │ ├── waiter_base.cc │ │ ├── waiter_base.h │ │ ├── waiter_test.cc │ │ ├── win32_waiter.cc │ │ └── win32_waiter.h │ ├── lifetime_test.cc │ ├── mutex.cc │ ├── mutex.h │ ├── mutex_benchmark.cc │ ├── mutex_method_pointer_test.cc │ ├── mutex_test.cc │ ├── notification.cc │ ├── notification.h │ └── notification_test.cc ├── time │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── civil_time.cc │ ├── civil_time.h │ ├── civil_time_benchmark.cc │ ├── civil_time_test.cc │ ├── clock.cc │ ├── clock.h │ ├── clock_benchmark.cc │ ├── clock_test.cc │ ├── duration.cc │ ├── duration_benchmark.cc │ ├── duration_test.cc │ ├── flag_test.cc │ ├── format.cc │ ├── format_benchmark.cc │ ├── format_test.cc │ ├── internal │ │ ├── cctz │ │ │ ├── BUILD.bazel │ │ │ ├── BUILD.gn │ │ │ ├── include │ │ │ │ └── cctz │ │ │ │ │ ├── civil_time.h │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ ├── time_zone.h │ │ │ │ │ └── zone_info_source.h │ │ │ ├── src │ │ │ │ ├── cctz_benchmark.cc │ │ │ │ ├── civil_time_detail.cc │ │ │ │ ├── civil_time_test.cc │ │ │ │ ├── time_zone_fixed.cc │ │ │ │ ├── time_zone_fixed.h │ │ │ │ ├── time_zone_format.cc │ │ │ │ ├── time_zone_format_test.cc │ │ │ │ ├── time_zone_if.cc │ │ │ │ ├── time_zone_if.h │ │ │ │ ├── time_zone_impl.cc │ │ │ │ ├── time_zone_impl.h │ │ │ │ ├── time_zone_info.cc │ │ │ │ ├── time_zone_info.h │ │ │ │ ├── time_zone_libc.cc │ │ │ │ ├── time_zone_libc.h │ │ │ │ ├── time_zone_lookup.cc │ │ │ │ ├── time_zone_lookup_test.cc │ │ │ │ ├── time_zone_posix.cc │ │ │ │ ├── time_zone_posix.h │ │ │ │ ├── tzfile.h │ │ │ │ └── zone_info_source.cc │ │ │ └── testdata │ │ │ │ ├── README.zoneinfo │ │ │ │ ├── version │ │ │ │ └── zoneinfo │ │ │ │ ├── Africa │ │ │ │ ├── Abidjan │ │ │ │ ├── Accra │ │ │ │ ├── Addis_Ababa │ │ │ │ ├── Algiers │ │ │ │ ├── Asmara │ │ │ │ ├── Asmera │ │ │ │ ├── Bamako │ │ │ │ ├── Bangui │ │ │ │ ├── Banjul │ │ │ │ ├── Bissau │ │ │ │ ├── Blantyre │ │ │ │ ├── Brazzaville │ │ │ │ ├── Bujumbura │ │ │ │ ├── Cairo │ │ │ │ ├── Casablanca │ │ │ │ ├── Ceuta │ │ │ │ ├── Conakry │ │ │ │ ├── Dakar │ │ │ │ ├── Dar_es_Salaam │ │ │ │ ├── Djibouti │ │ │ │ ├── Douala │ │ │ │ ├── El_Aaiun │ │ │ │ ├── Freetown │ │ │ │ ├── Gaborone │ │ │ │ ├── Harare │ │ │ │ ├── Johannesburg │ │ │ │ ├── Juba │ │ │ │ ├── Kampala │ │ │ │ ├── Khartoum │ │ │ │ ├── Kigali │ │ │ │ ├── Kinshasa │ │ │ │ ├── Lagos │ │ │ │ ├── Libreville │ │ │ │ ├── Lome │ │ │ │ ├── Luanda │ │ │ │ ├── Lubumbashi │ │ │ │ ├── Lusaka │ │ │ │ ├── Malabo │ │ │ │ ├── Maputo │ │ │ │ ├── Maseru │ │ │ │ ├── Mbabane │ │ │ │ ├── Mogadishu │ │ │ │ ├── Monrovia │ │ │ │ ├── Nairobi │ │ │ │ ├── Ndjamena │ │ │ │ ├── Niamey │ │ │ │ ├── Nouakchott │ │ │ │ ├── Ouagadougou │ │ │ │ ├── Porto-Novo │ │ │ │ ├── Sao_Tome │ │ │ │ ├── Timbuktu │ │ │ │ ├── Tripoli │ │ │ │ ├── Tunis │ │ │ │ └── Windhoek │ │ │ │ ├── America │ │ │ │ ├── Adak │ │ │ │ ├── Anchorage │ │ │ │ ├── Anguilla │ │ │ │ ├── Antigua │ │ │ │ ├── Araguaina │ │ │ │ ├── Argentina │ │ │ │ │ ├── Buenos_Aires │ │ │ │ │ ├── Catamarca │ │ │ │ │ ├── ComodRivadavia │ │ │ │ │ ├── Cordoba │ │ │ │ │ ├── Jujuy │ │ │ │ │ ├── La_Rioja │ │ │ │ │ ├── Mendoza │ │ │ │ │ ├── Rio_Gallegos │ │ │ │ │ ├── Salta │ │ │ │ │ ├── San_Juan │ │ │ │ │ ├── San_Luis │ │ │ │ │ ├── Tucuman │ │ │ │ │ └── Ushuaia │ │ │ │ ├── Aruba │ │ │ │ ├── Asuncion │ │ │ │ ├── Atikokan │ │ │ │ ├── Atka │ │ │ │ ├── Bahia │ │ │ │ ├── Bahia_Banderas │ │ │ │ ├── Barbados │ │ │ │ ├── Belem │ │ │ │ ├── Belize │ │ │ │ ├── Blanc-Sablon │ │ │ │ ├── Boa_Vista │ │ │ │ ├── Bogota │ │ │ │ ├── Boise │ │ │ │ ├── Buenos_Aires │ │ │ │ ├── Cambridge_Bay │ │ │ │ ├── Campo_Grande │ │ │ │ ├── Cancun │ │ │ │ ├── Caracas │ │ │ │ ├── Catamarca │ │ │ │ ├── Cayenne │ │ │ │ ├── Cayman │ │ │ │ ├── Chicago │ │ │ │ ├── Chihuahua │ │ │ │ ├── Ciudad_Juarez │ │ │ │ ├── Coral_Harbour │ │ │ │ ├── Cordoba │ │ │ │ ├── Costa_Rica │ │ │ │ ├── Creston │ │ │ │ ├── Cuiaba │ │ │ │ ├── Curacao │ │ │ │ ├── Danmarkshavn │ │ │ │ ├── Dawson │ │ │ │ ├── Dawson_Creek │ │ │ │ ├── Denver │ │ │ │ ├── Detroit │ │ │ │ ├── Dominica │ │ │ │ ├── Edmonton │ │ │ │ ├── Eirunepe │ │ │ │ ├── El_Salvador │ │ │ │ ├── Ensenada │ │ │ │ ├── Fort_Nelson │ │ │ │ ├── Fort_Wayne │ │ │ │ ├── Fortaleza │ │ │ │ ├── Glace_Bay │ │ │ │ ├── Godthab │ │ │ │ ├── Goose_Bay │ │ │ │ ├── Grand_Turk │ │ │ │ ├── Grenada │ │ │ │ ├── Guadeloupe │ │ │ │ ├── Guatemala │ │ │ │ ├── Guayaquil │ │ │ │ ├── Guyana │ │ │ │ ├── Halifax │ │ │ │ ├── Havana │ │ │ │ ├── Hermosillo │ │ │ │ ├── Indiana │ │ │ │ │ ├── Indianapolis │ │ │ │ │ ├── Knox │ │ │ │ │ ├── Marengo │ │ │ │ │ ├── Petersburg │ │ │ │ │ ├── Tell_City │ │ │ │ │ ├── Vevay │ │ │ │ │ ├── Vincennes │ │ │ │ │ └── Winamac │ │ │ │ ├── Indianapolis │ │ │ │ ├── Inuvik │ │ │ │ ├── Iqaluit │ │ │ │ ├── Jamaica │ │ │ │ ├── Jujuy │ │ │ │ ├── Juneau │ │ │ │ ├── Kentucky │ │ │ │ │ ├── Louisville │ │ │ │ │ └── Monticello │ │ │ │ ├── Knox_IN │ │ │ │ ├── Kralendijk │ │ │ │ ├── La_Paz │ │ │ │ ├── Lima │ │ │ │ ├── Los_Angeles │ │ │ │ ├── Louisville │ │ │ │ ├── Lower_Princes │ │ │ │ ├── Maceio │ │ │ │ ├── Managua │ │ │ │ ├── Manaus │ │ │ │ ├── Marigot │ │ │ │ ├── Martinique │ │ │ │ ├── Matamoros │ │ │ │ ├── Mazatlan │ │ │ │ ├── Mendoza │ │ │ │ ├── Menominee │ │ │ │ ├── Merida │ │ │ │ ├── Metlakatla │ │ │ │ ├── Mexico_City │ │ │ │ ├── Miquelon │ │ │ │ ├── Moncton │ │ │ │ ├── Monterrey │ │ │ │ ├── Montevideo │ │ │ │ ├── Montreal │ │ │ │ ├── Montserrat │ │ │ │ ├── Nassau │ │ │ │ ├── New_York │ │ │ │ ├── Nipigon │ │ │ │ ├── Nome │ │ │ │ ├── Noronha │ │ │ │ ├── North_Dakota │ │ │ │ │ ├── Beulah │ │ │ │ │ ├── Center │ │ │ │ │ └── New_Salem │ │ │ │ ├── Nuuk │ │ │ │ ├── Ojinaga │ │ │ │ ├── Panama │ │ │ │ ├── Pangnirtung │ │ │ │ ├── Paramaribo │ │ │ │ ├── Phoenix │ │ │ │ ├── Port-au-Prince │ │ │ │ ├── Port_of_Spain │ │ │ │ ├── Porto_Acre │ │ │ │ ├── Porto_Velho │ │ │ │ ├── Puerto_Rico │ │ │ │ ├── Punta_Arenas │ │ │ │ ├── Rainy_River │ │ │ │ ├── Rankin_Inlet │ │ │ │ ├── Recife │ │ │ │ ├── Regina │ │ │ │ ├── Resolute │ │ │ │ ├── Rio_Branco │ │ │ │ ├── Rosario │ │ │ │ ├── Santa_Isabel │ │ │ │ ├── Santarem │ │ │ │ ├── Santiago │ │ │ │ ├── Santo_Domingo │ │ │ │ ├── Sao_Paulo │ │ │ │ ├── Scoresbysund │ │ │ │ ├── Shiprock │ │ │ │ ├── Sitka │ │ │ │ ├── St_Barthelemy │ │ │ │ ├── St_Johns │ │ │ │ ├── St_Kitts │ │ │ │ ├── St_Lucia │ │ │ │ ├── St_Thomas │ │ │ │ ├── St_Vincent │ │ │ │ ├── Swift_Current │ │ │ │ ├── Tegucigalpa │ │ │ │ ├── Thule │ │ │ │ ├── Thunder_Bay │ │ │ │ ├── Tijuana │ │ │ │ ├── Toronto │ │ │ │ ├── Tortola │ │ │ │ ├── Vancouver │ │ │ │ ├── Virgin │ │ │ │ ├── Whitehorse │ │ │ │ ├── Winnipeg │ │ │ │ ├── Yakutat │ │ │ │ └── Yellowknife │ │ │ │ ├── Antarctica │ │ │ │ ├── Casey │ │ │ │ ├── Davis │ │ │ │ ├── DumontDUrville │ │ │ │ ├── Macquarie │ │ │ │ ├── Mawson │ │ │ │ ├── McMurdo │ │ │ │ ├── Palmer │ │ │ │ ├── Rothera │ │ │ │ ├── South_Pole │ │ │ │ ├── Syowa │ │ │ │ ├── Troll │ │ │ │ └── Vostok │ │ │ │ ├── Arctic │ │ │ │ └── Longyearbyen │ │ │ │ ├── Asia │ │ │ │ ├── Aden │ │ │ │ ├── Almaty │ │ │ │ ├── Amman │ │ │ │ ├── Anadyr │ │ │ │ ├── Aqtau │ │ │ │ ├── Aqtobe │ │ │ │ ├── Ashgabat │ │ │ │ ├── Ashkhabad │ │ │ │ ├── Atyrau │ │ │ │ ├── Baghdad │ │ │ │ ├── Bahrain │ │ │ │ ├── Baku │ │ │ │ ├── Bangkok │ │ │ │ ├── Barnaul │ │ │ │ ├── Beirut │ │ │ │ ├── Bishkek │ │ │ │ ├── Brunei │ │ │ │ ├── Calcutta │ │ │ │ ├── Chita │ │ │ │ ├── Choibalsan │ │ │ │ ├── Chongqing │ │ │ │ ├── Chungking │ │ │ │ ├── Colombo │ │ │ │ ├── Dacca │ │ │ │ ├── Damascus │ │ │ │ ├── Dhaka │ │ │ │ ├── Dili │ │ │ │ ├── Dubai │ │ │ │ ├── Dushanbe │ │ │ │ ├── Famagusta │ │ │ │ ├── Gaza │ │ │ │ ├── Harbin │ │ │ │ ├── Hebron │ │ │ │ ├── Ho_Chi_Minh │ │ │ │ ├── Hong_Kong │ │ │ │ ├── Hovd │ │ │ │ ├── Irkutsk │ │ │ │ ├── Istanbul │ │ │ │ ├── Jakarta │ │ │ │ ├── Jayapura │ │ │ │ ├── Jerusalem │ │ │ │ ├── Kabul │ │ │ │ ├── Kamchatka │ │ │ │ ├── Karachi │ │ │ │ ├── Kashgar │ │ │ │ ├── Kathmandu │ │ │ │ ├── Katmandu │ │ │ │ ├── Khandyga │ │ │ │ ├── Kolkata │ │ │ │ ├── Krasnoyarsk │ │ │ │ ├── Kuala_Lumpur │ │ │ │ ├── Kuching │ │ │ │ ├── Kuwait │ │ │ │ ├── Macao │ │ │ │ ├── Macau │ │ │ │ ├── Magadan │ │ │ │ ├── Makassar │ │ │ │ ├── Manila │ │ │ │ ├── Muscat │ │ │ │ ├── Nicosia │ │ │ │ ├── Novokuznetsk │ │ │ │ ├── Novosibirsk │ │ │ │ ├── Omsk │ │ │ │ ├── Oral │ │ │ │ ├── Phnom_Penh │ │ │ │ ├── Pontianak │ │ │ │ ├── Pyongyang │ │ │ │ ├── Qatar │ │ │ │ ├── Qostanay │ │ │ │ ├── Qyzylorda │ │ │ │ ├── Rangoon │ │ │ │ ├── Riyadh │ │ │ │ ├── Saigon │ │ │ │ ├── Sakhalin │ │ │ │ ├── Samarkand │ │ │ │ ├── Seoul │ │ │ │ ├── Shanghai │ │ │ │ ├── Singapore │ │ │ │ ├── Srednekolymsk │ │ │ │ ├── Taipei │ │ │ │ ├── Tashkent │ │ │ │ ├── Tbilisi │ │ │ │ ├── Tehran │ │ │ │ ├── Tel_Aviv │ │ │ │ ├── Thimbu │ │ │ │ ├── Thimphu │ │ │ │ ├── Tokyo │ │ │ │ ├── Tomsk │ │ │ │ ├── Ujung_Pandang │ │ │ │ ├── Ulaanbaatar │ │ │ │ ├── Ulan_Bator │ │ │ │ ├── Urumqi │ │ │ │ ├── Ust-Nera │ │ │ │ ├── Vientiane │ │ │ │ ├── Vladivostok │ │ │ │ ├── Yakutsk │ │ │ │ ├── Yangon │ │ │ │ ├── Yekaterinburg │ │ │ │ └── Yerevan │ │ │ │ ├── Atlantic │ │ │ │ ├── Azores │ │ │ │ ├── Bermuda │ │ │ │ ├── Canary │ │ │ │ ├── Cape_Verde │ │ │ │ ├── Faeroe │ │ │ │ ├── Faroe │ │ │ │ ├── Jan_Mayen │ │ │ │ ├── Madeira │ │ │ │ ├── Reykjavik │ │ │ │ ├── South_Georgia │ │ │ │ ├── St_Helena │ │ │ │ └── Stanley │ │ │ │ ├── Australia │ │ │ │ ├── ACT │ │ │ │ ├── Adelaide │ │ │ │ ├── Brisbane │ │ │ │ ├── Broken_Hill │ │ │ │ ├── Canberra │ │ │ │ ├── Currie │ │ │ │ ├── Darwin │ │ │ │ ├── Eucla │ │ │ │ ├── Hobart │ │ │ │ ├── LHI │ │ │ │ ├── Lindeman │ │ │ │ ├── Lord_Howe │ │ │ │ ├── Melbourne │ │ │ │ ├── NSW │ │ │ │ ├── North │ │ │ │ ├── Perth │ │ │ │ ├── Queensland │ │ │ │ ├── South │ │ │ │ ├── Sydney │ │ │ │ ├── Tasmania │ │ │ │ ├── Victoria │ │ │ │ ├── West │ │ │ │ └── Yancowinna │ │ │ │ ├── Brazil │ │ │ │ ├── Acre │ │ │ │ ├── DeNoronha │ │ │ │ ├── East │ │ │ │ └── West │ │ │ │ ├── CET │ │ │ │ ├── CST6CDT │ │ │ │ ├── Canada │ │ │ │ ├── Atlantic │ │ │ │ ├── Central │ │ │ │ ├── Eastern │ │ │ │ ├── Mountain │ │ │ │ ├── Newfoundland │ │ │ │ ├── Pacific │ │ │ │ ├── Saskatchewan │ │ │ │ └── Yukon │ │ │ │ ├── Chile │ │ │ │ ├── Continental │ │ │ │ └── EasterIsland │ │ │ │ ├── Cuba │ │ │ │ ├── EET │ │ │ │ ├── EST │ │ │ │ ├── EST5EDT │ │ │ │ ├── Egypt │ │ │ │ ├── Eire │ │ │ │ ├── Etc │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT+1 │ │ │ │ ├── GMT+10 │ │ │ │ ├── GMT+11 │ │ │ │ ├── GMT+12 │ │ │ │ ├── GMT+2 │ │ │ │ ├── GMT+3 │ │ │ │ ├── GMT+4 │ │ │ │ ├── GMT+5 │ │ │ │ ├── GMT+6 │ │ │ │ ├── GMT+7 │ │ │ │ ├── GMT+8 │ │ │ │ ├── GMT+9 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT-1 │ │ │ │ ├── GMT-10 │ │ │ │ ├── GMT-11 │ │ │ │ ├── GMT-12 │ │ │ │ ├── GMT-13 │ │ │ │ ├── GMT-14 │ │ │ │ ├── GMT-2 │ │ │ │ ├── GMT-3 │ │ │ │ ├── GMT-4 │ │ │ │ ├── GMT-5 │ │ │ │ ├── GMT-6 │ │ │ │ ├── GMT-7 │ │ │ │ ├── GMT-8 │ │ │ │ ├── GMT-9 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── UCT │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ └── Zulu │ │ │ │ ├── Europe │ │ │ │ ├── Amsterdam │ │ │ │ ├── Andorra │ │ │ │ ├── Astrakhan │ │ │ │ ├── Athens │ │ │ │ ├── Belfast │ │ │ │ ├── Belgrade │ │ │ │ ├── Berlin │ │ │ │ ├── Bratislava │ │ │ │ ├── Brussels │ │ │ │ ├── Bucharest │ │ │ │ ├── Budapest │ │ │ │ ├── Busingen │ │ │ │ ├── Chisinau │ │ │ │ ├── Copenhagen │ │ │ │ ├── Dublin │ │ │ │ ├── Gibraltar │ │ │ │ ├── Guernsey │ │ │ │ ├── Helsinki │ │ │ │ ├── Isle_of_Man │ │ │ │ ├── Istanbul │ │ │ │ ├── Jersey │ │ │ │ ├── Kaliningrad │ │ │ │ ├── Kiev │ │ │ │ ├── Kirov │ │ │ │ ├── Kyiv │ │ │ │ ├── Lisbon │ │ │ │ ├── Ljubljana │ │ │ │ ├── London │ │ │ │ ├── Luxembourg │ │ │ │ ├── Madrid │ │ │ │ ├── Malta │ │ │ │ ├── Mariehamn │ │ │ │ ├── Minsk │ │ │ │ ├── Monaco │ │ │ │ ├── Moscow │ │ │ │ ├── Nicosia │ │ │ │ ├── Oslo │ │ │ │ ├── Paris │ │ │ │ ├── Podgorica │ │ │ │ ├── Prague │ │ │ │ ├── Riga │ │ │ │ ├── Rome │ │ │ │ ├── Samara │ │ │ │ ├── San_Marino │ │ │ │ ├── Sarajevo │ │ │ │ ├── Saratov │ │ │ │ ├── Simferopol │ │ │ │ ├── Skopje │ │ │ │ ├── Sofia │ │ │ │ ├── Stockholm │ │ │ │ ├── Tallinn │ │ │ │ ├── Tirane │ │ │ │ ├── Tiraspol │ │ │ │ ├── Ulyanovsk │ │ │ │ ├── Uzhgorod │ │ │ │ ├── Vaduz │ │ │ │ ├── Vatican │ │ │ │ ├── Vienna │ │ │ │ ├── Vilnius │ │ │ │ ├── Volgograd │ │ │ │ ├── Warsaw │ │ │ │ ├── Zagreb │ │ │ │ ├── Zaporozhye │ │ │ │ └── Zurich │ │ │ │ ├── Factory │ │ │ │ ├── GB │ │ │ │ ├── GB-Eire │ │ │ │ ├── GMT │ │ │ │ ├── GMT+0 │ │ │ │ ├── GMT-0 │ │ │ │ ├── GMT0 │ │ │ │ ├── Greenwich │ │ │ │ ├── HST │ │ │ │ ├── Hongkong │ │ │ │ ├── Iceland │ │ │ │ ├── Indian │ │ │ │ ├── Antananarivo │ │ │ │ ├── Chagos │ │ │ │ ├── Christmas │ │ │ │ ├── Cocos │ │ │ │ ├── Comoro │ │ │ │ ├── Kerguelen │ │ │ │ ├── Mahe │ │ │ │ ├── Maldives │ │ │ │ ├── Mauritius │ │ │ │ ├── Mayotte │ │ │ │ └── Reunion │ │ │ │ ├── Iran │ │ │ │ ├── Israel │ │ │ │ ├── Jamaica │ │ │ │ ├── Japan │ │ │ │ ├── Kwajalein │ │ │ │ ├── Libya │ │ │ │ ├── MET │ │ │ │ ├── MST │ │ │ │ ├── MST7MDT │ │ │ │ ├── Mexico │ │ │ │ ├── BajaNorte │ │ │ │ ├── BajaSur │ │ │ │ └── General │ │ │ │ ├── NZ │ │ │ │ ├── NZ-CHAT │ │ │ │ ├── Navajo │ │ │ │ ├── PRC │ │ │ │ ├── PST8PDT │ │ │ │ ├── Pacific │ │ │ │ ├── Apia │ │ │ │ ├── Auckland │ │ │ │ ├── Bougainville │ │ │ │ ├── Chatham │ │ │ │ ├── Chuuk │ │ │ │ ├── Easter │ │ │ │ ├── Efate │ │ │ │ ├── Enderbury │ │ │ │ ├── Fakaofo │ │ │ │ ├── Fiji │ │ │ │ ├── Funafuti │ │ │ │ ├── Galapagos │ │ │ │ ├── Gambier │ │ │ │ ├── Guadalcanal │ │ │ │ ├── Guam │ │ │ │ ├── Honolulu │ │ │ │ ├── Johnston │ │ │ │ ├── Kanton │ │ │ │ ├── Kiritimati │ │ │ │ ├── Kosrae │ │ │ │ ├── Kwajalein │ │ │ │ ├── Majuro │ │ │ │ ├── Marquesas │ │ │ │ ├── Midway │ │ │ │ ├── Nauru │ │ │ │ ├── Niue │ │ │ │ ├── Norfolk │ │ │ │ ├── Noumea │ │ │ │ ├── Pago_Pago │ │ │ │ ├── Palau │ │ │ │ ├── Pitcairn │ │ │ │ ├── Pohnpei │ │ │ │ ├── Ponape │ │ │ │ ├── Port_Moresby │ │ │ │ ├── Rarotonga │ │ │ │ ├── Saipan │ │ │ │ ├── Samoa │ │ │ │ ├── Tahiti │ │ │ │ ├── Tarawa │ │ │ │ ├── Tongatapu │ │ │ │ ├── Truk │ │ │ │ ├── Wake │ │ │ │ ├── Wallis │ │ │ │ └── Yap │ │ │ │ ├── Poland │ │ │ │ ├── Portugal │ │ │ │ ├── ROC │ │ │ │ ├── ROK │ │ │ │ ├── Singapore │ │ │ │ ├── Turkey │ │ │ │ ├── UCT │ │ │ │ ├── US │ │ │ │ ├── Alaska │ │ │ │ ├── Aleutian │ │ │ │ ├── Arizona │ │ │ │ ├── Central │ │ │ │ ├── East-Indiana │ │ │ │ ├── Eastern │ │ │ │ ├── Hawaii │ │ │ │ ├── Indiana-Starke │ │ │ │ ├── Michigan │ │ │ │ ├── Mountain │ │ │ │ ├── Pacific │ │ │ │ └── Samoa │ │ │ │ ├── UTC │ │ │ │ ├── Universal │ │ │ │ ├── W-SU │ │ │ │ ├── WET │ │ │ │ ├── Zulu │ │ │ │ ├── iso3166.tab │ │ │ │ └── zone1970.tab │ │ ├── get_current_time_chrono.inc │ │ ├── get_current_time_posix.inc │ │ ├── test_util.cc │ │ └── test_util.h │ ├── time.cc │ ├── time.h │ ├── time_benchmark.cc │ ├── time_test.cc │ └── time_zone_test.cc ├── types │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── any.h │ ├── any_exception_safety_test.cc │ ├── any_test.cc │ ├── bad_any_cast.cc │ ├── bad_any_cast.h │ ├── bad_optional_access.cc │ ├── bad_optional_access.h │ ├── bad_variant_access.cc │ ├── bad_variant_access.h │ ├── compare.h │ ├── compare_test.cc │ ├── internal │ │ ├── conformance_aliases.h │ │ ├── conformance_archetype.h │ │ ├── conformance_profile.h │ │ ├── conformance_testing.h │ │ ├── conformance_testing_helpers.h │ │ ├── conformance_testing_test.cc │ │ ├── optional.h │ │ ├── parentheses.h │ │ ├── span.h │ │ ├── transform_args.h │ │ └── variant.h │ ├── optional.h │ ├── optional_exception_safety_test.cc │ ├── optional_test.cc │ ├── span.h │ ├── span_test.cc │ ├── variant.h │ ├── variant_benchmark.cc │ ├── variant_exception_safety_test.cc │ └── variant_test.cc └── utility │ ├── BUILD.bazel │ ├── BUILD.gn │ ├── CMakeLists.txt │ ├── utility.h │ └── utility_test.cc ├── api ├── BUILD.gn ├── DEPS ├── OWNERS ├── README.md ├── adaptation │ ├── BUILD.gn │ ├── DEPS │ ├── resource.cc │ └── resource.h ├── array_view.h ├── array_view_unittest.cc ├── async_dns_resolver.h ├── async_resolver_factory.h ├── audio │ ├── BUILD.gn │ ├── OWNERS │ ├── audio_frame.cc │ ├── audio_frame.h │ ├── audio_frame_processor.h │ ├── audio_mixer.h │ ├── channel_layout.cc │ ├── channel_layout.h │ ├── echo_canceller3_config.cc │ ├── echo_canceller3_config.h │ ├── echo_canceller3_config_json.cc │ ├── echo_canceller3_config_json.h │ ├── echo_canceller3_factory.cc │ ├── echo_canceller3_factory.h │ ├── echo_control.h │ ├── echo_detector_creator.cc │ ├── echo_detector_creator.h │ └── test │ │ ├── BUILD.gn │ │ ├── audio_frame_unittest.cc │ │ ├── echo_canceller3_config_json_unittest.cc │ │ └── echo_canceller3_config_unittest.cc ├── audio_codecs │ ├── BUILD.gn │ ├── L16 │ │ ├── BUILD.gn │ │ ├── audio_decoder_L16.cc │ │ ├── audio_decoder_L16.h │ │ ├── audio_encoder_L16.cc │ │ └── audio_encoder_L16.h │ ├── OWNERS │ ├── audio_codec_pair_id.cc │ ├── audio_codec_pair_id.h │ ├── audio_decoder.cc │ ├── audio_decoder.h │ ├── audio_decoder_factory.h │ ├── audio_decoder_factory_template.h │ ├── audio_encoder.cc │ ├── audio_encoder.h │ ├── audio_encoder_factory.h │ ├── audio_encoder_factory_template.h │ ├── audio_format.cc │ ├── audio_format.h │ ├── builtin_audio_decoder_factory.cc │ ├── builtin_audio_decoder_factory.h │ ├── builtin_audio_encoder_factory.cc │ ├── builtin_audio_encoder_factory.h │ ├── g711 │ │ ├── BUILD.gn │ │ ├── audio_decoder_g711.cc │ │ ├── audio_decoder_g711.h │ │ ├── audio_encoder_g711.cc │ │ └── audio_encoder_g711.h │ ├── g722 │ │ ├── BUILD.gn │ │ ├── audio_decoder_g722.cc │ │ ├── audio_decoder_g722.h │ │ ├── audio_encoder_g722.cc │ │ ├── audio_encoder_g722.h │ │ └── audio_encoder_g722_config.h │ ├── ilbc │ │ ├── BUILD.gn │ │ ├── audio_decoder_ilbc.cc │ │ ├── audio_decoder_ilbc.h │ │ ├── audio_encoder_ilbc.cc │ │ ├── audio_encoder_ilbc.h │ │ └── audio_encoder_ilbc_config.h │ ├── opus │ │ ├── BUILD.gn │ │ ├── audio_decoder_multi_channel_opus.cc │ │ ├── audio_decoder_multi_channel_opus.h │ │ ├── audio_decoder_multi_channel_opus_config.h │ │ ├── audio_decoder_opus.cc │ │ ├── audio_decoder_opus.h │ │ ├── audio_encoder_multi_channel_opus.cc │ │ ├── audio_encoder_multi_channel_opus.h │ │ ├── audio_encoder_multi_channel_opus_config.cc │ │ ├── audio_encoder_multi_channel_opus_config.h │ │ ├── audio_encoder_opus.cc │ │ ├── audio_encoder_opus.h │ │ ├── audio_encoder_opus_config.cc │ │ └── audio_encoder_opus_config.h │ ├── opus_audio_decoder_factory.cc │ ├── opus_audio_decoder_factory.h │ ├── opus_audio_encoder_factory.cc │ ├── opus_audio_encoder_factory.h │ └── test │ │ ├── BUILD.gn │ │ ├── audio_decoder_factory_template_unittest.cc │ │ └── audio_encoder_factory_template_unittest.cc ├── audio_options.cc ├── audio_options.h ├── call │ ├── audio_sink.h │ ├── bitrate_allocation.h │ ├── call_factory_interface.h │ ├── transport.cc │ └── transport.h ├── candidate.cc ├── candidate.h ├── create_peerconnection_factory.cc ├── create_peerconnection_factory.h ├── crypto │ ├── BUILD.gn │ ├── crypto_options.cc │ ├── crypto_options.h │ ├── frame_decryptor_interface.h │ └── frame_encryptor_interface.h ├── crypto_params.h ├── data_channel_interface.cc ├── data_channel_interface.h ├── dtls_transport_interface.cc ├── dtls_transport_interface.h ├── dtmf_sender_interface.h ├── fec_controller.h ├── fec_controller_override.h ├── field_trials.cc ├── field_trials.h ├── field_trials_registry.cc ├── field_trials_registry.h ├── field_trials_unittest.cc ├── field_trials_view.h ├── frame_transformer_factory.cc ├── frame_transformer_factory.h ├── frame_transformer_interface.h ├── function_view.h ├── function_view_unittest.cc ├── g3doc │ ├── index.md │ └── threading_design.md ├── ice_transport_factory.cc ├── ice_transport_factory.h ├── ice_transport_interface.h ├── jsep.cc ├── jsep.h ├── jsep_ice_candidate.cc ├── jsep_ice_candidate.h ├── jsep_session_description.h ├── legacy_stats_types.cc ├── legacy_stats_types.h ├── location.h ├── make_ref_counted.h ├── media_stream_interface.cc ├── media_stream_interface.h ├── media_stream_track.h ├── media_types.cc ├── media_types.h ├── metronome │ ├── BUILD.gn │ ├── metronome.cc │ ├── metronome.h │ └── test │ │ ├── BUILD.gn │ │ ├── fake_metronome.cc │ │ └── fake_metronome.h ├── neteq │ ├── BUILD.gn │ ├── DEPS │ ├── OWNERS │ ├── custom_neteq_factory.cc │ ├── custom_neteq_factory.h │ ├── default_neteq_controller_factory.cc │ ├── default_neteq_controller_factory.h │ ├── neteq.cc │ ├── neteq.h │ ├── neteq_controller.h │ ├── neteq_controller_factory.h │ ├── neteq_factory.h │ ├── tick_timer.cc │ ├── tick_timer.h │ └── tick_timer_unittest.cc ├── network_state_predictor.h ├── notifier.h ├── numerics │ ├── BUILD.gn │ ├── DEPS │ ├── samples_stats_counter.cc │ ├── samples_stats_counter.h │ └── samples_stats_counter_unittest.cc ├── packet_socket_factory.h ├── peer_connection_interface.cc ├── peer_connection_interface.h ├── priority.h ├── ref_counted_base.h ├── rtc_error.cc ├── rtc_error.h ├── rtc_error_unittest.cc ├── rtc_event_log │ ├── BUILD.gn │ ├── rtc_event.cc │ ├── rtc_event.h │ ├── rtc_event_log.cc │ ├── rtc_event_log.h │ ├── rtc_event_log_factory.cc │ ├── rtc_event_log_factory.h │ └── rtc_event_log_factory_interface.h ├── rtc_event_log_output.h ├── rtc_event_log_output_file.cc ├── rtc_event_log_output_file.h ├── rtc_event_log_output_file_unittest.cc ├── rtp_headers.cc ├── rtp_headers.h ├── rtp_packet_info.cc ├── rtp_packet_info.h ├── rtp_packet_info_unittest.cc ├── rtp_packet_infos.h ├── rtp_packet_infos_unittest.cc ├── rtp_parameters.cc ├── rtp_parameters.h ├── rtp_parameters_unittest.cc ├── rtp_receiver_interface.cc ├── rtp_receiver_interface.h ├── rtp_sender_interface.cc ├── rtp_sender_interface.h ├── rtp_transceiver_direction.h ├── rtp_transceiver_interface.cc ├── rtp_transceiver_interface.h ├── scoped_refptr.h ├── scoped_refptr_unittest.cc ├── sctp_transport_interface.cc ├── sctp_transport_interface.h ├── sequence_checker.h ├── sequence_checker_unittest.cc ├── set_local_description_observer_interface.h ├── set_remote_description_observer_interface.h ├── stats │ ├── OWNERS │ ├── rtc_stats.h │ ├── rtc_stats_collector_callback.h │ ├── rtc_stats_report.h │ └── rtcstats_objects.h ├── task_queue │ ├── BUILD.gn │ ├── DEPS │ ├── default_task_queue_factory.h │ ├── default_task_queue_factory_gcd.cc │ ├── default_task_queue_factory_libevent.cc │ ├── default_task_queue_factory_stdlib.cc │ ├── default_task_queue_factory_stdlib_or_libevent_experiment.cc │ ├── default_task_queue_factory_unittest.cc │ ├── default_task_queue_factory_win.cc │ ├── pending_task_safety_flag.cc │ ├── pending_task_safety_flag.h │ ├── pending_task_safety_flag_unittest.cc │ ├── task_queue_base.cc │ ├── task_queue_base.h │ ├── task_queue_factory.h │ ├── task_queue_test.cc │ ├── task_queue_test.h │ └── test │ │ ├── BUILD.gn │ │ └── mock_task_queue_base.h ├── test │ ├── DEPS │ ├── OWNERS │ ├── audio_quality_analyzer_interface.h │ ├── audioproc_float.cc │ ├── audioproc_float.h │ ├── compile_all_headers.cc │ ├── create_frame_generator.cc │ ├── create_frame_generator.h │ ├── create_network_emulation_manager.cc │ ├── create_network_emulation_manager.h │ ├── create_peer_connection_quality_test_frame_generator.cc │ ├── create_peer_connection_quality_test_frame_generator.h │ ├── create_peerconnection_quality_test_fixture.cc │ ├── create_peerconnection_quality_test_fixture.h │ ├── create_simulcast_test_fixture.cc │ ├── create_simulcast_test_fixture.h │ ├── create_time_controller.cc │ ├── create_time_controller.h │ ├── create_time_controller_unittest.cc │ ├── create_video_codec_tester.cc │ ├── create_video_codec_tester.h │ ├── create_video_quality_test_fixture.cc │ ├── create_video_quality_test_fixture.h │ ├── create_videocodec_test_fixture.cc │ ├── create_videocodec_test_fixture.h │ ├── fake_frame_decryptor.cc │ ├── fake_frame_decryptor.h │ ├── fake_frame_encryptor.cc │ ├── fake_frame_encryptor.h │ ├── frame_generator_interface.cc │ ├── frame_generator_interface.h │ ├── metrics │ │ ├── BUILD.gn │ │ ├── DEPS │ │ ├── chrome_perf_dashboard_metrics_exporter.cc │ │ ├── chrome_perf_dashboard_metrics_exporter.h │ │ ├── chrome_perf_dashboard_metrics_exporter_test.cc │ │ ├── global_metrics_logger_and_exporter.cc │ │ ├── global_metrics_logger_and_exporter.h │ │ ├── global_metrics_logger_and_exporter_test.cc │ │ ├── metric.cc │ │ ├── metric.h │ │ ├── metrics_accumulator.cc │ │ ├── metrics_accumulator.h │ │ ├── metrics_accumulator_test.cc │ │ ├── metrics_exporter.h │ │ ├── metrics_logger.cc │ │ ├── metrics_logger.h │ │ ├── metrics_logger_test.cc │ │ ├── metrics_set_proto_file_exporter.cc │ │ ├── metrics_set_proto_file_exporter.h │ │ ├── metrics_set_proto_file_exporter_test.cc │ │ ├── print_result_proxy_metrics_exporter.cc │ │ ├── print_result_proxy_metrics_exporter.h │ │ ├── print_result_proxy_metrics_exporter_test.cc │ │ ├── proto │ │ │ └── metric.proto │ │ ├── stdout_metrics_exporter.cc │ │ ├── stdout_metrics_exporter.h │ │ └── stdout_metrics_exporter_test.cc │ ├── mock_async_dns_resolver.h │ ├── mock_audio_mixer.h │ ├── mock_audio_sink.h │ ├── mock_data_channel.h │ ├── mock_dtmf_sender.h │ ├── mock_encoder_selector.h │ ├── mock_fec_controller_override.h │ ├── mock_frame_decryptor.h │ ├── mock_frame_encryptor.h │ ├── mock_media_stream_interface.h │ ├── mock_packet_socket_factory.h │ ├── mock_peer_connection_factory_interface.h │ ├── mock_peerconnectioninterface.h │ ├── mock_rtp_transceiver.h │ ├── mock_rtpreceiver.h │ ├── mock_rtpsender.h │ ├── mock_session_description_interface.h │ ├── mock_transformable_audio_frame.h │ ├── mock_transformable_video_frame.h │ ├── mock_video_bitrate_allocator.h │ ├── mock_video_bitrate_allocator_factory.h │ ├── mock_video_decoder.h │ ├── mock_video_decoder_factory.h │ ├── mock_video_encoder.h │ ├── mock_video_encoder_factory.h │ ├── mock_video_track.h │ ├── neteq_simulator.cc │ ├── neteq_simulator.h │ ├── neteq_simulator_factory.cc │ ├── neteq_simulator_factory.h │ ├── network_emulation │ │ ├── BUILD.gn │ │ ├── DEPS │ │ ├── create_cross_traffic.cc │ │ ├── create_cross_traffic.h │ │ ├── cross_traffic.h │ │ ├── network_emulation_interfaces.cc │ │ └── network_emulation_interfaces.h │ ├── network_emulation_manager.cc │ ├── network_emulation_manager.h │ ├── pclf │ │ ├── BUILD.gn │ │ ├── DEPS │ │ ├── media_configuration.cc │ │ ├── media_configuration.h │ │ ├── media_quality_test_params.h │ │ ├── peer_configurer.cc │ │ └── peer_configurer.h │ ├── peer_network_dependencies.h │ ├── peerconnection_quality_test_fixture.h │ ├── peerconnection_quality_test_fixture_unittest.cc │ ├── simulated_network.h │ ├── simulcast_test_fixture.h │ ├── stats_observer_interface.h │ ├── test_dependency_factory.cc │ ├── test_dependency_factory.h │ ├── time_controller.cc │ ├── time_controller.h │ ├── track_id_stream_info_map.h │ ├── video │ │ ├── BUILD.gn │ │ ├── DEPS │ │ ├── function_video_decoder_factory.h │ │ ├── function_video_encoder_factory.h │ │ ├── test_video_track_source.cc │ │ ├── test_video_track_source.h │ │ └── video_frame_writer.h │ ├── video_codec_stats.h │ ├── video_codec_tester.h │ ├── video_quality_analyzer_interface.h │ ├── video_quality_test_fixture.h │ ├── videocodec_test_fixture.h │ ├── videocodec_test_stats.cc │ └── videocodec_test_stats.h ├── transport │ ├── BUILD.gn │ ├── DEPS │ ├── OWNERS │ ├── bitrate_settings.cc │ ├── bitrate_settings.h │ ├── data_channel_transport_interface.h │ ├── enums.h │ ├── field_trial_based_config.cc │ ├── field_trial_based_config.h │ ├── goog_cc_factory.cc │ ├── goog_cc_factory.h │ ├── network_control.h │ ├── network_types.cc │ ├── network_types.h │ ├── rtp │ │ ├── BUILD.gn │ │ ├── dependency_descriptor.cc │ │ ├── dependency_descriptor.h │ │ └── rtp_source.h │ ├── sctp_transport_factory_interface.h │ ├── stun.cc │ ├── stun.h │ ├── stun_unittest.cc │ └── test │ │ ├── create_feedback_generator.cc │ │ ├── create_feedback_generator.h │ │ ├── feedback_generator_interface.h │ │ └── mock_network_control.h ├── turn_customizer.h ├── uma_metrics.h ├── units │ ├── BUILD.gn │ ├── OWNERS │ ├── data_rate.cc │ ├── data_rate.h │ ├── data_rate_unittest.cc │ ├── data_size.cc │ ├── data_size.h │ ├── data_size_unittest.cc │ ├── frequency.cc │ ├── frequency.h │ ├── frequency_unittest.cc │ ├── time_delta.cc │ ├── time_delta.h │ ├── time_delta_unittest.cc │ ├── timestamp.cc │ ├── timestamp.h │ └── timestamp_unittest.cc ├── video │ ├── BUILD.gn │ ├── DEPS │ ├── OWNERS │ ├── builtin_video_bitrate_allocator_factory.cc │ ├── builtin_video_bitrate_allocator_factory.h │ ├── color_space.cc │ ├── color_space.h │ ├── encoded_frame.cc │ ├── encoded_frame.h │ ├── encoded_image.cc │ ├── encoded_image.h │ ├── frame_buffer.cc │ ├── frame_buffer.h │ ├── frame_buffer_unittest.cc │ ├── hdr_metadata.cc │ ├── hdr_metadata.h │ ├── i010_buffer.cc │ ├── i010_buffer.h │ ├── i210_buffer.cc │ ├── i210_buffer.h │ ├── i410_buffer.cc │ ├── i410_buffer.h │ ├── i420_buffer.cc │ ├── i420_buffer.h │ ├── i422_buffer.cc │ ├── i422_buffer.h │ ├── i444_buffer.cc │ ├── i444_buffer.h │ ├── nv12_buffer.cc │ ├── nv12_buffer.h │ ├── recordable_encoded_frame.h │ ├── render_resolution.h │ ├── resolution.h │ ├── rtp_video_frame_assembler.cc │ ├── rtp_video_frame_assembler.h │ ├── rtp_video_frame_assembler_unittests.cc │ ├── test │ │ ├── BUILD.gn │ │ ├── color_space_unittest.cc │ │ ├── i210_buffer_unittest.cc │ │ ├── i410_buffer_unittest.cc │ │ ├── i422_buffer_unittest.cc │ │ ├── i444_buffer_unittest.cc │ │ ├── mock_recordable_encoded_frame.h │ │ ├── nv12_buffer_unittest.cc │ │ ├── video_adaptation_counters_unittest.cc │ │ ├── video_bitrate_allocation_unittest.cc │ │ └── video_frame_matchers.h │ ├── video_adaptation_counters.cc │ ├── video_adaptation_counters.h │ ├── video_adaptation_reason.h │ ├── video_bitrate_allocation.cc │ ├── video_bitrate_allocation.h │ ├── video_bitrate_allocator.cc │ ├── video_bitrate_allocator.h │ ├── video_bitrate_allocator_factory.h │ ├── video_codec_constants.h │ ├── video_codec_type.h │ ├── video_content_type.cc │ ├── video_content_type.h │ ├── video_frame.cc │ ├── video_frame.h │ ├── video_frame_buffer.cc │ ├── video_frame_buffer.h │ ├── video_frame_metadata.cc │ ├── video_frame_metadata.h │ ├── video_frame_metadata_unittest.cc │ ├── video_frame_type.h │ ├── video_layers_allocation.h │ ├── video_rotation.h │ ├── video_sink_interface.h │ ├── video_source_interface.cc │ ├── video_source_interface.h │ ├── video_stream_encoder_settings.h │ ├── video_timing.cc │ └── video_timing.h ├── video_codecs │ ├── BUILD.gn │ ├── OWNERS │ ├── av1_profile.cc │ ├── av1_profile.h │ ├── bitstream_parser.h │ ├── builtin_video_decoder_factory.cc │ ├── builtin_video_decoder_factory.h │ ├── builtin_video_encoder_factory.cc │ ├── builtin_video_encoder_factory.h │ ├── h264_profile_level_id.cc │ ├── h264_profile_level_id.h │ ├── scalability_mode.cc │ ├── scalability_mode.h │ ├── scalability_mode_helper.cc │ ├── scalability_mode_helper.h │ ├── sdp_video_format.cc │ ├── sdp_video_format.h │ ├── simulcast_stream.cc │ ├── simulcast_stream.h │ ├── spatial_layer.cc │ ├── spatial_layer.h │ ├── test │ │ ├── BUILD.gn │ │ ├── builtin_video_encoder_factory_unittest.cc │ │ ├── h264_profile_level_id_unittest.cc │ │ ├── sdp_video_format_unittest.cc │ │ ├── video_decoder_factory_template_tests.cc │ │ ├── video_decoder_software_fallback_wrapper_unittest.cc │ │ ├── video_encoder_factory_template_tests.cc │ │ └── video_encoder_software_fallback_wrapper_unittest.cc │ ├── video_codec.cc │ ├── video_codec.h │ ├── video_decoder.cc │ ├── video_decoder.h │ ├── video_decoder_factory.h │ ├── video_decoder_factory_template.h │ ├── video_decoder_factory_template_dav1d_adapter.h │ ├── video_decoder_factory_template_libvpx_vp8_adapter.h │ ├── video_decoder_factory_template_libvpx_vp9_adapter.h │ ├── video_decoder_factory_template_open_h264_adapter.h │ ├── video_decoder_software_fallback_wrapper.cc │ ├── video_decoder_software_fallback_wrapper.h │ ├── video_encoder.cc │ ├── video_encoder.h │ ├── video_encoder_factory.h │ ├── video_encoder_factory_template.h │ ├── video_encoder_factory_template_libaom_av1_adapter.h │ ├── video_encoder_factory_template_libvpx_vp8_adapter.h │ ├── video_encoder_factory_template_libvpx_vp9_adapter.h │ ├── video_encoder_factory_template_open_h264_adapter.h │ ├── video_encoder_software_fallback_wrapper.cc │ ├── video_encoder_software_fallback_wrapper.h │ ├── vp8_frame_buffer_controller.h │ ├── vp8_frame_config.cc │ ├── vp8_frame_config.h │ ├── vp8_temporal_layers.cc │ ├── vp8_temporal_layers.h │ ├── vp8_temporal_layers_factory.cc │ ├── vp8_temporal_layers_factory.h │ ├── vp9_profile.cc │ └── vp9_profile.h ├── video_track_source_constraints.h ├── video_track_source_proxy_factory.h ├── voip │ ├── BUILD.gn │ ├── DEPS │ ├── test │ │ ├── compile_all_headers.cc │ │ ├── mock_voip_engine.h │ │ └── voip_engine_factory_unittest.cc │ ├── voip_base.h │ ├── voip_codec.h │ ├── voip_dtmf.h │ ├── voip_engine.h │ ├── voip_engine_factory.cc │ ├── voip_engine_factory.h │ ├── voip_network.h │ ├── voip_statistics.h │ └── voip_volume_control.h ├── webrtc_key_value_config.h ├── wrapping_async_dns_resolver.cc └── wrapping_async_dns_resolver.h ├── common_audio ├── BUILD.gn ├── DEPS ├── OWNERS ├── audio_converter.cc ├── audio_converter.h ├── audio_converter_unittest.cc ├── audio_util.cc ├── audio_util_unittest.cc ├── channel_buffer.cc ├── channel_buffer.h ├── channel_buffer_unittest.cc ├── fir_filter.h ├── fir_filter_avx2.cc ├── fir_filter_avx2.h ├── fir_filter_c.cc ├── fir_filter_c.h ├── fir_filter_factory.cc ├── fir_filter_factory.h ├── fir_filter_neon.cc ├── fir_filter_neon.h ├── fir_filter_sse.cc ├── fir_filter_sse.h ├── fir_filter_unittest.cc ├── include │ └── audio_util.h ├── mocks │ └── mock_smoothing_filter.h ├── real_fourier.cc ├── real_fourier.h ├── real_fourier_ooura.cc ├── real_fourier_ooura.h ├── real_fourier_unittest.cc ├── resampler │ ├── include │ │ ├── push_resampler.h │ │ └── resampler.h │ ├── push_resampler.cc │ ├── push_resampler_unittest.cc │ ├── push_sinc_resampler.cc │ ├── push_sinc_resampler.h │ ├── push_sinc_resampler_unittest.cc │ ├── resampler.cc │ ├── resampler_unittest.cc │ ├── sinc_resampler.cc │ ├── sinc_resampler.h │ ├── sinc_resampler_avx2.cc │ ├── sinc_resampler_neon.cc │ ├── sinc_resampler_sse.cc │ ├── sinc_resampler_unittest.cc │ ├── sinusoidal_linear_chirp_source.cc │ └── sinusoidal_linear_chirp_source.h ├── ring_buffer.c ├── ring_buffer.h ├── ring_buffer_unittest.cc ├── signal_processing │ ├── auto_corr_to_refl_coef.c │ ├── auto_correlation.c │ ├── complex_bit_reverse.c │ ├── complex_bit_reverse_arm.S │ ├── complex_bit_reverse_mips.c │ ├── complex_fft.c │ ├── complex_fft_mips.c │ ├── complex_fft_tables.h │ ├── copy_set_operations.c │ ├── cross_correlation.c │ ├── cross_correlation_mips.c │ ├── cross_correlation_neon.c │ ├── division_operations.c │ ├── dot_product_with_scale.cc │ ├── dot_product_with_scale.h │ ├── downsample_fast.c │ ├── downsample_fast_mips.c │ ├── downsample_fast_neon.c │ ├── energy.c │ ├── filter_ar.c │ ├── filter_ar_fast_q12.c │ ├── filter_ar_fast_q12_armv7.S │ ├── filter_ar_fast_q12_mips.c │ ├── filter_ma_fast_q12.c │ ├── get_hanning_window.c │ ├── get_scaling_square.c │ ├── ilbc_specific_functions.c │ ├── include │ │ ├── real_fft.h │ │ ├── signal_processing_library.h │ │ ├── spl_inl.h │ │ ├── spl_inl_armv7.h │ │ └── spl_inl_mips.h │ ├── levinson_durbin.c │ ├── lpc_to_refl_coef.c │ ├── min_max_operations.c │ ├── min_max_operations_mips.c │ ├── min_max_operations_neon.c │ ├── randomization_functions.c │ ├── real_fft.c │ ├── real_fft_unittest.cc │ ├── refl_coef_to_lpc.c │ ├── resample.c │ ├── resample_48khz.c │ ├── resample_by_2.c │ ├── resample_by_2_internal.c │ ├── resample_by_2_internal.h │ ├── resample_by_2_mips.c │ ├── resample_fractional.c │ ├── signal_processing_unittest.cc │ ├── spl_init.c │ ├── spl_inl.c │ ├── spl_sqrt.c │ ├── splitting_filter.c │ ├── sqrt_of_one_minus_x_squared.c │ ├── vector_scaling_operations.c │ └── vector_scaling_operations_mips.c ├── smoothing_filter.cc ├── smoothing_filter.h ├── smoothing_filter_unittest.cc ├── third_party │ ├── ooura │ │ ├── BUILD.gn │ │ ├── LICENSE │ │ ├── README.chromium │ │ ├── fft_size_128 │ │ │ ├── ooura_fft.cc │ │ │ ├── ooura_fft.h │ │ │ ├── ooura_fft_mips.cc │ │ │ ├── ooura_fft_neon.cc │ │ │ ├── ooura_fft_sse2.cc │ │ │ ├── ooura_fft_tables_common.h │ │ │ └── ooura_fft_tables_neon_sse2.h │ │ └── fft_size_256 │ │ │ ├── fft4g.cc │ │ │ └── fft4g.h │ └── spl_sqrt_floor │ │ ├── BUILD.gn │ │ ├── LICENSE │ │ ├── README.chromium │ │ ├── spl_sqrt_floor.c │ │ ├── spl_sqrt_floor.h │ │ ├── spl_sqrt_floor_arm.S │ │ └── spl_sqrt_floor_mips.c ├── vad │ ├── include │ │ ├── vad.h │ │ └── webrtc_vad.h │ ├── mock │ │ └── mock_vad.h │ ├── vad.cc │ ├── vad_core.c │ ├── vad_core.h │ ├── vad_core_unittest.cc │ ├── vad_filterbank.c │ ├── vad_filterbank.h │ ├── vad_filterbank_unittest.cc │ ├── vad_gmm.c │ ├── vad_gmm.h │ ├── vad_gmm_unittest.cc │ ├── vad_sp.c │ ├── vad_sp.h │ ├── vad_sp_unittest.cc │ ├── vad_unittest.cc │ ├── vad_unittest.h │ └── webrtc_vad.c ├── wav_file.cc ├── wav_file.h ├── wav_file_unittest.cc ├── wav_header.cc ├── wav_header.h ├── wav_header_unittest.cc ├── window_generator.cc ├── window_generator.h └── window_generator_unittest.cc ├── jsoncpp └── source │ └── src │ └── lib_json │ └── json_writer.cpp ├── modules └── audio_processing │ ├── BUILD.gn │ ├── DEPS │ ├── OWNERS │ ├── aec3 │ ├── BUILD.gn │ ├── adaptive_fir_filter.cc │ ├── adaptive_fir_filter.h │ ├── adaptive_fir_filter_avx2.cc │ ├── adaptive_fir_filter_erl.cc │ ├── adaptive_fir_filter_erl.h │ ├── adaptive_fir_filter_erl_avx2.cc │ ├── adaptive_fir_filter_erl_unittest.cc │ ├── adaptive_fir_filter_unittest.cc │ ├── aec3_common.cc │ ├── aec3_common.h │ ├── aec3_fft.cc │ ├── aec3_fft.h │ ├── aec3_fft_unittest.cc │ ├── aec_state.cc │ ├── aec_state.h │ ├── aec_state_unittest.cc │ ├── alignment_mixer.cc │ ├── alignment_mixer.h │ ├── alignment_mixer_unittest.cc │ ├── api_call_jitter_metrics.cc │ ├── api_call_jitter_metrics.h │ ├── api_call_jitter_metrics_unittest.cc │ ├── block.h │ ├── block_buffer.cc │ ├── block_buffer.h │ ├── block_delay_buffer.cc │ ├── block_delay_buffer.h │ ├── block_delay_buffer_unittest.cc │ ├── block_framer.cc │ ├── block_framer.h │ ├── block_framer_unittest.cc │ ├── block_processor.cc │ ├── block_processor.h │ ├── block_processor_metrics.cc │ ├── block_processor_metrics.h │ ├── block_processor_metrics_unittest.cc │ ├── block_processor_unittest.cc │ ├── clockdrift_detector.cc │ ├── clockdrift_detector.h │ ├── clockdrift_detector_unittest.cc │ ├── coarse_filter_update_gain.cc │ ├── coarse_filter_update_gain.h │ ├── coarse_filter_update_gain_unittest.cc │ ├── comfort_noise_generator.cc │ ├── comfort_noise_generator.h │ ├── comfort_noise_generator_unittest.cc │ ├── config_selector.cc │ ├── config_selector.h │ ├── config_selector_unittest.cc │ ├── decimator.cc │ ├── decimator.h │ ├── decimator_unittest.cc │ ├── delay_estimate.h │ ├── dominant_nearend_detector.cc │ ├── dominant_nearend_detector.h │ ├── downsampled_render_buffer.cc │ ├── downsampled_render_buffer.h │ ├── echo_audibility.cc │ ├── echo_audibility.h │ ├── echo_canceller3.cc │ ├── echo_canceller3.h │ ├── echo_canceller3_unittest.cc │ ├── echo_path_delay_estimator.cc │ ├── echo_path_delay_estimator.h │ ├── echo_path_delay_estimator_unittest.cc │ ├── echo_path_variability.cc │ ├── echo_path_variability.h │ ├── echo_path_variability_unittest.cc │ ├── echo_remover.cc │ ├── echo_remover.h │ ├── echo_remover_metrics.cc │ ├── echo_remover_metrics.h │ ├── echo_remover_metrics_unittest.cc │ ├── echo_remover_unittest.cc │ ├── erl_estimator.cc │ ├── erl_estimator.h │ ├── erl_estimator_unittest.cc │ ├── erle_estimator.cc │ ├── erle_estimator.h │ ├── erle_estimator_unittest.cc │ ├── fft_buffer.cc │ ├── fft_buffer.h │ ├── fft_data.h │ ├── fft_data_avx2.cc │ ├── fft_data_unittest.cc │ ├── filter_analyzer.cc │ ├── filter_analyzer.h │ ├── filter_analyzer_unittest.cc │ ├── frame_blocker.cc │ ├── frame_blocker.h │ ├── frame_blocker_unittest.cc │ ├── fullband_erle_estimator.cc │ ├── fullband_erle_estimator.h │ ├── matched_filter.cc │ ├── matched_filter.h │ ├── matched_filter_avx2.cc │ ├── matched_filter_lag_aggregator.cc │ ├── matched_filter_lag_aggregator.h │ ├── matched_filter_lag_aggregator_unittest.cc │ ├── matched_filter_unittest.cc │ ├── moving_average.cc │ ├── moving_average.h │ ├── moving_average_unittest.cc │ ├── multi_channel_content_detector.cc │ ├── multi_channel_content_detector.h │ ├── multi_channel_content_detector_unittest.cc │ ├── nearend_detector.h │ ├── refined_filter_update_gain.cc │ ├── refined_filter_update_gain.h │ ├── refined_filter_update_gain_unittest.cc │ ├── render_buffer.cc │ ├── render_buffer.h │ ├── render_buffer_unittest.cc │ ├── render_delay_buffer.cc │ ├── render_delay_buffer.h │ ├── render_delay_buffer_unittest.cc │ ├── render_delay_controller.cc │ ├── render_delay_controller.h │ ├── render_delay_controller_metrics.cc │ ├── render_delay_controller_metrics.h │ ├── render_delay_controller_metrics_unittest.cc │ ├── render_delay_controller_unittest.cc │ ├── render_signal_analyzer.cc │ ├── render_signal_analyzer.h │ ├── render_signal_analyzer_unittest.cc │ ├── residual_echo_estimator.cc │ ├── residual_echo_estimator.h │ ├── residual_echo_estimator_unittest.cc │ ├── reverb_decay_estimator.cc │ ├── reverb_decay_estimator.h │ ├── reverb_frequency_response.cc │ ├── reverb_frequency_response.h │ ├── reverb_model.cc │ ├── reverb_model.h │ ├── reverb_model_estimator.cc │ ├── reverb_model_estimator.h │ ├── reverb_model_estimator_unittest.cc │ ├── signal_dependent_erle_estimator.cc │ ├── signal_dependent_erle_estimator.h │ ├── signal_dependent_erle_estimator_unittest.cc │ ├── spectrum_buffer.cc │ ├── spectrum_buffer.h │ ├── stationarity_estimator.cc │ ├── stationarity_estimator.h │ ├── subband_erle_estimator.cc │ ├── subband_erle_estimator.h │ ├── subband_nearend_detector.cc │ ├── subband_nearend_detector.h │ ├── subtractor.cc │ ├── subtractor.h │ ├── subtractor_output.cc │ ├── subtractor_output.h │ ├── subtractor_output_analyzer.cc │ ├── subtractor_output_analyzer.h │ ├── subtractor_unittest.cc │ ├── suppression_filter.cc │ ├── suppression_filter.h │ ├── suppression_filter_unittest.cc │ ├── suppression_gain.cc │ ├── suppression_gain.h │ ├── suppression_gain_unittest.cc │ ├── transparent_mode.cc │ ├── transparent_mode.h │ ├── vector_math.h │ ├── vector_math_avx2.cc │ └── vector_math_unittest.cc │ ├── audio_buffer.cc │ ├── audio_buffer.h │ ├── audio_buffer_unittest.cc │ ├── audio_frame_view_unittest.cc │ ├── audio_processing_builder_impl.cc │ ├── audio_processing_impl.cc │ ├── audio_processing_impl.h │ ├── audio_processing_impl_locking_unittest.cc │ ├── audio_processing_impl_unittest.cc │ ├── audio_processing_performance_unittest.cc │ ├── audio_processing_unittest.cc │ ├── debug.proto │ ├── echo_control_mobile_bit_exact_unittest.cc │ ├── echo_control_mobile_impl.cc │ ├── echo_control_mobile_impl.h │ ├── echo_control_mobile_unittest.cc │ ├── echo_detector │ ├── circular_buffer.cc │ ├── circular_buffer.h │ ├── circular_buffer_unittest.cc │ ├── mean_variance_estimator.cc │ ├── mean_variance_estimator.h │ ├── mean_variance_estimator_unittest.cc │ ├── moving_max.cc │ ├── moving_max.h │ ├── moving_max_unittest.cc │ ├── normalized_covariance_estimator.cc │ ├── normalized_covariance_estimator.h │ └── normalized_covariance_estimator_unittest.cc │ ├── gain_control_impl.cc │ ├── gain_control_impl.h │ ├── gain_control_unittest.cc │ ├── gain_controller2.cc │ ├── gain_controller2.h │ ├── gain_controller2_unittest.cc │ ├── high_pass_filter.cc │ ├── high_pass_filter.h │ ├── high_pass_filter_unittest.cc │ ├── include │ ├── aec_dump.cc │ ├── aec_dump.h │ ├── audio_frame_proxies.cc │ ├── audio_frame_proxies.h │ ├── audio_frame_view.h │ ├── audio_processing.cc │ ├── audio_processing.h │ ├── audio_processing_statistics.cc │ ├── audio_processing_statistics.h │ └── mock_audio_processing.h │ ├── logging │ ├── apm_data_dumper.cc │ └── apm_data_dumper.h │ ├── optionally_built_submodule_creators.cc │ ├── optionally_built_submodule_creators.h │ ├── render_queue_item_verifier.h │ ├── residual_echo_detector.cc │ ├── residual_echo_detector.h │ ├── residual_echo_detector_unittest.cc │ ├── rms_level.cc │ ├── rms_level.h │ ├── rms_level_unittest.cc │ ├── splitting_filter.cc │ ├── splitting_filter.h │ ├── splitting_filter_unittest.cc │ ├── three_band_filter_bank.cc │ ├── three_band_filter_bank.h │ └── utility │ ├── BUILD.gn │ ├── DEPS │ ├── cascaded_biquad_filter.cc │ ├── cascaded_biquad_filter.h │ ├── cascaded_biquad_filter_unittest.cc │ ├── delay_estimator.cc │ ├── delay_estimator.h │ ├── delay_estimator_internal.h │ ├── delay_estimator_unittest.cc │ ├── delay_estimator_wrapper.cc │ ├── delay_estimator_wrapper.h │ ├── pffft_wrapper.cc │ ├── pffft_wrapper.h │ └── pffft_wrapper_unittest.cc ├── rtc_base ├── BUILD.gn ├── DEPS ├── OWNERS ├── arraysize.h ├── async_packet_socket.cc ├── async_packet_socket.h ├── async_resolver.cc ├── async_resolver.h ├── async_resolver_interface.cc ├── async_resolver_interface.h ├── async_socket.cc ├── async_socket.h ├── async_tcp_socket.cc ├── async_tcp_socket.h ├── async_tcp_socket_unittest.cc ├── async_udp_socket.cc ├── async_udp_socket.h ├── async_udp_socket_unittest.cc ├── base64_unittest.cc ├── bit_buffer.cc ├── bit_buffer.h ├── bit_buffer_unittest.cc ├── bitstream_reader.cc ├── bitstream_reader.h ├── bitstream_reader_unittest.cc ├── boringssl_certificate.cc ├── boringssl_certificate.h ├── boringssl_identity.cc ├── boringssl_identity.h ├── bounded_inline_vector.h ├── bounded_inline_vector_impl.h ├── bounded_inline_vector_unittest.cc ├── buffer.h ├── buffer_queue.cc ├── buffer_queue.h ├── buffer_queue_unittest.cc ├── buffer_unittest.cc ├── byte_buffer.cc ├── byte_buffer.h ├── byte_buffer_unittest.cc ├── byte_order.h ├── byte_order_unittest.cc ├── callback_list.cc ├── callback_list.h ├── callback_list_unittest.cc ├── checks.cc ├── checks.h ├── checks_unittest.cc ├── compile_assert_c.h ├── containers │ ├── BUILD.gn │ ├── flat_map.h │ ├── flat_map_unittest.cc │ ├── flat_set.h │ ├── flat_set_unittest.cc │ ├── flat_tree.cc │ ├── flat_tree.h │ ├── flat_tree_unittest.cc │ ├── identity.h │ ├── invoke.h │ └── move_only_int.h ├── copy_on_write_buffer.cc ├── copy_on_write_buffer.h ├── copy_on_write_buffer_unittest.cc ├── cpu_time.cc ├── cpu_time.h ├── cpu_time_unittest.cc ├── crc32.cc ├── crc32.h ├── crc32_unittest.cc ├── crypt_string.cc ├── crypt_string.h ├── data_rate_limiter.cc ├── data_rate_limiter.h ├── data_rate_limiter_unittest.cc ├── deprecated │ ├── recursive_critical_section.cc │ ├── recursive_critical_section.h │ └── recursive_critical_section_unittest.cc ├── dscp.h ├── event.cc ├── event.h ├── event_tracer.cc ├── event_tracer.h ├── event_tracer_unittest.cc ├── event_unittest.cc ├── experiments │ ├── BUILD.gn │ ├── DEPS │ ├── OWNERS │ ├── alr_experiment.cc │ ├── alr_experiment.h │ ├── balanced_degradation_settings.cc │ ├── balanced_degradation_settings.h │ ├── balanced_degradation_settings_unittest.cc │ ├── bandwidth_quality_scaler_settings.cc │ ├── bandwidth_quality_scaler_settings.h │ ├── bandwidth_quality_scaler_settings_unittest.cc │ ├── cpu_speed_experiment.cc │ ├── cpu_speed_experiment.h │ ├── cpu_speed_experiment_unittest.cc │ ├── encoder_info_settings.cc │ ├── encoder_info_settings.h │ ├── encoder_info_settings_unittest.cc │ ├── field_trial_list.cc │ ├── field_trial_list.h │ ├── field_trial_list_unittest.cc │ ├── field_trial_parser.cc │ ├── field_trial_parser.h │ ├── field_trial_parser_unittest.cc │ ├── field_trial_units.cc │ ├── field_trial_units.h │ ├── field_trial_units_unittest.cc │ ├── keyframe_interval_settings.cc │ ├── keyframe_interval_settings.h │ ├── keyframe_interval_settings_unittest.cc │ ├── min_video_bitrate_experiment.cc │ ├── min_video_bitrate_experiment.h │ ├── min_video_bitrate_experiment_unittest.cc │ ├── normalize_simulcast_size_experiment.cc │ ├── normalize_simulcast_size_experiment.h │ ├── normalize_simulcast_size_experiment_unittest.cc │ ├── quality_rampup_experiment.cc │ ├── quality_rampup_experiment.h │ ├── quality_rampup_experiment_unittest.cc │ ├── quality_scaler_settings.cc │ ├── quality_scaler_settings.h │ ├── quality_scaler_settings_unittest.cc │ ├── quality_scaling_experiment.cc │ ├── quality_scaling_experiment.h │ ├── quality_scaling_experiment_unittest.cc │ ├── rate_control_settings.cc │ ├── rate_control_settings.h │ ├── rate_control_settings_unittest.cc │ ├── rtt_mult_experiment.cc │ ├── rtt_mult_experiment.h │ ├── rtt_mult_experiment_unittest.cc │ ├── stable_target_rate_experiment.cc │ ├── stable_target_rate_experiment.h │ ├── stable_target_rate_experiment_unittest.cc │ ├── struct_parameters_parser.cc │ ├── struct_parameters_parser.h │ └── struct_parameters_parser_unittest.cc ├── fake_clock.cc ├── fake_clock.h ├── fake_clock_unittest.cc ├── fake_mdns_responder.h ├── fake_network.h ├── fake_ssl_identity.cc ├── fake_ssl_identity.h ├── file_rotating_stream.cc ├── file_rotating_stream.h ├── file_rotating_stream_unittest.cc ├── firewall_socket_server.cc ├── firewall_socket_server.h ├── gtest_prod_util.h ├── gunit.cc ├── gunit.h ├── helpers.cc ├── helpers.h ├── helpers_unittest.cc ├── http_common.cc ├── http_common.h ├── ifaddrs_android.cc ├── ifaddrs_android.h ├── ifaddrs_converter.cc ├── ifaddrs_converter.h ├── ignore_wundef.h ├── internal │ ├── default_socket_server.cc │ └── default_socket_server.h ├── ip_address.cc ├── ip_address.h ├── ip_address_unittest.cc ├── java │ └── src │ │ └── org │ │ └── webrtc │ │ ├── ContextUtils.java │ │ ├── Loggable.java │ │ ├── Logging.java │ │ ├── OWNERS │ │ ├── Size.java │ │ └── ThreadUtils.java ├── log_sinks.cc ├── log_sinks.h ├── logging.cc ├── logging.h ├── logging_unittest.cc ├── mac_ifaddrs_converter.cc ├── mdns_responder_interface.h ├── memory │ ├── BUILD.gn │ ├── aligned_malloc.cc │ ├── aligned_malloc.h │ ├── aligned_malloc_unittest.cc │ ├── always_valid_pointer.h │ ├── always_valid_pointer_unittest.cc │ ├── fifo_buffer.cc │ ├── fifo_buffer.h │ └── fifo_buffer_unittest.cc ├── memory_stream.cc ├── memory_stream.h ├── memory_usage.cc ├── memory_usage.h ├── memory_usage_unittest.cc ├── message_digest.cc ├── message_digest.h ├── message_digest_unittest.cc ├── nat_server.cc ├── nat_server.h ├── nat_socket_factory.cc ├── nat_socket_factory.h ├── nat_types.cc ├── nat_types.h ├── nat_unittest.cc ├── net_helper.cc ├── net_helper.h ├── net_helpers.cc ├── net_helpers.h ├── network.cc ├── network.h ├── network │ ├── BUILD.gn │ ├── sent_packet.cc │ └── sent_packet.h ├── network_constants.cc ├── network_constants.h ├── network_monitor.cc ├── network_monitor.h ├── network_monitor_factory.cc ├── network_monitor_factory.h ├── network_route.cc ├── network_route.h ├── network_route_unittest.cc ├── network_unittest.cc ├── null_socket_server.cc ├── null_socket_server.h ├── null_socket_server_unittest.cc ├── numerics │ ├── divide_round.h │ ├── divide_round_unittest.cc │ ├── event_based_exponential_moving_average.cc │ ├── event_based_exponential_moving_average.h │ ├── event_based_exponential_moving_average_unittest.cc │ ├── event_rate_counter.cc │ ├── event_rate_counter.h │ ├── exp_filter.cc │ ├── exp_filter.h │ ├── exp_filter_unittest.cc │ ├── histogram_percentile_counter.cc │ ├── histogram_percentile_counter.h │ ├── histogram_percentile_counter_unittest.cc │ ├── math_utils.h │ ├── mod_ops.h │ ├── mod_ops_unittest.cc │ ├── moving_average.cc │ ├── moving_average.h │ ├── moving_average_unittest.cc │ ├── moving_max_counter.h │ ├── moving_max_counter_unittest.cc │ ├── moving_percentile_filter.h │ ├── moving_percentile_filter_unittest.cc │ ├── percentile_filter.h │ ├── percentile_filter_unittest.cc │ ├── running_statistics.h │ ├── running_statistics_unittest.cc │ ├── safe_compare.h │ ├── safe_compare_unittest.cc │ ├── safe_conversions.h │ ├── safe_conversions_impl.h │ ├── safe_minmax.h │ ├── safe_minmax_unittest.cc │ ├── sample_counter.cc │ ├── sample_counter.h │ ├── sample_counter_unittest.cc │ ├── sample_stats.cc │ ├── sample_stats.h │ ├── sequence_number_unwrapper.h │ ├── sequence_number_unwrapper_unittest.cc │ ├── sequence_number_util.h │ └── sequence_number_util_unittest.cc ├── one_time_event.h ├── one_time_event_unittest.cc ├── openssl.h ├── openssl_adapter.cc ├── openssl_adapter.h ├── openssl_adapter_unittest.cc ├── openssl_certificate.cc ├── openssl_certificate.h ├── openssl_digest.cc ├── openssl_digest.h ├── openssl_identity.cc ├── openssl_identity.h ├── openssl_key_pair.cc ├── openssl_key_pair.h ├── openssl_session_cache.cc ├── openssl_session_cache.h ├── openssl_session_cache_unittest.cc ├── openssl_stream_adapter.cc ├── openssl_stream_adapter.h ├── openssl_utility.cc ├── openssl_utility.h ├── openssl_utility_unittest.cc ├── operations_chain.cc ├── operations_chain.h ├── operations_chain_unittest.cc ├── physical_socket_server.cc ├── physical_socket_server.h ├── physical_socket_server_unittest.cc ├── platform_thread.cc ├── platform_thread.h ├── platform_thread_types.cc ├── platform_thread_types.h ├── platform_thread_unittest.cc ├── protobuf_utils.h ├── proxy_info.cc ├── proxy_info.h ├── proxy_server.cc ├── proxy_server.h ├── proxy_unittest.cc ├── race_checker.cc ├── race_checker.h ├── random.cc ├── random.h ├── random_unittest.cc ├── rate_limiter.cc ├── rate_limiter.h ├── rate_limiter_unittest.cc ├── rate_statistics.cc ├── rate_statistics.h ├── rate_statistics_unittest.cc ├── rate_tracker.cc ├── rate_tracker.h ├── rate_tracker_unittest.cc ├── ref_count.h ├── ref_counted_object.h ├── ref_counted_object_unittest.cc ├── ref_counter.h ├── rolling_accumulator.h ├── rolling_accumulator_unittest.cc ├── rtc_certificate.cc ├── rtc_certificate.h ├── rtc_certificate_generator.cc ├── rtc_certificate_generator.h ├── rtc_certificate_generator_unittest.cc ├── rtc_certificate_unittest.cc ├── sanitizer.h ├── sanitizer_unittest.cc ├── server_socket_adapters.cc ├── server_socket_adapters.h ├── sigslot_tester.h ├── sigslot_tester_unittest.cc ├── sigslot_unittest.cc ├── sigslottester.h.pump ├── socket.cc ├── socket.h ├── socket_adapters.cc ├── socket_adapters.h ├── socket_address.cc ├── socket_address.h ├── socket_address_pair.cc ├── socket_address_pair.h ├── socket_address_unittest.cc ├── socket_factory.h ├── socket_server.h ├── socket_stream.cc ├── socket_stream.h ├── socket_unittest.cc ├── socket_unittest.h ├── ssl_adapter.cc ├── ssl_adapter.h ├── ssl_adapter_unittest.cc ├── ssl_certificate.cc ├── ssl_certificate.h ├── ssl_fingerprint.cc ├── ssl_fingerprint.h ├── ssl_identity.cc ├── ssl_identity.h ├── ssl_identity_unittest.cc ├── ssl_roots.h ├── ssl_stream_adapter.cc ├── ssl_stream_adapter.h ├── ssl_stream_adapter_unittest.cc ├── stream.cc ├── stream.h ├── string_encode.cc ├── string_encode.h ├── string_encode_unittest.cc ├── string_to_number.cc ├── string_to_number.h ├── string_to_number_unittest.cc ├── string_utils.cc ├── string_utils.h ├── string_utils_unittest.cc ├── strings │ ├── audio_format_to_string.cc │ ├── audio_format_to_string.h │ ├── json_unittest.cc │ ├── string_builder.cc │ ├── string_builder.h │ ├── string_builder_unittest.cc │ ├── string_format.cc │ ├── string_format.h │ └── string_format_unittest.cc ├── strong_alias.h ├── strong_alias_unittest.cc ├── swap_queue.h ├── swap_queue_unittest.cc ├── synchronization │ ├── BUILD.gn │ ├── DEPS │ ├── mutex.h │ ├── mutex_abseil.h │ ├── mutex_benchmark.cc │ ├── mutex_critical_section.h │ ├── mutex_pthread.h │ ├── mutex_unittest.cc │ ├── sequence_checker_internal.cc │ ├── sequence_checker_internal.h │ ├── yield.cc │ ├── yield.h │ ├── yield_policy.cc │ ├── yield_policy.h │ └── yield_policy_unittest.cc ├── system │ ├── BUILD.gn │ ├── DEPS │ ├── arch.h │ ├── asm_defines.h │ ├── assume.h │ ├── cocoa_threading.h │ ├── cocoa_threading.mm │ ├── file_wrapper.cc │ ├── file_wrapper.h │ ├── file_wrapper_unittest.cc │ ├── gcd_helpers.h │ ├── gcd_helpers.m │ ├── ignore_warnings.h │ ├── inline.h │ ├── no_cfi_icall.h │ ├── no_unique_address.h │ ├── rtc_export.h │ ├── rtc_export_template.h │ ├── unused.h │ ├── warn_current_thread_is_deadlocked.cc │ └── warn_current_thread_is_deadlocked.h ├── system_time.cc ├── system_time.h ├── task_queue.cc ├── task_queue.h ├── task_queue_for_test.cc ├── task_queue_for_test.h ├── task_queue_gcd.cc ├── task_queue_gcd.h ├── task_queue_libevent.cc ├── task_queue_libevent.h ├── task_queue_stdlib.cc ├── task_queue_stdlib.h ├── task_queue_stdlib_unittest.cc ├── task_queue_unittest.cc ├── task_queue_win.cc ├── task_queue_win.h ├── task_utils │ ├── BUILD.gn │ ├── repeating_task.cc │ ├── repeating_task.h │ └── repeating_task_unittest.cc ├── test_base64.h ├── test_certificate_verifier.h ├── test_client.cc ├── test_client.h ├── test_client_unittest.cc ├── test_echo_server.cc ├── test_echo_server.h ├── test_utils.cc ├── test_utils.h ├── third_party │ ├── base64 │ │ ├── BUILD.gn │ │ ├── LICENSE │ │ ├── README.chromium │ │ ├── base64.cc │ │ └── base64.h │ └── sigslot │ │ ├── BUILD.gn │ │ ├── LICENSE │ │ ├── README.chromium │ │ ├── sigslot.cc │ │ └── sigslot.h ├── thread.cc ├── thread.h ├── thread_annotations.h ├── thread_annotations_unittest.cc ├── thread_unittest.cc ├── time_utils.cc ├── time_utils.h ├── time_utils_unittest.cc ├── timestamp_aligner.cc ├── timestamp_aligner.h ├── timestamp_aligner_unittest.cc ├── trace_event.h ├── type_traits.h ├── unique_id_generator.cc ├── unique_id_generator.h ├── unique_id_generator_unittest.cc ├── units │ ├── BUILD.gn │ ├── OWNERS │ ├── unit_base.h │ └── unit_base_unittest.cc ├── untyped_function.h ├── untyped_function_unittest.cc ├── virtual_socket_server.cc ├── virtual_socket_server.h ├── virtual_socket_unittest.cc ├── weak_ptr.cc ├── weak_ptr.h ├── weak_ptr_unittest.cc ├── win │ ├── BUILD.gn │ ├── create_direct3d_device.cc │ ├── create_direct3d_device.h │ ├── get_activation_factory.cc │ ├── get_activation_factory.h │ ├── hstring.cc │ ├── hstring.h │ ├── scoped_com_initializer.cc │ ├── scoped_com_initializer.h │ ├── windows_version.cc │ ├── windows_version.h │ └── windows_version_unittest.cc ├── win32.cc ├── win32.h ├── win32_socket_init.h ├── win32_unittest.cc ├── win32_window.cc ├── win32_window.h ├── win32_window_unittest.cc ├── zero_memory.cc ├── zero_memory.h └── zero_memory_unittest.cc ├── system_wrappers ├── BUILD.gn ├── DEPS ├── OWNERS ├── include │ ├── clock.h │ ├── cpu_features_wrapper.h │ ├── cpu_info.h │ ├── denormal_disabler.h │ ├── field_trial.h │ ├── metrics.h │ ├── ntp_time.h │ ├── rtp_to_ntp_estimator.h │ └── sleep.h └── source │ ├── DEPS │ ├── clock.cc │ ├── clock_unittest.cc │ ├── cpu_features.cc │ ├── cpu_features_android.cc │ ├── cpu_features_linux.cc │ ├── cpu_info.cc │ ├── denormal_disabler.cc │ ├── denormal_disabler_unittest.cc │ ├── field_trial.cc │ ├── field_trial_unittest.cc │ ├── metrics.cc │ ├── metrics_default_unittest.cc │ ├── metrics_unittest.cc │ ├── ntp_time_unittest.cc │ ├── rtp_to_ntp_estimator.cc │ ├── rtp_to_ntp_estimator_unittest.cc │ └── sleep.cc └── third_party └── pffft ├── BUILD.gn ├── DEPS ├── DIR_METADATA ├── LICENSE ├── OWNERS ├── README.chromium ├── README.md ├── README.txt ├── generate_seed_corpus.py ├── patches ├── 01-rmv_printf.diff ├── 02-decl_validate_simd.diff ├── 03-malloca.diff ├── 04-fix_ptr_cast.diff └── 05-fix-arch-detection.diff ├── pffft_fuzzer.cc ├── pffft_unittest.cc └── src ├── fftpack.c ├── fftpack.h ├── pffft.c ├── pffft.h └── test_pffft.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/.gitignore -------------------------------------------------------------------------------- /AEC3Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Demo.sln -------------------------------------------------------------------------------- /AEC3Lib/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/1.wav -------------------------------------------------------------------------------- /AEC3Lib/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/2.wav -------------------------------------------------------------------------------- /AEC3Lib/AEC3Lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/AEC3Lib.vcxproj -------------------------------------------------------------------------------- /AEC3Lib/AEC3Lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/AEC3Lib.vcxproj.filters -------------------------------------------------------------------------------- /AEC3Lib/echo1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/echo1.wav -------------------------------------------------------------------------------- /AEC3Lib/echo2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/echo2.wav -------------------------------------------------------------------------------- /AEC3Lib/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/framework.h -------------------------------------------------------------------------------- /AEC3Lib/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/main.cpp -------------------------------------------------------------------------------- /AEC3Lib/output.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/output.wav -------------------------------------------------------------------------------- /AEC3Lib/rec1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/rec1.wav -------------------------------------------------------------------------------- /AEC3Lib/rec2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/rec2.wav -------------------------------------------------------------------------------- /AEC3Lib/wave_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/wave_file.cpp -------------------------------------------------------------------------------- /AEC3Lib/wave_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/AEC3Lib/wave_file.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/README.md -------------------------------------------------------------------------------- /absl/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/BUILD.bazel -------------------------------------------------------------------------------- /absl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/CMakeLists.txt -------------------------------------------------------------------------------- /absl/abseil.podspec.gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/abseil.podspec.gen.py -------------------------------------------------------------------------------- /absl/algorithm/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/algorithm/BUILD.bazel -------------------------------------------------------------------------------- /absl/algorithm/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/algorithm/BUILD.gn -------------------------------------------------------------------------------- /absl/algorithm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/algorithm/CMakeLists.txt -------------------------------------------------------------------------------- /absl/algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/algorithm/algorithm.h -------------------------------------------------------------------------------- /absl/algorithm/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/algorithm/container.h -------------------------------------------------------------------------------- /absl/base/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/BUILD.bazel -------------------------------------------------------------------------------- /absl/base/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/BUILD.gn -------------------------------------------------------------------------------- /absl/base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/CMakeLists.txt -------------------------------------------------------------------------------- /absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/attributes.h -------------------------------------------------------------------------------- /absl/base/bit_cast_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/bit_cast_test.cc -------------------------------------------------------------------------------- /absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/call_once.h -------------------------------------------------------------------------------- /absl/base/call_once_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/call_once_test.cc -------------------------------------------------------------------------------- /absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/casts.h -------------------------------------------------------------------------------- /absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/config.h -------------------------------------------------------------------------------- /absl/base/config_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/config_test.cc -------------------------------------------------------------------------------- /absl/base/const_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/const_init.h -------------------------------------------------------------------------------- /absl/base/dynamic_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/dynamic_annotations.h -------------------------------------------------------------------------------- /absl/base/internal/cycleclock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/cycleclock.h -------------------------------------------------------------------------------- /absl/base/internal/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/endian.h -------------------------------------------------------------------------------- /absl/base/internal/hide_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/hide_ptr.h -------------------------------------------------------------------------------- /absl/base/internal/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/identity.h -------------------------------------------------------------------------------- /absl/base/internal/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/invoke.h -------------------------------------------------------------------------------- /absl/base/internal/prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/prefetch.h -------------------------------------------------------------------------------- /absl/base/internal/spinlock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/spinlock.cc -------------------------------------------------------------------------------- /absl/base/internal/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/spinlock.h -------------------------------------------------------------------------------- /absl/base/internal/strerror.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/strerror.cc -------------------------------------------------------------------------------- /absl/base/internal/strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/strerror.h -------------------------------------------------------------------------------- /absl/base/internal/sysinfo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/sysinfo.cc -------------------------------------------------------------------------------- /absl/base/internal/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/internal/sysinfo.h -------------------------------------------------------------------------------- /absl/base/invoke_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/invoke_test.cc -------------------------------------------------------------------------------- /absl/base/log_severity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/log_severity.cc -------------------------------------------------------------------------------- /absl/base/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/log_severity.h -------------------------------------------------------------------------------- /absl/base/log_severity_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/log_severity_test.cc -------------------------------------------------------------------------------- /absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/macros.h -------------------------------------------------------------------------------- /absl/base/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/optimization.h -------------------------------------------------------------------------------- /absl/base/optimization_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/optimization_test.cc -------------------------------------------------------------------------------- /absl/base/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/options.h -------------------------------------------------------------------------------- /absl/base/policy_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/policy_checks.h -------------------------------------------------------------------------------- /absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/port.h -------------------------------------------------------------------------------- /absl/base/prefetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/prefetch.h -------------------------------------------------------------------------------- /absl/base/prefetch_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/prefetch_test.cc -------------------------------------------------------------------------------- /absl/base/raw_logging_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/raw_logging_test.cc -------------------------------------------------------------------------------- /absl/base/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/base/thread_annotations.h -------------------------------------------------------------------------------- /absl/cleanup/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/cleanup/BUILD.bazel -------------------------------------------------------------------------------- /absl/cleanup/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/cleanup/BUILD.gn -------------------------------------------------------------------------------- /absl/cleanup/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/cleanup/CMakeLists.txt -------------------------------------------------------------------------------- /absl/cleanup/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/cleanup/cleanup.h -------------------------------------------------------------------------------- /absl/cleanup/cleanup_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/cleanup/cleanup_test.cc -------------------------------------------------------------------------------- /absl/cleanup/internal/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/cleanup/internal/cleanup.h -------------------------------------------------------------------------------- /absl/container/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/BUILD.bazel -------------------------------------------------------------------------------- /absl/container/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/BUILD.gn -------------------------------------------------------------------------------- /absl/container/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/CMakeLists.txt -------------------------------------------------------------------------------- /absl/container/btree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/btree_map.h -------------------------------------------------------------------------------- /absl/container/btree_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/btree_set.h -------------------------------------------------------------------------------- /absl/container/btree_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/btree_test.cc -------------------------------------------------------------------------------- /absl/container/btree_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/btree_test.h -------------------------------------------------------------------------------- /absl/container/fixed_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/fixed_array.h -------------------------------------------------------------------------------- /absl/container/flat_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/flat_hash_map.h -------------------------------------------------------------------------------- /absl/container/flat_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/flat_hash_set.h -------------------------------------------------------------------------------- /absl/container/inlined_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/inlined_vector.h -------------------------------------------------------------------------------- /absl/container/internal/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/internal/btree.h -------------------------------------------------------------------------------- /absl/container/node_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/node_hash_map.h -------------------------------------------------------------------------------- /absl/container/node_hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/container/node_hash_set.h -------------------------------------------------------------------------------- /absl/copts/GENERATED_copts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/copts/GENERATED_copts.bzl -------------------------------------------------------------------------------- /absl/copts/configure_copts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/copts/configure_copts.bzl -------------------------------------------------------------------------------- /absl/copts/copts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/copts/copts.py -------------------------------------------------------------------------------- /absl/copts/generate_copts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/copts/generate_copts.py -------------------------------------------------------------------------------- /absl/crc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/BUILD.bazel -------------------------------------------------------------------------------- /absl/crc/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/BUILD.gn -------------------------------------------------------------------------------- /absl/crc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/CMakeLists.txt -------------------------------------------------------------------------------- /absl/crc/crc32c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/crc32c.cc -------------------------------------------------------------------------------- /absl/crc/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/crc32c.h -------------------------------------------------------------------------------- /absl/crc/crc32c_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/crc32c_benchmark.cc -------------------------------------------------------------------------------- /absl/crc/crc32c_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/crc32c_test.cc -------------------------------------------------------------------------------- /absl/crc/internal/cpu_detect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/internal/cpu_detect.cc -------------------------------------------------------------------------------- /absl/crc/internal/cpu_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/internal/cpu_detect.h -------------------------------------------------------------------------------- /absl/crc/internal/crc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/internal/crc.cc -------------------------------------------------------------------------------- /absl/crc/internal/crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/internal/crc.h -------------------------------------------------------------------------------- /absl/crc/internal/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/internal/crc32c.h -------------------------------------------------------------------------------- /absl/crc/internal/crc_memcpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/crc/internal/crc_memcpy.h -------------------------------------------------------------------------------- /absl/debugging/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/BUILD.bazel -------------------------------------------------------------------------------- /absl/debugging/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/BUILD.gn -------------------------------------------------------------------------------- /absl/debugging/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/CMakeLists.txt -------------------------------------------------------------------------------- /absl/debugging/leak_check.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/leak_check.cc -------------------------------------------------------------------------------- /absl/debugging/leak_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/leak_check.h -------------------------------------------------------------------------------- /absl/debugging/stacktrace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/stacktrace.cc -------------------------------------------------------------------------------- /absl/debugging/stacktrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/stacktrace.h -------------------------------------------------------------------------------- /absl/debugging/symbolize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/symbolize.cc -------------------------------------------------------------------------------- /absl/debugging/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/debugging/symbolize.h -------------------------------------------------------------------------------- /absl/flags/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/BUILD.bazel -------------------------------------------------------------------------------- /absl/flags/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/BUILD.gn -------------------------------------------------------------------------------- /absl/flags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/CMakeLists.txt -------------------------------------------------------------------------------- /absl/flags/commandlineflag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/commandlineflag.cc -------------------------------------------------------------------------------- /absl/flags/commandlineflag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/commandlineflag.h -------------------------------------------------------------------------------- /absl/flags/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/config.h -------------------------------------------------------------------------------- /absl/flags/config_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/config_test.cc -------------------------------------------------------------------------------- /absl/flags/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/declare.h -------------------------------------------------------------------------------- /absl/flags/flag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/flag.cc -------------------------------------------------------------------------------- /absl/flags/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/flag.h -------------------------------------------------------------------------------- /absl/flags/flag_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/flag_benchmark.cc -------------------------------------------------------------------------------- /absl/flags/flag_benchmark.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/flag_benchmark.lds -------------------------------------------------------------------------------- /absl/flags/flag_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/flag_test.cc -------------------------------------------------------------------------------- /absl/flags/flag_test_defs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/flag_test_defs.cc -------------------------------------------------------------------------------- /absl/flags/internal/flag.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/internal/flag.cc -------------------------------------------------------------------------------- /absl/flags/internal/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/internal/flag.h -------------------------------------------------------------------------------- /absl/flags/internal/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/internal/parse.h -------------------------------------------------------------------------------- /absl/flags/internal/path_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/internal/path_util.h -------------------------------------------------------------------------------- /absl/flags/internal/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/internal/registry.h -------------------------------------------------------------------------------- /absl/flags/internal/usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/internal/usage.cc -------------------------------------------------------------------------------- /absl/flags/internal/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/internal/usage.h -------------------------------------------------------------------------------- /absl/flags/marshalling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/marshalling.cc -------------------------------------------------------------------------------- /absl/flags/marshalling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/marshalling.h -------------------------------------------------------------------------------- /absl/flags/marshalling_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/marshalling_test.cc -------------------------------------------------------------------------------- /absl/flags/parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/parse.cc -------------------------------------------------------------------------------- /absl/flags/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/parse.h -------------------------------------------------------------------------------- /absl/flags/parse_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/parse_test.cc -------------------------------------------------------------------------------- /absl/flags/reflection.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/reflection.cc -------------------------------------------------------------------------------- /absl/flags/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/reflection.h -------------------------------------------------------------------------------- /absl/flags/reflection_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/reflection_test.cc -------------------------------------------------------------------------------- /absl/flags/usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/usage.cc -------------------------------------------------------------------------------- /absl/flags/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/usage.h -------------------------------------------------------------------------------- /absl/flags/usage_config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/usage_config.cc -------------------------------------------------------------------------------- /absl/flags/usage_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/usage_config.h -------------------------------------------------------------------------------- /absl/flags/usage_config_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/flags/usage_config_test.cc -------------------------------------------------------------------------------- /absl/functional/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/functional/BUILD.bazel -------------------------------------------------------------------------------- /absl/functional/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/functional/BUILD.gn -------------------------------------------------------------------------------- /absl/functional/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/functional/CMakeLists.txt -------------------------------------------------------------------------------- /absl/functional/any_invocable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/functional/any_invocable.h -------------------------------------------------------------------------------- /absl/functional/bind_front.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/functional/bind_front.h -------------------------------------------------------------------------------- /absl/functional/function_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/functional/function_ref.h -------------------------------------------------------------------------------- /absl/hash/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/BUILD.bazel -------------------------------------------------------------------------------- /absl/hash/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/BUILD.gn -------------------------------------------------------------------------------- /absl/hash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/CMakeLists.txt -------------------------------------------------------------------------------- /absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/hash.h -------------------------------------------------------------------------------- /absl/hash/hash_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/hash_benchmark.cc -------------------------------------------------------------------------------- /absl/hash/hash_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/hash_test.cc -------------------------------------------------------------------------------- /absl/hash/hash_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/hash_testing.h -------------------------------------------------------------------------------- /absl/hash/internal/city.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/internal/city.cc -------------------------------------------------------------------------------- /absl/hash/internal/city.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/internal/city.h -------------------------------------------------------------------------------- /absl/hash/internal/city_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/internal/city_test.cc -------------------------------------------------------------------------------- /absl/hash/internal/hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/internal/hash.cc -------------------------------------------------------------------------------- /absl/hash/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/hash/internal/hash.h -------------------------------------------------------------------------------- /absl/memory/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/memory/BUILD.bazel -------------------------------------------------------------------------------- /absl/memory/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/memory/BUILD.gn -------------------------------------------------------------------------------- /absl/memory/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/memory/CMakeLists.txt -------------------------------------------------------------------------------- /absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/memory/memory.h -------------------------------------------------------------------------------- /absl/memory/memory_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/memory/memory_test.cc -------------------------------------------------------------------------------- /absl/meta/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/meta/BUILD.bazel -------------------------------------------------------------------------------- /absl/meta/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/meta/BUILD.gn -------------------------------------------------------------------------------- /absl/meta/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/meta/CMakeLists.txt -------------------------------------------------------------------------------- /absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/meta/type_traits.h -------------------------------------------------------------------------------- /absl/meta/type_traits_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/meta/type_traits_test.cc -------------------------------------------------------------------------------- /absl/numeric/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/BUILD.bazel -------------------------------------------------------------------------------- /absl/numeric/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/BUILD.gn -------------------------------------------------------------------------------- /absl/numeric/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/CMakeLists.txt -------------------------------------------------------------------------------- /absl/numeric/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/bits.h -------------------------------------------------------------------------------- /absl/numeric/bits_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/bits_benchmark.cc -------------------------------------------------------------------------------- /absl/numeric/bits_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/bits_test.cc -------------------------------------------------------------------------------- /absl/numeric/int128.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/int128.cc -------------------------------------------------------------------------------- /absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/int128.h -------------------------------------------------------------------------------- /absl/numeric/int128_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/int128_test.cc -------------------------------------------------------------------------------- /absl/numeric/internal/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/numeric/internal/bits.h -------------------------------------------------------------------------------- /absl/profiling/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/profiling/BUILD.bazel -------------------------------------------------------------------------------- /absl/profiling/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/profiling/BUILD.gn -------------------------------------------------------------------------------- /absl/profiling/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/profiling/CMakeLists.txt -------------------------------------------------------------------------------- /absl/random/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/BUILD.bazel -------------------------------------------------------------------------------- /absl/random/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/BUILD.gn -------------------------------------------------------------------------------- /absl/random/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/CMakeLists.txt -------------------------------------------------------------------------------- /absl/random/benchmarks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/benchmarks.cc -------------------------------------------------------------------------------- /absl/random/beta_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/beta_distribution.h -------------------------------------------------------------------------------- /absl/random/bit_gen_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/bit_gen_ref.h -------------------------------------------------------------------------------- /absl/random/bit_gen_ref_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/bit_gen_ref_test.cc -------------------------------------------------------------------------------- /absl/random/distributions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/distributions.h -------------------------------------------------------------------------------- /absl/random/examples_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/examples_test.cc -------------------------------------------------------------------------------- /absl/random/generators_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/generators_test.cc -------------------------------------------------------------------------------- /absl/random/internal/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/internal/BUILD.gn -------------------------------------------------------------------------------- /absl/random/internal/fastmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/internal/fastmath.h -------------------------------------------------------------------------------- /absl/random/internal/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/internal/platform.h -------------------------------------------------------------------------------- /absl/random/internal/randen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/internal/randen.cc -------------------------------------------------------------------------------- /absl/random/internal/randen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/internal/randen.h -------------------------------------------------------------------------------- /absl/random/internal/traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/internal/traits.h -------------------------------------------------------------------------------- /absl/random/mocking_bit_gen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/mocking_bit_gen.h -------------------------------------------------------------------------------- /absl/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/random.h -------------------------------------------------------------------------------- /absl/random/seed_sequences.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/seed_sequences.cc -------------------------------------------------------------------------------- /absl/random/seed_sequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/seed_sequences.h -------------------------------------------------------------------------------- /absl/random/zipf_distribution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/random/zipf_distribution.h -------------------------------------------------------------------------------- /absl/status/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/BUILD.bazel -------------------------------------------------------------------------------- /absl/status/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/BUILD.gn -------------------------------------------------------------------------------- /absl/status/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/CMakeLists.txt -------------------------------------------------------------------------------- /absl/status/status.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/status.cc -------------------------------------------------------------------------------- /absl/status/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/status.h -------------------------------------------------------------------------------- /absl/status/status_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/status_test.cc -------------------------------------------------------------------------------- /absl/status/statusor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/statusor.cc -------------------------------------------------------------------------------- /absl/status/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/statusor.h -------------------------------------------------------------------------------- /absl/status/statusor_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/status/statusor_test.cc -------------------------------------------------------------------------------- /absl/strings/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/BUILD.bazel -------------------------------------------------------------------------------- /absl/strings/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/BUILD.gn -------------------------------------------------------------------------------- /absl/strings/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/CMakeLists.txt -------------------------------------------------------------------------------- /absl/strings/ascii.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/ascii.cc -------------------------------------------------------------------------------- /absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/ascii.h -------------------------------------------------------------------------------- /absl/strings/ascii_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/ascii_benchmark.cc -------------------------------------------------------------------------------- /absl/strings/ascii_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/ascii_test.cc -------------------------------------------------------------------------------- /absl/strings/charconv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/charconv.cc -------------------------------------------------------------------------------- /absl/strings/charconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/charconv.h -------------------------------------------------------------------------------- /absl/strings/charconv_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/charconv_test.cc -------------------------------------------------------------------------------- /absl/strings/cord.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord.cc -------------------------------------------------------------------------------- /absl/strings/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord.h -------------------------------------------------------------------------------- /absl/strings/cord_analysis.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord_analysis.cc -------------------------------------------------------------------------------- /absl/strings/cord_analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord_analysis.h -------------------------------------------------------------------------------- /absl/strings/cord_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord_buffer.cc -------------------------------------------------------------------------------- /absl/strings/cord_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord_buffer.h -------------------------------------------------------------------------------- /absl/strings/cord_ring_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord_ring_test.cc -------------------------------------------------------------------------------- /absl/strings/cord_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cord_test.cc -------------------------------------------------------------------------------- /absl/strings/cordz_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/cordz_test.cc -------------------------------------------------------------------------------- /absl/strings/escaping.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/escaping.cc -------------------------------------------------------------------------------- /absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/escaping.h -------------------------------------------------------------------------------- /absl/strings/escaping_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/escaping_test.cc -------------------------------------------------------------------------------- /absl/strings/internal/memutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/internal/memutil.h -------------------------------------------------------------------------------- /absl/strings/internal/utf8.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/internal/utf8.cc -------------------------------------------------------------------------------- /absl/strings/internal/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/internal/utf8.h -------------------------------------------------------------------------------- /absl/strings/match.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/match.cc -------------------------------------------------------------------------------- /absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/match.h -------------------------------------------------------------------------------- /absl/strings/match_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/match_test.cc -------------------------------------------------------------------------------- /absl/strings/numbers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/numbers.cc -------------------------------------------------------------------------------- /absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/numbers.h -------------------------------------------------------------------------------- /absl/strings/numbers_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/numbers_test.cc -------------------------------------------------------------------------------- /absl/strings/str_cat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_cat.cc -------------------------------------------------------------------------------- /absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_cat.h -------------------------------------------------------------------------------- /absl/strings/str_cat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_cat_test.cc -------------------------------------------------------------------------------- /absl/strings/str_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_format.h -------------------------------------------------------------------------------- /absl/strings/str_format_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_format_test.cc -------------------------------------------------------------------------------- /absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_join.h -------------------------------------------------------------------------------- /absl/strings/str_join_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_join_test.cc -------------------------------------------------------------------------------- /absl/strings/str_replace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_replace.cc -------------------------------------------------------------------------------- /absl/strings/str_replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_replace.h -------------------------------------------------------------------------------- /absl/strings/str_split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_split.cc -------------------------------------------------------------------------------- /absl/strings/str_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_split.h -------------------------------------------------------------------------------- /absl/strings/str_split_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/str_split_test.cc -------------------------------------------------------------------------------- /absl/strings/string_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/string_view.cc -------------------------------------------------------------------------------- /absl/strings/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/string_view.h -------------------------------------------------------------------------------- /absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/strip.h -------------------------------------------------------------------------------- /absl/strings/strip_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/strip_test.cc -------------------------------------------------------------------------------- /absl/strings/substitute.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/substitute.cc -------------------------------------------------------------------------------- /absl/strings/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/substitute.h -------------------------------------------------------------------------------- /absl/strings/substitute_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/strings/substitute_test.cc -------------------------------------------------------------------------------- /absl/synchronization/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/synchronization/BUILD.gn -------------------------------------------------------------------------------- /absl/synchronization/barrier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/synchronization/barrier.cc -------------------------------------------------------------------------------- /absl/synchronization/barrier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/synchronization/barrier.h -------------------------------------------------------------------------------- /absl/synchronization/mutex.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/synchronization/mutex.cc -------------------------------------------------------------------------------- /absl/synchronization/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/synchronization/mutex.h -------------------------------------------------------------------------------- /absl/time/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/BUILD.bazel -------------------------------------------------------------------------------- /absl/time/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/BUILD.gn -------------------------------------------------------------------------------- /absl/time/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/CMakeLists.txt -------------------------------------------------------------------------------- /absl/time/civil_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/civil_time.cc -------------------------------------------------------------------------------- /absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/civil_time.h -------------------------------------------------------------------------------- /absl/time/civil_time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/civil_time_test.cc -------------------------------------------------------------------------------- /absl/time/clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/clock.cc -------------------------------------------------------------------------------- /absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/clock.h -------------------------------------------------------------------------------- /absl/time/clock_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/clock_benchmark.cc -------------------------------------------------------------------------------- /absl/time/clock_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/clock_test.cc -------------------------------------------------------------------------------- /absl/time/duration.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/duration.cc -------------------------------------------------------------------------------- /absl/time/duration_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/duration_benchmark.cc -------------------------------------------------------------------------------- /absl/time/duration_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/duration_test.cc -------------------------------------------------------------------------------- /absl/time/flag_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/flag_test.cc -------------------------------------------------------------------------------- /absl/time/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/format.cc -------------------------------------------------------------------------------- /absl/time/format_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/format_benchmark.cc -------------------------------------------------------------------------------- /absl/time/format_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/format_test.cc -------------------------------------------------------------------------------- /absl/time/internal/cctz/testdata/version: -------------------------------------------------------------------------------- 1 | 2022g 2 | -------------------------------------------------------------------------------- /absl/time/internal/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/internal/test_util.cc -------------------------------------------------------------------------------- /absl/time/internal/test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/internal/test_util.h -------------------------------------------------------------------------------- /absl/time/time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/time.cc -------------------------------------------------------------------------------- /absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/time.h -------------------------------------------------------------------------------- /absl/time/time_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/time_benchmark.cc -------------------------------------------------------------------------------- /absl/time/time_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/time_test.cc -------------------------------------------------------------------------------- /absl/time/time_zone_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/time/time_zone_test.cc -------------------------------------------------------------------------------- /absl/types/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/BUILD.bazel -------------------------------------------------------------------------------- /absl/types/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/BUILD.gn -------------------------------------------------------------------------------- /absl/types/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/CMakeLists.txt -------------------------------------------------------------------------------- /absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/any.h -------------------------------------------------------------------------------- /absl/types/any_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/any_test.cc -------------------------------------------------------------------------------- /absl/types/bad_any_cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/bad_any_cast.cc -------------------------------------------------------------------------------- /absl/types/bad_any_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/bad_any_cast.h -------------------------------------------------------------------------------- /absl/types/bad_variant_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/bad_variant_access.h -------------------------------------------------------------------------------- /absl/types/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/compare.h -------------------------------------------------------------------------------- /absl/types/compare_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/compare_test.cc -------------------------------------------------------------------------------- /absl/types/internal/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/internal/optional.h -------------------------------------------------------------------------------- /absl/types/internal/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/internal/span.h -------------------------------------------------------------------------------- /absl/types/internal/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/internal/variant.h -------------------------------------------------------------------------------- /absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/optional.h -------------------------------------------------------------------------------- /absl/types/optional_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/optional_test.cc -------------------------------------------------------------------------------- /absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/span.h -------------------------------------------------------------------------------- /absl/types/span_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/span_test.cc -------------------------------------------------------------------------------- /absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/variant.h -------------------------------------------------------------------------------- /absl/types/variant_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/variant_benchmark.cc -------------------------------------------------------------------------------- /absl/types/variant_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/types/variant_test.cc -------------------------------------------------------------------------------- /absl/utility/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/utility/BUILD.bazel -------------------------------------------------------------------------------- /absl/utility/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/utility/BUILD.gn -------------------------------------------------------------------------------- /absl/utility/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/utility/CMakeLists.txt -------------------------------------------------------------------------------- /absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/utility/utility.h -------------------------------------------------------------------------------- /absl/utility/utility_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/absl/utility/utility_test.cc -------------------------------------------------------------------------------- /api/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/BUILD.gn -------------------------------------------------------------------------------- /api/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/DEPS -------------------------------------------------------------------------------- /api/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/OWNERS -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/README.md -------------------------------------------------------------------------------- /api/adaptation/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/adaptation/BUILD.gn -------------------------------------------------------------------------------- /api/adaptation/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/adaptation/DEPS -------------------------------------------------------------------------------- /api/adaptation/resource.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/adaptation/resource.cc -------------------------------------------------------------------------------- /api/adaptation/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/adaptation/resource.h -------------------------------------------------------------------------------- /api/array_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/array_view.h -------------------------------------------------------------------------------- /api/array_view_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/array_view_unittest.cc -------------------------------------------------------------------------------- /api/async_dns_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/async_dns_resolver.h -------------------------------------------------------------------------------- /api/async_resolver_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/async_resolver_factory.h -------------------------------------------------------------------------------- /api/audio/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/BUILD.gn -------------------------------------------------------------------------------- /api/audio/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/OWNERS -------------------------------------------------------------------------------- /api/audio/audio_frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/audio_frame.cc -------------------------------------------------------------------------------- /api/audio/audio_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/audio_frame.h -------------------------------------------------------------------------------- /api/audio/audio_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/audio_mixer.h -------------------------------------------------------------------------------- /api/audio/channel_layout.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/channel_layout.cc -------------------------------------------------------------------------------- /api/audio/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/channel_layout.h -------------------------------------------------------------------------------- /api/audio/echo_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/echo_control.h -------------------------------------------------------------------------------- /api/audio/test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio/test/BUILD.gn -------------------------------------------------------------------------------- /api/audio_codecs/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/BUILD.gn -------------------------------------------------------------------------------- /api/audio_codecs/L16/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/L16/BUILD.gn -------------------------------------------------------------------------------- /api/audio_codecs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/OWNERS -------------------------------------------------------------------------------- /api/audio_codecs/audio_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/audio_format.h -------------------------------------------------------------------------------- /api/audio_codecs/g711/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/g711/BUILD.gn -------------------------------------------------------------------------------- /api/audio_codecs/g722/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/g722/BUILD.gn -------------------------------------------------------------------------------- /api/audio_codecs/ilbc/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/ilbc/BUILD.gn -------------------------------------------------------------------------------- /api/audio_codecs/opus/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/opus/BUILD.gn -------------------------------------------------------------------------------- /api/audio_codecs/test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_codecs/test/BUILD.gn -------------------------------------------------------------------------------- /api/audio_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_options.cc -------------------------------------------------------------------------------- /api/audio_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/audio_options.h -------------------------------------------------------------------------------- /api/call/audio_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/call/audio_sink.h -------------------------------------------------------------------------------- /api/call/bitrate_allocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/call/bitrate_allocation.h -------------------------------------------------------------------------------- /api/call/transport.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/call/transport.cc -------------------------------------------------------------------------------- /api/call/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/call/transport.h -------------------------------------------------------------------------------- /api/candidate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/candidate.cc -------------------------------------------------------------------------------- /api/candidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/candidate.h -------------------------------------------------------------------------------- /api/crypto/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/crypto/BUILD.gn -------------------------------------------------------------------------------- /api/crypto/crypto_options.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/crypto/crypto_options.cc -------------------------------------------------------------------------------- /api/crypto/crypto_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/crypto/crypto_options.h -------------------------------------------------------------------------------- /api/crypto_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/crypto_params.h -------------------------------------------------------------------------------- /api/data_channel_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/data_channel_interface.cc -------------------------------------------------------------------------------- /api/data_channel_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/data_channel_interface.h -------------------------------------------------------------------------------- /api/dtls_transport_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/dtls_transport_interface.cc -------------------------------------------------------------------------------- /api/dtls_transport_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/dtls_transport_interface.h -------------------------------------------------------------------------------- /api/dtmf_sender_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/dtmf_sender_interface.h -------------------------------------------------------------------------------- /api/fec_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/fec_controller.h -------------------------------------------------------------------------------- /api/fec_controller_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/fec_controller_override.h -------------------------------------------------------------------------------- /api/field_trials.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/field_trials.cc -------------------------------------------------------------------------------- /api/field_trials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/field_trials.h -------------------------------------------------------------------------------- /api/field_trials_registry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/field_trials_registry.cc -------------------------------------------------------------------------------- /api/field_trials_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/field_trials_registry.h -------------------------------------------------------------------------------- /api/field_trials_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/field_trials_unittest.cc -------------------------------------------------------------------------------- /api/field_trials_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/field_trials_view.h -------------------------------------------------------------------------------- /api/frame_transformer_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/frame_transformer_factory.h -------------------------------------------------------------------------------- /api/function_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/function_view.h -------------------------------------------------------------------------------- /api/function_view_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/function_view_unittest.cc -------------------------------------------------------------------------------- /api/g3doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/g3doc/index.md -------------------------------------------------------------------------------- /api/g3doc/threading_design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/g3doc/threading_design.md -------------------------------------------------------------------------------- /api/ice_transport_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/ice_transport_factory.cc -------------------------------------------------------------------------------- /api/ice_transport_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/ice_transport_factory.h -------------------------------------------------------------------------------- /api/ice_transport_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/ice_transport_interface.h -------------------------------------------------------------------------------- /api/jsep.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/jsep.cc -------------------------------------------------------------------------------- /api/jsep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/jsep.h -------------------------------------------------------------------------------- /api/jsep_ice_candidate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/jsep_ice_candidate.cc -------------------------------------------------------------------------------- /api/jsep_ice_candidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/jsep_ice_candidate.h -------------------------------------------------------------------------------- /api/jsep_session_description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/jsep_session_description.h -------------------------------------------------------------------------------- /api/legacy_stats_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/legacy_stats_types.cc -------------------------------------------------------------------------------- /api/legacy_stats_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/legacy_stats_types.h -------------------------------------------------------------------------------- /api/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/location.h -------------------------------------------------------------------------------- /api/make_ref_counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/make_ref_counted.h -------------------------------------------------------------------------------- /api/media_stream_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/media_stream_interface.cc -------------------------------------------------------------------------------- /api/media_stream_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/media_stream_interface.h -------------------------------------------------------------------------------- /api/media_stream_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/media_stream_track.h -------------------------------------------------------------------------------- /api/media_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/media_types.cc -------------------------------------------------------------------------------- /api/media_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/media_types.h -------------------------------------------------------------------------------- /api/metronome/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/metronome/BUILD.gn -------------------------------------------------------------------------------- /api/metronome/metronome.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/metronome/metronome.cc -------------------------------------------------------------------------------- /api/metronome/metronome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/metronome/metronome.h -------------------------------------------------------------------------------- /api/metronome/test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/metronome/test/BUILD.gn -------------------------------------------------------------------------------- /api/neteq/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/BUILD.gn -------------------------------------------------------------------------------- /api/neteq/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/DEPS -------------------------------------------------------------------------------- /api/neteq/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/OWNERS -------------------------------------------------------------------------------- /api/neteq/neteq.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/neteq.cc -------------------------------------------------------------------------------- /api/neteq/neteq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/neteq.h -------------------------------------------------------------------------------- /api/neteq/neteq_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/neteq_controller.h -------------------------------------------------------------------------------- /api/neteq/neteq_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/neteq_factory.h -------------------------------------------------------------------------------- /api/neteq/tick_timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/tick_timer.cc -------------------------------------------------------------------------------- /api/neteq/tick_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/neteq/tick_timer.h -------------------------------------------------------------------------------- /api/network_state_predictor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/network_state_predictor.h -------------------------------------------------------------------------------- /api/notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/notifier.h -------------------------------------------------------------------------------- /api/numerics/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/numerics/BUILD.gn -------------------------------------------------------------------------------- /api/numerics/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/numerics/DEPS -------------------------------------------------------------------------------- /api/packet_socket_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/packet_socket_factory.h -------------------------------------------------------------------------------- /api/peer_connection_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/peer_connection_interface.h -------------------------------------------------------------------------------- /api/priority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/priority.h -------------------------------------------------------------------------------- /api/ref_counted_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/ref_counted_base.h -------------------------------------------------------------------------------- /api/rtc_error.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_error.cc -------------------------------------------------------------------------------- /api/rtc_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_error.h -------------------------------------------------------------------------------- /api/rtc_error_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_error_unittest.cc -------------------------------------------------------------------------------- /api/rtc_event_log/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_event_log/BUILD.gn -------------------------------------------------------------------------------- /api/rtc_event_log/rtc_event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_event_log/rtc_event.cc -------------------------------------------------------------------------------- /api/rtc_event_log/rtc_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_event_log/rtc_event.h -------------------------------------------------------------------------------- /api/rtc_event_log_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_event_log_output.h -------------------------------------------------------------------------------- /api/rtc_event_log_output_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtc_event_log_output_file.h -------------------------------------------------------------------------------- /api/rtp_headers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_headers.cc -------------------------------------------------------------------------------- /api/rtp_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_headers.h -------------------------------------------------------------------------------- /api/rtp_packet_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_packet_info.cc -------------------------------------------------------------------------------- /api/rtp_packet_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_packet_info.h -------------------------------------------------------------------------------- /api/rtp_packet_info_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_packet_info_unittest.cc -------------------------------------------------------------------------------- /api/rtp_packet_infos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_packet_infos.h -------------------------------------------------------------------------------- /api/rtp_parameters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_parameters.cc -------------------------------------------------------------------------------- /api/rtp_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_parameters.h -------------------------------------------------------------------------------- /api/rtp_parameters_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_parameters_unittest.cc -------------------------------------------------------------------------------- /api/rtp_receiver_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_receiver_interface.cc -------------------------------------------------------------------------------- /api/rtp_receiver_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_receiver_interface.h -------------------------------------------------------------------------------- /api/rtp_sender_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_sender_interface.cc -------------------------------------------------------------------------------- /api/rtp_sender_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_sender_interface.h -------------------------------------------------------------------------------- /api/rtp_transceiver_direction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_transceiver_direction.h -------------------------------------------------------------------------------- /api/rtp_transceiver_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/rtp_transceiver_interface.h -------------------------------------------------------------------------------- /api/scoped_refptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/scoped_refptr.h -------------------------------------------------------------------------------- /api/scoped_refptr_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/scoped_refptr_unittest.cc -------------------------------------------------------------------------------- /api/sctp_transport_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/sctp_transport_interface.cc -------------------------------------------------------------------------------- /api/sctp_transport_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/sctp_transport_interface.h -------------------------------------------------------------------------------- /api/sequence_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/sequence_checker.h -------------------------------------------------------------------------------- /api/stats/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/stats/OWNERS -------------------------------------------------------------------------------- /api/stats/rtc_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/stats/rtc_stats.h -------------------------------------------------------------------------------- /api/stats/rtc_stats_report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/stats/rtc_stats_report.h -------------------------------------------------------------------------------- /api/stats/rtcstats_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/stats/rtcstats_objects.h -------------------------------------------------------------------------------- /api/task_queue/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/task_queue/BUILD.gn -------------------------------------------------------------------------------- /api/task_queue/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/task_queue/DEPS -------------------------------------------------------------------------------- /api/task_queue/test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/task_queue/test/BUILD.gn -------------------------------------------------------------------------------- /api/test/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/DEPS -------------------------------------------------------------------------------- /api/test/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/OWNERS -------------------------------------------------------------------------------- /api/test/audioproc_float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/audioproc_float.cc -------------------------------------------------------------------------------- /api/test/audioproc_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/audioproc_float.h -------------------------------------------------------------------------------- /api/test/compile_all_headers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/compile_all_headers.cc -------------------------------------------------------------------------------- /api/test/fake_frame_decryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/fake_frame_decryptor.h -------------------------------------------------------------------------------- /api/test/fake_frame_encryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/fake_frame_encryptor.h -------------------------------------------------------------------------------- /api/test/metrics/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/metrics/BUILD.gn -------------------------------------------------------------------------------- /api/test/metrics/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/metrics/DEPS -------------------------------------------------------------------------------- /api/test/metrics/metric.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/metrics/metric.cc -------------------------------------------------------------------------------- /api/test/metrics/metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/metrics/metric.h -------------------------------------------------------------------------------- /api/test/mock_audio_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_audio_mixer.h -------------------------------------------------------------------------------- /api/test/mock_audio_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_audio_sink.h -------------------------------------------------------------------------------- /api/test/mock_data_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_data_channel.h -------------------------------------------------------------------------------- /api/test/mock_dtmf_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_dtmf_sender.h -------------------------------------------------------------------------------- /api/test/mock_frame_decryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_frame_decryptor.h -------------------------------------------------------------------------------- /api/test/mock_frame_encryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_frame_encryptor.h -------------------------------------------------------------------------------- /api/test/mock_rtp_transceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_rtp_transceiver.h -------------------------------------------------------------------------------- /api/test/mock_rtpreceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_rtpreceiver.h -------------------------------------------------------------------------------- /api/test/mock_rtpsender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_rtpsender.h -------------------------------------------------------------------------------- /api/test/mock_video_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_video_decoder.h -------------------------------------------------------------------------------- /api/test/mock_video_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_video_encoder.h -------------------------------------------------------------------------------- /api/test/mock_video_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/mock_video_track.h -------------------------------------------------------------------------------- /api/test/neteq_simulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/neteq_simulator.cc -------------------------------------------------------------------------------- /api/test/neteq_simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/neteq_simulator.h -------------------------------------------------------------------------------- /api/test/network_emulation/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/network_emulation/DEPS -------------------------------------------------------------------------------- /api/test/pclf/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/pclf/BUILD.gn -------------------------------------------------------------------------------- /api/test/pclf/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/pclf/DEPS -------------------------------------------------------------------------------- /api/test/pclf/peer_configurer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/pclf/peer_configurer.h -------------------------------------------------------------------------------- /api/test/simulated_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/simulated_network.h -------------------------------------------------------------------------------- /api/test/time_controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/time_controller.cc -------------------------------------------------------------------------------- /api/test/time_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/time_controller.h -------------------------------------------------------------------------------- /api/test/video/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/video/BUILD.gn -------------------------------------------------------------------------------- /api/test/video/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/video/DEPS -------------------------------------------------------------------------------- /api/test/video_codec_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/video_codec_stats.h -------------------------------------------------------------------------------- /api/test/video_codec_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/test/video_codec_tester.h -------------------------------------------------------------------------------- /api/transport/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/BUILD.gn -------------------------------------------------------------------------------- /api/transport/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/DEPS -------------------------------------------------------------------------------- /api/transport/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/OWNERS -------------------------------------------------------------------------------- /api/transport/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/enums.h -------------------------------------------------------------------------------- /api/transport/goog_cc_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/goog_cc_factory.h -------------------------------------------------------------------------------- /api/transport/network_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/network_control.h -------------------------------------------------------------------------------- /api/transport/network_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/network_types.cc -------------------------------------------------------------------------------- /api/transport/network_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/network_types.h -------------------------------------------------------------------------------- /api/transport/rtp/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/rtp/BUILD.gn -------------------------------------------------------------------------------- /api/transport/rtp/rtp_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/rtp/rtp_source.h -------------------------------------------------------------------------------- /api/transport/stun.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/stun.cc -------------------------------------------------------------------------------- /api/transport/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/stun.h -------------------------------------------------------------------------------- /api/transport/stun_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/transport/stun_unittest.cc -------------------------------------------------------------------------------- /api/turn_customizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/turn_customizer.h -------------------------------------------------------------------------------- /api/uma_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/uma_metrics.h -------------------------------------------------------------------------------- /api/units/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/BUILD.gn -------------------------------------------------------------------------------- /api/units/OWNERS: -------------------------------------------------------------------------------- 1 | srte@webrtc.org 2 | -------------------------------------------------------------------------------- /api/units/data_rate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/data_rate.cc -------------------------------------------------------------------------------- /api/units/data_rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/data_rate.h -------------------------------------------------------------------------------- /api/units/data_rate_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/data_rate_unittest.cc -------------------------------------------------------------------------------- /api/units/data_size.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/data_size.cc -------------------------------------------------------------------------------- /api/units/data_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/data_size.h -------------------------------------------------------------------------------- /api/units/data_size_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/data_size_unittest.cc -------------------------------------------------------------------------------- /api/units/frequency.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/frequency.cc -------------------------------------------------------------------------------- /api/units/frequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/frequency.h -------------------------------------------------------------------------------- /api/units/frequency_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/frequency_unittest.cc -------------------------------------------------------------------------------- /api/units/time_delta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/time_delta.cc -------------------------------------------------------------------------------- /api/units/time_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/time_delta.h -------------------------------------------------------------------------------- /api/units/timestamp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/timestamp.cc -------------------------------------------------------------------------------- /api/units/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/timestamp.h -------------------------------------------------------------------------------- /api/units/timestamp_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/units/timestamp_unittest.cc -------------------------------------------------------------------------------- /api/video/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/BUILD.gn -------------------------------------------------------------------------------- /api/video/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/DEPS -------------------------------------------------------------------------------- /api/video/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/OWNERS -------------------------------------------------------------------------------- /api/video/color_space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/color_space.cc -------------------------------------------------------------------------------- /api/video/color_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/color_space.h -------------------------------------------------------------------------------- /api/video/encoded_frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/encoded_frame.cc -------------------------------------------------------------------------------- /api/video/encoded_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/encoded_frame.h -------------------------------------------------------------------------------- /api/video/encoded_image.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/encoded_image.cc -------------------------------------------------------------------------------- /api/video/encoded_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/encoded_image.h -------------------------------------------------------------------------------- /api/video/frame_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/frame_buffer.cc -------------------------------------------------------------------------------- /api/video/frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/frame_buffer.h -------------------------------------------------------------------------------- /api/video/hdr_metadata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/hdr_metadata.cc -------------------------------------------------------------------------------- /api/video/hdr_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/hdr_metadata.h -------------------------------------------------------------------------------- /api/video/i010_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i010_buffer.cc -------------------------------------------------------------------------------- /api/video/i010_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i010_buffer.h -------------------------------------------------------------------------------- /api/video/i210_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i210_buffer.cc -------------------------------------------------------------------------------- /api/video/i210_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i210_buffer.h -------------------------------------------------------------------------------- /api/video/i410_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i410_buffer.cc -------------------------------------------------------------------------------- /api/video/i410_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i410_buffer.h -------------------------------------------------------------------------------- /api/video/i420_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i420_buffer.cc -------------------------------------------------------------------------------- /api/video/i420_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i420_buffer.h -------------------------------------------------------------------------------- /api/video/i422_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i422_buffer.cc -------------------------------------------------------------------------------- /api/video/i422_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i422_buffer.h -------------------------------------------------------------------------------- /api/video/i444_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i444_buffer.cc -------------------------------------------------------------------------------- /api/video/i444_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/i444_buffer.h -------------------------------------------------------------------------------- /api/video/nv12_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/nv12_buffer.cc -------------------------------------------------------------------------------- /api/video/nv12_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/nv12_buffer.h -------------------------------------------------------------------------------- /api/video/render_resolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/render_resolution.h -------------------------------------------------------------------------------- /api/video/resolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/resolution.h -------------------------------------------------------------------------------- /api/video/test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/test/BUILD.gn -------------------------------------------------------------------------------- /api/video/video_codec_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_codec_type.h -------------------------------------------------------------------------------- /api/video/video_content_type.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_content_type.cc -------------------------------------------------------------------------------- /api/video/video_content_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_content_type.h -------------------------------------------------------------------------------- /api/video/video_frame.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_frame.cc -------------------------------------------------------------------------------- /api/video/video_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_frame.h -------------------------------------------------------------------------------- /api/video/video_frame_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_frame_buffer.cc -------------------------------------------------------------------------------- /api/video/video_frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_frame_buffer.h -------------------------------------------------------------------------------- /api/video/video_frame_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_frame_type.h -------------------------------------------------------------------------------- /api/video/video_rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_rotation.h -------------------------------------------------------------------------------- /api/video/video_timing.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_timing.cc -------------------------------------------------------------------------------- /api/video/video_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video/video_timing.h -------------------------------------------------------------------------------- /api/video_codecs/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/BUILD.gn -------------------------------------------------------------------------------- /api/video_codecs/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/OWNERS -------------------------------------------------------------------------------- /api/video_codecs/av1_profile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/av1_profile.cc -------------------------------------------------------------------------------- /api/video_codecs/av1_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/av1_profile.h -------------------------------------------------------------------------------- /api/video_codecs/test/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/test/BUILD.gn -------------------------------------------------------------------------------- /api/video_codecs/video_codec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/video_codec.cc -------------------------------------------------------------------------------- /api/video_codecs/video_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/video_codec.h -------------------------------------------------------------------------------- /api/video_codecs/vp9_profile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/vp9_profile.cc -------------------------------------------------------------------------------- /api/video_codecs/vp9_profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/video_codecs/vp9_profile.h -------------------------------------------------------------------------------- /api/voip/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/BUILD.gn -------------------------------------------------------------------------------- /api/voip/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/DEPS -------------------------------------------------------------------------------- /api/voip/voip_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_base.h -------------------------------------------------------------------------------- /api/voip/voip_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_codec.h -------------------------------------------------------------------------------- /api/voip/voip_dtmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_dtmf.h -------------------------------------------------------------------------------- /api/voip/voip_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_engine.h -------------------------------------------------------------------------------- /api/voip/voip_engine_factory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_engine_factory.cc -------------------------------------------------------------------------------- /api/voip/voip_engine_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_engine_factory.h -------------------------------------------------------------------------------- /api/voip/voip_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_network.h -------------------------------------------------------------------------------- /api/voip/voip_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_statistics.h -------------------------------------------------------------------------------- /api/voip/voip_volume_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/voip/voip_volume_control.h -------------------------------------------------------------------------------- /api/webrtc_key_value_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/api/webrtc_key_value_config.h -------------------------------------------------------------------------------- /common_audio/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/BUILD.gn -------------------------------------------------------------------------------- /common_audio/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+system_wrappers", 3 | ] 4 | -------------------------------------------------------------------------------- /common_audio/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/OWNERS -------------------------------------------------------------------------------- /common_audio/audio_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/audio_converter.cc -------------------------------------------------------------------------------- /common_audio/audio_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/audio_converter.h -------------------------------------------------------------------------------- /common_audio/audio_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/audio_util.cc -------------------------------------------------------------------------------- /common_audio/channel_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/channel_buffer.cc -------------------------------------------------------------------------------- /common_audio/channel_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/channel_buffer.h -------------------------------------------------------------------------------- /common_audio/fir_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter.h -------------------------------------------------------------------------------- /common_audio/fir_filter_avx2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_avx2.cc -------------------------------------------------------------------------------- /common_audio/fir_filter_avx2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_avx2.h -------------------------------------------------------------------------------- /common_audio/fir_filter_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_c.cc -------------------------------------------------------------------------------- /common_audio/fir_filter_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_c.h -------------------------------------------------------------------------------- /common_audio/fir_filter_neon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_neon.cc -------------------------------------------------------------------------------- /common_audio/fir_filter_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_neon.h -------------------------------------------------------------------------------- /common_audio/fir_filter_sse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_sse.cc -------------------------------------------------------------------------------- /common_audio/fir_filter_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/fir_filter_sse.h -------------------------------------------------------------------------------- /common_audio/real_fourier.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/real_fourier.cc -------------------------------------------------------------------------------- /common_audio/real_fourier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/real_fourier.h -------------------------------------------------------------------------------- /common_audio/ring_buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/ring_buffer.c -------------------------------------------------------------------------------- /common_audio/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/ring_buffer.h -------------------------------------------------------------------------------- /common_audio/smoothing_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/smoothing_filter.h -------------------------------------------------------------------------------- /common_audio/vad/include/vad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/include/vad.h -------------------------------------------------------------------------------- /common_audio/vad/vad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad.cc -------------------------------------------------------------------------------- /common_audio/vad/vad_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad_core.c -------------------------------------------------------------------------------- /common_audio/vad/vad_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad_core.h -------------------------------------------------------------------------------- /common_audio/vad/vad_gmm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad_gmm.c -------------------------------------------------------------------------------- /common_audio/vad/vad_gmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad_gmm.h -------------------------------------------------------------------------------- /common_audio/vad/vad_sp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad_sp.c -------------------------------------------------------------------------------- /common_audio/vad/vad_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad_sp.h -------------------------------------------------------------------------------- /common_audio/vad/vad_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/vad_unittest.h -------------------------------------------------------------------------------- /common_audio/vad/webrtc_vad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/vad/webrtc_vad.c -------------------------------------------------------------------------------- /common_audio/wav_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/wav_file.cc -------------------------------------------------------------------------------- /common_audio/wav_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/wav_file.h -------------------------------------------------------------------------------- /common_audio/wav_header.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/wav_header.cc -------------------------------------------------------------------------------- /common_audio/wav_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/wav_header.h -------------------------------------------------------------------------------- /common_audio/window_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/common_audio/window_generator.h -------------------------------------------------------------------------------- /modules/audio_processing/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/modules/audio_processing/DEPS -------------------------------------------------------------------------------- /modules/audio_processing/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/modules/audio_processing/OWNERS -------------------------------------------------------------------------------- /modules/audio_processing/utility/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | "+third_party/pffft", 3 | ] 4 | -------------------------------------------------------------------------------- /rtc_base/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/DEPS -------------------------------------------------------------------------------- /rtc_base/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/OWNERS -------------------------------------------------------------------------------- /rtc_base/arraysize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/arraysize.h -------------------------------------------------------------------------------- /rtc_base/async_packet_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_packet_socket.cc -------------------------------------------------------------------------------- /rtc_base/async_packet_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_packet_socket.h -------------------------------------------------------------------------------- /rtc_base/async_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_resolver.cc -------------------------------------------------------------------------------- /rtc_base/async_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_resolver.h -------------------------------------------------------------------------------- /rtc_base/async_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_socket.cc -------------------------------------------------------------------------------- /rtc_base/async_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_socket.h -------------------------------------------------------------------------------- /rtc_base/async_tcp_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_tcp_socket.cc -------------------------------------------------------------------------------- /rtc_base/async_tcp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_tcp_socket.h -------------------------------------------------------------------------------- /rtc_base/async_udp_socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_udp_socket.cc -------------------------------------------------------------------------------- /rtc_base/async_udp_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/async_udp_socket.h -------------------------------------------------------------------------------- /rtc_base/base64_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/base64_unittest.cc -------------------------------------------------------------------------------- /rtc_base/bit_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/bit_buffer.cc -------------------------------------------------------------------------------- /rtc_base/bit_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/bit_buffer.h -------------------------------------------------------------------------------- /rtc_base/bit_buffer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/bit_buffer_unittest.cc -------------------------------------------------------------------------------- /rtc_base/bitstream_reader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/bitstream_reader.cc -------------------------------------------------------------------------------- /rtc_base/bitstream_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/bitstream_reader.h -------------------------------------------------------------------------------- /rtc_base/boringssl_identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/boringssl_identity.cc -------------------------------------------------------------------------------- /rtc_base/boringssl_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/boringssl_identity.h -------------------------------------------------------------------------------- /rtc_base/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/buffer.h -------------------------------------------------------------------------------- /rtc_base/buffer_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/buffer_queue.cc -------------------------------------------------------------------------------- /rtc_base/buffer_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/buffer_queue.h -------------------------------------------------------------------------------- /rtc_base/buffer_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/buffer_unittest.cc -------------------------------------------------------------------------------- /rtc_base/byte_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/byte_buffer.cc -------------------------------------------------------------------------------- /rtc_base/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/byte_buffer.h -------------------------------------------------------------------------------- /rtc_base/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/byte_order.h -------------------------------------------------------------------------------- /rtc_base/byte_order_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/byte_order_unittest.cc -------------------------------------------------------------------------------- /rtc_base/callback_list.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/callback_list.cc -------------------------------------------------------------------------------- /rtc_base/callback_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/callback_list.h -------------------------------------------------------------------------------- /rtc_base/checks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/checks.cc -------------------------------------------------------------------------------- /rtc_base/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/checks.h -------------------------------------------------------------------------------- /rtc_base/checks_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/checks_unittest.cc -------------------------------------------------------------------------------- /rtc_base/compile_assert_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/compile_assert_c.h -------------------------------------------------------------------------------- /rtc_base/containers/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/containers/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/containers/flat_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/containers/flat_map.h -------------------------------------------------------------------------------- /rtc_base/containers/flat_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/containers/flat_set.h -------------------------------------------------------------------------------- /rtc_base/containers/flat_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/containers/flat_tree.h -------------------------------------------------------------------------------- /rtc_base/containers/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/containers/identity.h -------------------------------------------------------------------------------- /rtc_base/containers/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/containers/invoke.h -------------------------------------------------------------------------------- /rtc_base/copy_on_write_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/copy_on_write_buffer.h -------------------------------------------------------------------------------- /rtc_base/cpu_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/cpu_time.cc -------------------------------------------------------------------------------- /rtc_base/cpu_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/cpu_time.h -------------------------------------------------------------------------------- /rtc_base/cpu_time_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/cpu_time_unittest.cc -------------------------------------------------------------------------------- /rtc_base/crc32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/crc32.cc -------------------------------------------------------------------------------- /rtc_base/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/crc32.h -------------------------------------------------------------------------------- /rtc_base/crc32_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/crc32_unittest.cc -------------------------------------------------------------------------------- /rtc_base/crypt_string.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/crypt_string.cc -------------------------------------------------------------------------------- /rtc_base/crypt_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/crypt_string.h -------------------------------------------------------------------------------- /rtc_base/data_rate_limiter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/data_rate_limiter.cc -------------------------------------------------------------------------------- /rtc_base/data_rate_limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/data_rate_limiter.h -------------------------------------------------------------------------------- /rtc_base/dscp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/dscp.h -------------------------------------------------------------------------------- /rtc_base/event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/event.cc -------------------------------------------------------------------------------- /rtc_base/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/event.h -------------------------------------------------------------------------------- /rtc_base/event_tracer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/event_tracer.cc -------------------------------------------------------------------------------- /rtc_base/event_tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/event_tracer.h -------------------------------------------------------------------------------- /rtc_base/event_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/event_unittest.cc -------------------------------------------------------------------------------- /rtc_base/experiments/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/experiments/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/experiments/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/experiments/DEPS -------------------------------------------------------------------------------- /rtc_base/experiments/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/experiments/OWNERS -------------------------------------------------------------------------------- /rtc_base/fake_clock.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/fake_clock.cc -------------------------------------------------------------------------------- /rtc_base/fake_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/fake_clock.h -------------------------------------------------------------------------------- /rtc_base/fake_clock_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/fake_clock_unittest.cc -------------------------------------------------------------------------------- /rtc_base/fake_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/fake_network.h -------------------------------------------------------------------------------- /rtc_base/fake_ssl_identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/fake_ssl_identity.cc -------------------------------------------------------------------------------- /rtc_base/fake_ssl_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/fake_ssl_identity.h -------------------------------------------------------------------------------- /rtc_base/gtest_prod_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/gtest_prod_util.h -------------------------------------------------------------------------------- /rtc_base/gunit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/gunit.cc -------------------------------------------------------------------------------- /rtc_base/gunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/gunit.h -------------------------------------------------------------------------------- /rtc_base/helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/helpers.cc -------------------------------------------------------------------------------- /rtc_base/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/helpers.h -------------------------------------------------------------------------------- /rtc_base/helpers_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/helpers_unittest.cc -------------------------------------------------------------------------------- /rtc_base/http_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/http_common.cc -------------------------------------------------------------------------------- /rtc_base/http_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/http_common.h -------------------------------------------------------------------------------- /rtc_base/ifaddrs_android.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ifaddrs_android.cc -------------------------------------------------------------------------------- /rtc_base/ifaddrs_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ifaddrs_android.h -------------------------------------------------------------------------------- /rtc_base/ifaddrs_converter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ifaddrs_converter.cc -------------------------------------------------------------------------------- /rtc_base/ifaddrs_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ifaddrs_converter.h -------------------------------------------------------------------------------- /rtc_base/ignore_wundef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ignore_wundef.h -------------------------------------------------------------------------------- /rtc_base/ip_address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ip_address.cc -------------------------------------------------------------------------------- /rtc_base/ip_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ip_address.h -------------------------------------------------------------------------------- /rtc_base/log_sinks.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/log_sinks.cc -------------------------------------------------------------------------------- /rtc_base/log_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/log_sinks.h -------------------------------------------------------------------------------- /rtc_base/logging.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/logging.cc -------------------------------------------------------------------------------- /rtc_base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/logging.h -------------------------------------------------------------------------------- /rtc_base/logging_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/logging_unittest.cc -------------------------------------------------------------------------------- /rtc_base/memory/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/memory/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/memory/fifo_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/memory/fifo_buffer.h -------------------------------------------------------------------------------- /rtc_base/memory_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/memory_stream.cc -------------------------------------------------------------------------------- /rtc_base/memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/memory_stream.h -------------------------------------------------------------------------------- /rtc_base/memory_usage.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/memory_usage.cc -------------------------------------------------------------------------------- /rtc_base/memory_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/memory_usage.h -------------------------------------------------------------------------------- /rtc_base/message_digest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/message_digest.cc -------------------------------------------------------------------------------- /rtc_base/message_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/message_digest.h -------------------------------------------------------------------------------- /rtc_base/nat_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/nat_server.cc -------------------------------------------------------------------------------- /rtc_base/nat_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/nat_server.h -------------------------------------------------------------------------------- /rtc_base/nat_socket_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/nat_socket_factory.h -------------------------------------------------------------------------------- /rtc_base/nat_types.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/nat_types.cc -------------------------------------------------------------------------------- /rtc_base/nat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/nat_types.h -------------------------------------------------------------------------------- /rtc_base/nat_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/nat_unittest.cc -------------------------------------------------------------------------------- /rtc_base/net_helper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/net_helper.cc -------------------------------------------------------------------------------- /rtc_base/net_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/net_helper.h -------------------------------------------------------------------------------- /rtc_base/net_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/net_helpers.cc -------------------------------------------------------------------------------- /rtc_base/net_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/net_helpers.h -------------------------------------------------------------------------------- /rtc_base/network.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network.cc -------------------------------------------------------------------------------- /rtc_base/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network.h -------------------------------------------------------------------------------- /rtc_base/network/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/network_constants.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network_constants.cc -------------------------------------------------------------------------------- /rtc_base/network_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network_constants.h -------------------------------------------------------------------------------- /rtc_base/network_monitor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network_monitor.cc -------------------------------------------------------------------------------- /rtc_base/network_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network_monitor.h -------------------------------------------------------------------------------- /rtc_base/network_route.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network_route.cc -------------------------------------------------------------------------------- /rtc_base/network_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network_route.h -------------------------------------------------------------------------------- /rtc_base/network_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/network_unittest.cc -------------------------------------------------------------------------------- /rtc_base/null_socket_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/null_socket_server.h -------------------------------------------------------------------------------- /rtc_base/numerics/mod_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/numerics/mod_ops.h -------------------------------------------------------------------------------- /rtc_base/one_time_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/one_time_event.h -------------------------------------------------------------------------------- /rtc_base/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl.h -------------------------------------------------------------------------------- /rtc_base/openssl_adapter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_adapter.cc -------------------------------------------------------------------------------- /rtc_base/openssl_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_adapter.h -------------------------------------------------------------------------------- /rtc_base/openssl_digest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_digest.cc -------------------------------------------------------------------------------- /rtc_base/openssl_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_digest.h -------------------------------------------------------------------------------- /rtc_base/openssl_identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_identity.cc -------------------------------------------------------------------------------- /rtc_base/openssl_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_identity.h -------------------------------------------------------------------------------- /rtc_base/openssl_key_pair.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_key_pair.cc -------------------------------------------------------------------------------- /rtc_base/openssl_key_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_key_pair.h -------------------------------------------------------------------------------- /rtc_base/openssl_utility.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_utility.cc -------------------------------------------------------------------------------- /rtc_base/openssl_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/openssl_utility.h -------------------------------------------------------------------------------- /rtc_base/operations_chain.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/operations_chain.cc -------------------------------------------------------------------------------- /rtc_base/operations_chain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/operations_chain.h -------------------------------------------------------------------------------- /rtc_base/platform_thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/platform_thread.cc -------------------------------------------------------------------------------- /rtc_base/platform_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/platform_thread.h -------------------------------------------------------------------------------- /rtc_base/protobuf_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/protobuf_utils.h -------------------------------------------------------------------------------- /rtc_base/proxy_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/proxy_info.cc -------------------------------------------------------------------------------- /rtc_base/proxy_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/proxy_info.h -------------------------------------------------------------------------------- /rtc_base/proxy_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/proxy_server.cc -------------------------------------------------------------------------------- /rtc_base/proxy_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/proxy_server.h -------------------------------------------------------------------------------- /rtc_base/proxy_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/proxy_unittest.cc -------------------------------------------------------------------------------- /rtc_base/race_checker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/race_checker.cc -------------------------------------------------------------------------------- /rtc_base/race_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/race_checker.h -------------------------------------------------------------------------------- /rtc_base/random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/random.cc -------------------------------------------------------------------------------- /rtc_base/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/random.h -------------------------------------------------------------------------------- /rtc_base/random_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/random_unittest.cc -------------------------------------------------------------------------------- /rtc_base/rate_limiter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rate_limiter.cc -------------------------------------------------------------------------------- /rtc_base/rate_limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rate_limiter.h -------------------------------------------------------------------------------- /rtc_base/rate_statistics.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rate_statistics.cc -------------------------------------------------------------------------------- /rtc_base/rate_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rate_statistics.h -------------------------------------------------------------------------------- /rtc_base/rate_tracker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rate_tracker.cc -------------------------------------------------------------------------------- /rtc_base/rate_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rate_tracker.h -------------------------------------------------------------------------------- /rtc_base/ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ref_count.h -------------------------------------------------------------------------------- /rtc_base/ref_counted_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ref_counted_object.h -------------------------------------------------------------------------------- /rtc_base/ref_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ref_counter.h -------------------------------------------------------------------------------- /rtc_base/rtc_certificate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rtc_certificate.cc -------------------------------------------------------------------------------- /rtc_base/rtc_certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/rtc_certificate.h -------------------------------------------------------------------------------- /rtc_base/sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/sanitizer.h -------------------------------------------------------------------------------- /rtc_base/sigslot_tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/sigslot_tester.h -------------------------------------------------------------------------------- /rtc_base/sigslot_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/sigslot_unittest.cc -------------------------------------------------------------------------------- /rtc_base/sigslottester.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/sigslottester.h.pump -------------------------------------------------------------------------------- /rtc_base/socket.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket.cc -------------------------------------------------------------------------------- /rtc_base/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket.h -------------------------------------------------------------------------------- /rtc_base/socket_adapters.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_adapters.cc -------------------------------------------------------------------------------- /rtc_base/socket_adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_adapters.h -------------------------------------------------------------------------------- /rtc_base/socket_address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_address.cc -------------------------------------------------------------------------------- /rtc_base/socket_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_address.h -------------------------------------------------------------------------------- /rtc_base/socket_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_factory.h -------------------------------------------------------------------------------- /rtc_base/socket_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_server.h -------------------------------------------------------------------------------- /rtc_base/socket_stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_stream.cc -------------------------------------------------------------------------------- /rtc_base/socket_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_stream.h -------------------------------------------------------------------------------- /rtc_base/socket_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_unittest.cc -------------------------------------------------------------------------------- /rtc_base/socket_unittest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/socket_unittest.h -------------------------------------------------------------------------------- /rtc_base/ssl_adapter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_adapter.cc -------------------------------------------------------------------------------- /rtc_base/ssl_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_adapter.h -------------------------------------------------------------------------------- /rtc_base/ssl_certificate.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_certificate.cc -------------------------------------------------------------------------------- /rtc_base/ssl_certificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_certificate.h -------------------------------------------------------------------------------- /rtc_base/ssl_fingerprint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_fingerprint.cc -------------------------------------------------------------------------------- /rtc_base/ssl_fingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_fingerprint.h -------------------------------------------------------------------------------- /rtc_base/ssl_identity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_identity.cc -------------------------------------------------------------------------------- /rtc_base/ssl_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_identity.h -------------------------------------------------------------------------------- /rtc_base/ssl_roots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_roots.h -------------------------------------------------------------------------------- /rtc_base/ssl_stream_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/ssl_stream_adapter.h -------------------------------------------------------------------------------- /rtc_base/stream.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/stream.cc -------------------------------------------------------------------------------- /rtc_base/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/stream.h -------------------------------------------------------------------------------- /rtc_base/string_encode.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/string_encode.cc -------------------------------------------------------------------------------- /rtc_base/string_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/string_encode.h -------------------------------------------------------------------------------- /rtc_base/string_to_number.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/string_to_number.cc -------------------------------------------------------------------------------- /rtc_base/string_to_number.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/string_to_number.h -------------------------------------------------------------------------------- /rtc_base/string_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/string_utils.cc -------------------------------------------------------------------------------- /rtc_base/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/string_utils.h -------------------------------------------------------------------------------- /rtc_base/strong_alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/strong_alias.h -------------------------------------------------------------------------------- /rtc_base/swap_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/swap_queue.h -------------------------------------------------------------------------------- /rtc_base/synchronization/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/synchronization/DEPS -------------------------------------------------------------------------------- /rtc_base/system/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/system/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/DEPS -------------------------------------------------------------------------------- /rtc_base/system/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/arch.h -------------------------------------------------------------------------------- /rtc_base/system/asm_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/asm_defines.h -------------------------------------------------------------------------------- /rtc_base/system/assume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/assume.h -------------------------------------------------------------------------------- /rtc_base/system/gcd_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/gcd_helpers.h -------------------------------------------------------------------------------- /rtc_base/system/gcd_helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/gcd_helpers.m -------------------------------------------------------------------------------- /rtc_base/system/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/inline.h -------------------------------------------------------------------------------- /rtc_base/system/rtc_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/rtc_export.h -------------------------------------------------------------------------------- /rtc_base/system/unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system/unused.h -------------------------------------------------------------------------------- /rtc_base/system_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system_time.cc -------------------------------------------------------------------------------- /rtc_base/system_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/system_time.h -------------------------------------------------------------------------------- /rtc_base/task_queue.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue.cc -------------------------------------------------------------------------------- /rtc_base/task_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue.h -------------------------------------------------------------------------------- /rtc_base/task_queue_gcd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue_gcd.cc -------------------------------------------------------------------------------- /rtc_base/task_queue_gcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue_gcd.h -------------------------------------------------------------------------------- /rtc_base/task_queue_stdlib.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue_stdlib.cc -------------------------------------------------------------------------------- /rtc_base/task_queue_stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue_stdlib.h -------------------------------------------------------------------------------- /rtc_base/task_queue_win.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue_win.cc -------------------------------------------------------------------------------- /rtc_base/task_queue_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_queue_win.h -------------------------------------------------------------------------------- /rtc_base/task_utils/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/task_utils/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/test_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/test_base64.h -------------------------------------------------------------------------------- /rtc_base/test_client.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/test_client.cc -------------------------------------------------------------------------------- /rtc_base/test_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/test_client.h -------------------------------------------------------------------------------- /rtc_base/test_echo_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/test_echo_server.cc -------------------------------------------------------------------------------- /rtc_base/test_echo_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/test_echo_server.h -------------------------------------------------------------------------------- /rtc_base/test_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/test_utils.cc -------------------------------------------------------------------------------- /rtc_base/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/test_utils.h -------------------------------------------------------------------------------- /rtc_base/thread.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/thread.cc -------------------------------------------------------------------------------- /rtc_base/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/thread.h -------------------------------------------------------------------------------- /rtc_base/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/thread_annotations.h -------------------------------------------------------------------------------- /rtc_base/thread_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/thread_unittest.cc -------------------------------------------------------------------------------- /rtc_base/time_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/time_utils.cc -------------------------------------------------------------------------------- /rtc_base/time_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/time_utils.h -------------------------------------------------------------------------------- /rtc_base/timestamp_aligner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/timestamp_aligner.cc -------------------------------------------------------------------------------- /rtc_base/timestamp_aligner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/timestamp_aligner.h -------------------------------------------------------------------------------- /rtc_base/trace_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/trace_event.h -------------------------------------------------------------------------------- /rtc_base/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/type_traits.h -------------------------------------------------------------------------------- /rtc_base/units/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/units/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/units/OWNERS: -------------------------------------------------------------------------------- 1 | srte@webrtc.org 2 | -------------------------------------------------------------------------------- /rtc_base/units/unit_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/units/unit_base.h -------------------------------------------------------------------------------- /rtc_base/untyped_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/untyped_function.h -------------------------------------------------------------------------------- /rtc_base/weak_ptr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/weak_ptr.cc -------------------------------------------------------------------------------- /rtc_base/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/weak_ptr.h -------------------------------------------------------------------------------- /rtc_base/weak_ptr_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/weak_ptr_unittest.cc -------------------------------------------------------------------------------- /rtc_base/win/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win/BUILD.gn -------------------------------------------------------------------------------- /rtc_base/win/hstring.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win/hstring.cc -------------------------------------------------------------------------------- /rtc_base/win/hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win/hstring.h -------------------------------------------------------------------------------- /rtc_base/win32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win32.cc -------------------------------------------------------------------------------- /rtc_base/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win32.h -------------------------------------------------------------------------------- /rtc_base/win32_socket_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win32_socket_init.h -------------------------------------------------------------------------------- /rtc_base/win32_unittest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win32_unittest.cc -------------------------------------------------------------------------------- /rtc_base/win32_window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win32_window.cc -------------------------------------------------------------------------------- /rtc_base/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/win32_window.h -------------------------------------------------------------------------------- /rtc_base/zero_memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/zero_memory.cc -------------------------------------------------------------------------------- /rtc_base/zero_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/rtc_base/zero_memory.h -------------------------------------------------------------------------------- /system_wrappers/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/system_wrappers/BUILD.gn -------------------------------------------------------------------------------- /system_wrappers/DEPS: -------------------------------------------------------------------------------- 1 | include_rules = [ 2 | ] 3 | 4 | -------------------------------------------------------------------------------- /system_wrappers/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/system_wrappers/OWNERS -------------------------------------------------------------------------------- /system_wrappers/source/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/system_wrappers/source/DEPS -------------------------------------------------------------------------------- /third_party/pffft/BUILD.gn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/BUILD.gn -------------------------------------------------------------------------------- /third_party/pffft/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/DEPS -------------------------------------------------------------------------------- /third_party/pffft/DIR_METADATA: -------------------------------------------------------------------------------- 1 | monorail: { 2 | component: "Blink>WebRTC>Audio" 3 | } 4 | -------------------------------------------------------------------------------- /third_party/pffft/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/LICENSE -------------------------------------------------------------------------------- /third_party/pffft/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/OWNERS -------------------------------------------------------------------------------- /third_party/pffft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/README.md -------------------------------------------------------------------------------- /third_party/pffft/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/README.txt -------------------------------------------------------------------------------- /third_party/pffft/src/pffft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/src/pffft.c -------------------------------------------------------------------------------- /third_party/pffft/src/pffft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeremiahandsome/AEC3Demo/HEAD/third_party/pffft/src/pffft.h --------------------------------------------------------------------------------