├── .github └── workflows │ └── build.yml ├── .gitignore ├── CMakeLists.txt ├── README.md ├── fridaexp ├── frida.js └── frida.py ├── include ├── absl │ ├── algorithm │ │ ├── algorithm.h │ │ └── container.h │ ├── base │ │ ├── attributes.h │ │ ├── call_once.h │ │ ├── casts.h │ │ ├── config.h │ │ ├── const_init.h │ │ ├── dynamic_annotations.h │ │ ├── internal │ │ │ ├── atomic_hook.h │ │ │ ├── atomic_hook_test_helper.h │ │ │ ├── cycleclock.h │ │ │ ├── direct_mmap.h │ │ │ ├── endian.h │ │ │ ├── errno_saver.h │ │ │ ├── exception_safety_testing.h │ │ │ ├── exception_testing.h │ │ │ ├── fast_type_id.h │ │ │ ├── hide_ptr.h │ │ │ ├── identity.h │ │ │ ├── inline_variable.h │ │ │ ├── inline_variable_testing.h │ │ │ ├── invoke.h │ │ │ ├── low_level_alloc.h │ │ │ ├── low_level_scheduling.h │ │ │ ├── per_thread_tls.h │ │ │ ├── prefetch.h │ │ │ ├── pretty_function.h │ │ │ ├── raw_logging.h │ │ │ ├── scheduling_mode.h │ │ │ ├── scoped_set_env.h │ │ │ ├── spinlock.h │ │ │ ├── spinlock_wait.h │ │ │ ├── strerror.h │ │ │ ├── sysinfo.h │ │ │ ├── thread_identity.h │ │ │ ├── throw_delegate.h │ │ │ ├── tsan_mutex_interface.h │ │ │ ├── unaligned_access.h │ │ │ └── unscaledcycleclock.h │ │ ├── log_severity.h │ │ ├── macros.h │ │ ├── optimization.h │ │ ├── options.h │ │ ├── policy_checks.h │ │ ├── port.h │ │ └── thread_annotations.h │ ├── cleanup │ │ ├── cleanup.h │ │ └── internal │ │ │ └── cleanup.h │ ├── container │ │ ├── btree_map.h │ │ ├── btree_set.h │ │ ├── btree_test.h │ │ ├── fixed_array.h │ │ ├── flat_hash_map.h │ │ ├── flat_hash_set.h │ │ ├── inlined_vector.h │ │ ├── internal │ │ │ ├── btree.h │ │ │ ├── btree_container.h │ │ │ ├── common.h │ │ │ ├── compressed_tuple.h │ │ │ ├── container_memory.h │ │ │ ├── counting_allocator.h │ │ │ ├── hash_function_defaults.h │ │ │ ├── hash_generator_testing.h │ │ │ ├── hash_policy_testing.h │ │ │ ├── hash_policy_traits.h │ │ │ ├── hashtable_debug.h │ │ │ ├── hashtable_debug_hooks.h │ │ │ ├── hashtablez_sampler.h │ │ │ ├── inlined_vector.h │ │ │ ├── layout.h │ │ │ ├── node_slot_policy.h │ │ │ ├── raw_hash_map.h │ │ │ ├── raw_hash_set.h │ │ │ ├── test_instance_tracker.h │ │ │ ├── tracked.h │ │ │ ├── unordered_map_constructor_test.h │ │ │ ├── unordered_map_lookup_test.h │ │ │ ├── unordered_map_members_test.h │ │ │ ├── unordered_map_modifiers_test.h │ │ │ ├── unordered_set_constructor_test.h │ │ │ ├── unordered_set_lookup_test.h │ │ │ ├── unordered_set_members_test.h │ │ │ └── unordered_set_modifiers_test.h │ │ ├── node_hash_map.h │ │ └── node_hash_set.h │ ├── debugging │ │ ├── failure_signal_handler.h │ │ ├── internal │ │ │ ├── address_is_readable.h │ │ │ ├── demangle.h │ │ │ ├── elf_mem_image.h │ │ │ ├── examine_stack.h │ │ │ ├── stack_consumption.h │ │ │ ├── stacktrace_config.h │ │ │ ├── symbolize.h │ │ │ └── vdso_support.h │ │ ├── leak_check.h │ │ ├── stacktrace.h │ │ └── symbolize.h │ ├── flags │ │ ├── commandlineflag.h │ │ ├── config.h │ │ ├── declare.h │ │ ├── flag.h │ │ ├── internal │ │ │ ├── commandlineflag.h │ │ │ ├── flag.h │ │ │ ├── parse.h │ │ │ ├── path_util.h │ │ │ ├── private_handle_accessor.h │ │ │ ├── program_name.h │ │ │ ├── registry.h │ │ │ ├── sequence_lock.h │ │ │ └── usage.h │ │ ├── marshalling.h │ │ ├── parse.h │ │ ├── reflection.h │ │ ├── usage.h │ │ └── usage_config.h │ ├── functional │ │ ├── any_invocable.h │ │ ├── bind_front.h │ │ ├── function_ref.h │ │ └── internal │ │ │ ├── any_invocable.h │ │ │ ├── front_binder.h │ │ │ └── function_ref.h │ ├── hash │ │ ├── hash.h │ │ ├── hash_testing.h │ │ └── internal │ │ │ ├── city.h │ │ │ ├── hash.h │ │ │ ├── low_level_hash.h │ │ │ └── spy_hash_state.h │ ├── memory │ │ └── memory.h │ ├── meta │ │ └── type_traits.h │ ├── numeric │ │ ├── bits.h │ │ ├── int128.h │ │ └── internal │ │ │ ├── bits.h │ │ │ └── representation.h │ ├── profiling │ │ └── internal │ │ │ ├── exponential_biased.h │ │ │ ├── periodic_sampler.h │ │ │ └── sample_recorder.h │ ├── random │ │ ├── bernoulli_distribution.h │ │ ├── beta_distribution.h │ │ ├── bit_gen_ref.h │ │ ├── discrete_distribution.h │ │ ├── distributions.h │ │ ├── exponential_distribution.h │ │ ├── gaussian_distribution.h │ │ ├── internal │ │ │ ├── chi_square.h │ │ │ ├── distribution_caller.h │ │ │ ├── distribution_test_util.h │ │ │ ├── explicit_seed_seq.h │ │ │ ├── fast_uniform_bits.h │ │ │ ├── fastmath.h │ │ │ ├── generate_real.h │ │ │ ├── iostream_state_saver.h │ │ │ ├── mock_helpers.h │ │ │ ├── mock_overload_set.h │ │ │ ├── nanobenchmark.h │ │ │ ├── nonsecure_base.h │ │ │ ├── pcg_engine.h │ │ │ ├── platform.h │ │ │ ├── pool_urbg.h │ │ │ ├── randen.h │ │ │ ├── randen_detect.h │ │ │ ├── randen_engine.h │ │ │ ├── randen_hwaes.h │ │ │ ├── randen_slow.h │ │ │ ├── randen_traits.h │ │ │ ├── salted_seed_seq.h │ │ │ ├── seed_material.h │ │ │ ├── sequence_urbg.h │ │ │ ├── traits.h │ │ │ ├── uniform_helper.h │ │ │ └── wide_multiply.h │ │ ├── log_uniform_int_distribution.h │ │ ├── mock_distributions.h │ │ ├── mocking_bit_gen.h │ │ ├── poisson_distribution.h │ │ ├── random.h │ │ ├── seed_gen_exception.h │ │ ├── seed_sequences.h │ │ ├── uniform_int_distribution.h │ │ ├── uniform_real_distribution.h │ │ └── zipf_distribution.h │ ├── status │ │ ├── internal │ │ │ ├── status_internal.h │ │ │ └── statusor_internal.h │ │ ├── status.h │ │ ├── status_payload_printer.h │ │ └── statusor.h │ ├── strings │ │ ├── ascii.h │ │ ├── charconv.h │ │ ├── cord.h │ │ ├── cord_analysis.h │ │ ├── cord_buffer.h │ │ ├── cord_test_helpers.h │ │ ├── cordz_test_helpers.h │ │ ├── escaping.h │ │ ├── internal │ │ │ ├── char_map.h │ │ │ ├── charconv_bigint.h │ │ │ ├── charconv_parse.h │ │ │ ├── cord_data_edge.h │ │ │ ├── cord_internal.h │ │ │ ├── cord_rep_btree.h │ │ │ ├── cord_rep_btree_navigator.h │ │ │ ├── cord_rep_btree_reader.h │ │ │ ├── cord_rep_consume.h │ │ │ ├── cord_rep_crc.h │ │ │ ├── cord_rep_flat.h │ │ │ ├── cord_rep_ring.h │ │ │ ├── cord_rep_ring_reader.h │ │ │ ├── cord_rep_test_util.h │ │ │ ├── cordz_functions.h │ │ │ ├── cordz_handle.h │ │ │ ├── cordz_info.h │ │ │ ├── cordz_sample_token.h │ │ │ ├── cordz_statistics.h │ │ │ ├── cordz_update_scope.h │ │ │ ├── cordz_update_tracker.h │ │ │ ├── escaping.h │ │ │ ├── escaping_test_common.h │ │ │ ├── memutil.h │ │ │ ├── numbers_test_common.h │ │ │ ├── ostringstream.h │ │ │ ├── pow10_helper.h │ │ │ ├── resize_uninitialized.h │ │ │ ├── stl_type_traits.h │ │ │ ├── str_format │ │ │ │ ├── arg.h │ │ │ │ ├── bind.h │ │ │ │ ├── checker.h │ │ │ │ ├── extension.h │ │ │ │ ├── float_conversion.h │ │ │ │ ├── output.h │ │ │ │ └── parser.h │ │ │ ├── str_join_internal.h │ │ │ ├── str_split_internal.h │ │ │ ├── string_constant.h │ │ │ └── utf8.h │ │ ├── match.h │ │ ├── numbers.h │ │ ├── str_cat.h │ │ ├── str_format.h │ │ ├── str_join.h │ │ ├── str_replace.h │ │ ├── str_split.h │ │ ├── string_view.h │ │ ├── strip.h │ │ └── substitute.h │ ├── synchronization │ │ ├── barrier.h │ │ ├── blocking_counter.h │ │ ├── internal │ │ │ ├── create_thread_identity.h │ │ │ ├── futex.h │ │ │ ├── graphcycles.h │ │ │ ├── kernel_timeout.h │ │ │ ├── per_thread_sem.h │ │ │ ├── thread_pool.h │ │ │ └── waiter.h │ │ ├── mutex.h │ │ └── notification.h │ ├── time │ │ ├── civil_time.h │ │ ├── clock.h │ │ ├── internal │ │ │ ├── cctz │ │ │ │ ├── include │ │ │ │ │ └── cctz │ │ │ │ │ │ ├── civil_time.h │ │ │ │ │ │ ├── civil_time_detail.h │ │ │ │ │ │ ├── time_zone.h │ │ │ │ │ │ └── zone_info_source.h │ │ │ │ └── src │ │ │ │ │ ├── time_zone_fixed.h │ │ │ │ │ ├── time_zone_if.h │ │ │ │ │ ├── time_zone_impl.h │ │ │ │ │ ├── time_zone_info.h │ │ │ │ │ ├── time_zone_libc.h │ │ │ │ │ ├── time_zone_posix.h │ │ │ │ │ └── tzfile.h │ │ │ └── test_util.h │ │ └── time.h │ ├── types │ │ ├── any.h │ │ ├── bad_any_cast.h │ │ ├── bad_optional_access.h │ │ ├── bad_variant_access.h │ │ ├── compare.h │ │ ├── internal │ │ │ ├── conformance_aliases.h │ │ │ ├── conformance_archetype.h │ │ │ ├── conformance_profile.h │ │ │ ├── conformance_testing.h │ │ │ ├── conformance_testing_helpers.h │ │ │ ├── optional.h │ │ │ ├── parentheses.h │ │ │ ├── span.h │ │ │ ├── transform_args.h │ │ │ └── variant.h │ │ ├── optional.h │ │ ├── span.h │ │ └── variant.h │ └── utility │ │ └── utility.h ├── api │ ├── adaptation │ │ └── resource.h │ ├── array_view.h │ ├── async_dns_resolver.h │ ├── async_resolver_factory.h │ ├── audio │ │ ├── audio_frame.h │ │ ├── audio_frame_processor.h │ │ ├── audio_mixer.h │ │ ├── channel_layout.h │ │ ├── echo_canceller3_config.h │ │ ├── echo_canceller3_config_json.h │ │ ├── echo_canceller3_factory.h │ │ ├── echo_control.h │ │ └── echo_detector_creator.h │ ├── audio_codecs │ │ ├── L16 │ │ │ ├── audio_decoder_L16.h │ │ │ └── audio_encoder_L16.h │ │ ├── audio_codec_pair_id.h │ │ ├── audio_decoder.h │ │ ├── audio_decoder_factory.h │ │ ├── audio_decoder_factory_template.h │ │ ├── audio_encoder.h │ │ ├── audio_encoder_factory.h │ │ ├── audio_encoder_factory_template.h │ │ ├── audio_format.h │ │ ├── builtin_audio_decoder_factory.h │ │ ├── builtin_audio_encoder_factory.h │ │ ├── g711 │ │ │ ├── audio_decoder_g711.h │ │ │ └── audio_encoder_g711.h │ │ ├── g722 │ │ │ ├── audio_decoder_g722.h │ │ │ ├── audio_encoder_g722.h │ │ │ └── audio_encoder_g722_config.h │ │ ├── ilbc │ │ │ ├── audio_decoder_ilbc.h │ │ │ ├── audio_encoder_ilbc.h │ │ │ └── audio_encoder_ilbc_config.h │ │ ├── isac │ │ │ ├── audio_decoder_isac.h │ │ │ ├── audio_decoder_isac_fix.h │ │ │ ├── audio_decoder_isac_float.h │ │ │ ├── audio_encoder_isac.h │ │ │ ├── audio_encoder_isac_fix.h │ │ │ └── audio_encoder_isac_float.h │ │ ├── opus │ │ │ ├── audio_decoder_multi_channel_opus.h │ │ │ ├── audio_decoder_multi_channel_opus_config.h │ │ │ ├── audio_decoder_opus.h │ │ │ ├── audio_encoder_multi_channel_opus.h │ │ │ ├── audio_encoder_multi_channel_opus_config.h │ │ │ ├── audio_encoder_opus.h │ │ │ └── audio_encoder_opus_config.h │ │ ├── opus_audio_decoder_factory.h │ │ └── opus_audio_encoder_factory.h │ ├── audio_options.h │ ├── call │ │ ├── audio_sink.h │ │ ├── bitrate_allocation.h │ │ ├── call_factory_interface.h │ │ └── transport.h │ ├── candidate.h │ ├── create_peerconnection_factory.h │ ├── crypto │ │ ├── crypto_options.h │ │ ├── frame_decryptor_interface.h │ │ └── frame_encryptor_interface.h │ ├── crypto_params.h │ ├── data_channel_interface.h │ ├── dtls_transport_interface.h │ ├── dtmf_sender_interface.h │ ├── fec_controller.h │ ├── fec_controller_override.h │ ├── field_trials.h │ ├── field_trials_view.h │ ├── frame_transformer_interface.h │ ├── function_view.h │ ├── ice_transport_factory.h │ ├── ice_transport_interface.h │ ├── jsep.h │ ├── jsep_ice_candidate.h │ ├── jsep_session_description.h │ ├── make_ref_counted.h │ ├── media_stream_interface.h │ ├── media_stream_track.h │ ├── media_types.h │ ├── metronome │ │ ├── metronome.h │ │ └── test │ │ │ └── fake_metronome.h │ ├── neteq │ │ ├── custom_neteq_factory.h │ │ ├── default_neteq_controller_factory.h │ │ ├── neteq.h │ │ ├── neteq_controller.h │ │ ├── neteq_controller_factory.h │ │ ├── neteq_factory.h │ │ └── tick_timer.h │ ├── network_state_predictor.h │ ├── notifier.h │ ├── numerics │ │ └── samples_stats_counter.h │ ├── packet_socket_factory.h │ ├── peer_connection_interface.h │ ├── priority.h │ ├── ref_counted_base.h │ ├── rtc_error.h │ ├── rtc_event_log │ │ ├── rtc_event.h │ │ ├── rtc_event_log.h │ │ ├── rtc_event_log_factory.h │ │ └── rtc_event_log_factory_interface.h │ ├── rtc_event_log_output.h │ ├── rtc_event_log_output_file.h │ ├── rtp_headers.h │ ├── rtp_packet_info.h │ ├── rtp_packet_infos.h │ ├── rtp_parameters.h │ ├── rtp_receiver_interface.h │ ├── rtp_sender_interface.h │ ├── rtp_transceiver_direction.h │ ├── rtp_transceiver_interface.h │ ├── scoped_refptr.h │ ├── sctp_transport_interface.h │ ├── sequence_checker.h │ ├── set_local_description_observer_interface.h │ ├── set_remote_description_observer_interface.h │ ├── stats │ │ ├── rtc_stats.h │ │ ├── rtc_stats_collector_callback.h │ │ ├── rtc_stats_report.h │ │ └── rtcstats_objects.h │ ├── stats_types.h │ ├── task_queue │ │ ├── default_task_queue_factory.h │ │ ├── pending_task_safety_flag.h │ │ ├── queued_task.h │ │ ├── task_queue_base.h │ │ ├── task_queue_factory.h │ │ ├── task_queue_test.h │ │ ├── test │ │ │ └── mock_task_queue_base.h │ │ └── to_queued_task.h │ ├── test │ │ ├── audio_quality_analyzer_interface.h │ │ ├── audioproc_float.h │ │ ├── create_frame_generator.h │ │ ├── create_network_emulation_manager.h │ │ ├── create_peer_connection_quality_test_frame_generator.h │ │ ├── create_peerconnection_quality_test_fixture.h │ │ ├── create_simulcast_test_fixture.h │ │ ├── create_time_controller.h │ │ ├── create_video_quality_test_fixture.h │ │ ├── create_videocodec_test_fixture.h │ │ ├── fake_frame_decryptor.h │ │ ├── fake_frame_encryptor.h │ │ ├── frame_generator_interface.h │ │ ├── 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_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.h │ │ ├── neteq_simulator_factory.h │ │ ├── network_emulation │ │ │ ├── create_cross_traffic.h │ │ │ ├── cross_traffic.h │ │ │ └── network_emulation_interfaces.h │ │ ├── network_emulation_manager.h │ │ ├── peer_network_dependencies.h │ │ ├── peerconnection_quality_test_fixture.h │ │ ├── simulated_network.h │ │ ├── simulcast_test_fixture.h │ │ ├── stats_observer_interface.h │ │ ├── test_dependency_factory.h │ │ ├── time_controller.h │ │ ├── track_id_stream_info_map.h │ │ ├── video │ │ │ ├── function_video_decoder_factory.h │ │ │ └── function_video_encoder_factory.h │ │ ├── video_quality_analyzer_interface.h │ │ ├── video_quality_test_fixture.h │ │ ├── videocodec_test_fixture.h │ │ └── videocodec_test_stats.h │ ├── transport │ │ ├── bitrate_settings.h │ │ ├── data_channel_transport_interface.h │ │ ├── enums.h │ │ ├── field_trial_based_config.h │ │ ├── goog_cc_factory.h │ │ ├── network_control.h │ │ ├── network_types.h │ │ ├── rtp │ │ │ ├── dependency_descriptor.h │ │ │ └── rtp_source.h │ │ ├── sctp_transport_factory_interface.h │ │ ├── stun.h │ │ └── test │ │ │ ├── create_feedback_generator.h │ │ │ ├── feedback_generator_interface.h │ │ │ └── mock_network_control.h │ ├── turn_customizer.h │ ├── uma_metrics.h │ ├── units │ │ ├── data_rate.h │ │ ├── data_size.h │ │ ├── frequency.h │ │ ├── time_delta.h │ │ └── timestamp.h │ ├── video │ │ ├── builtin_video_bitrate_allocator_factory.h │ │ ├── color_space.h │ │ ├── encoded_frame.h │ │ ├── encoded_image.h │ │ ├── frame_buffer.h │ │ ├── hdr_metadata.h │ │ ├── i010_buffer.h │ │ ├── i210_buffer.h │ │ ├── i420_buffer.h │ │ ├── i422_buffer.h │ │ ├── i444_buffer.h │ │ ├── nv12_buffer.h │ │ ├── recordable_encoded_frame.h │ │ ├── render_resolution.h │ │ ├── rtp_video_frame_assembler.h │ │ ├── test │ │ │ ├── mock_recordable_encoded_frame.h │ │ │ └── video_frame_matchers.h │ │ ├── video_adaptation_counters.h │ │ ├── video_adaptation_reason.h │ │ ├── video_bitrate_allocation.h │ │ ├── video_bitrate_allocator.h │ │ ├── video_bitrate_allocator_factory.h │ │ ├── video_codec_constants.h │ │ ├── video_codec_type.h │ │ ├── video_content_type.h │ │ ├── video_frame.h │ │ ├── video_frame_buffer.h │ │ ├── video_frame_metadata.h │ │ ├── video_frame_type.h │ │ ├── video_layers_allocation.h │ │ ├── video_rotation.h │ │ ├── video_sink_interface.h │ │ ├── video_source_interface.h │ │ ├── video_stream_decoder.h │ │ ├── video_stream_decoder_create.h │ │ ├── video_stream_encoder_interface.h │ │ ├── video_stream_encoder_observer.h │ │ ├── video_stream_encoder_settings.h │ │ └── video_timing.h │ ├── video_codecs │ │ ├── av1_profile.h │ │ ├── bitstream_parser.h │ │ ├── builtin_video_decoder_factory.h │ │ ├── builtin_video_encoder_factory.h │ │ ├── h264_profile_level_id.h │ │ ├── scalability_mode.h │ │ ├── sdp_video_format.h │ │ ├── simulcast_stream.h │ │ ├── spatial_layer.h │ │ ├── video_codec.h │ │ ├── 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.h │ │ ├── video_encoder.h │ │ ├── video_encoder_config.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.h │ │ ├── vp8_frame_buffer_controller.h │ │ ├── vp8_frame_config.h │ │ ├── vp8_temporal_layers.h │ │ ├── vp8_temporal_layers_factory.h │ │ └── vp9_profile.h │ ├── video_track_source_constraints.h │ ├── video_track_source_proxy_factory.h │ ├── voip │ │ ├── test │ │ │ └── mock_voip_engine.h │ │ ├── voip_base.h │ │ ├── voip_codec.h │ │ ├── voip_dtmf.h │ │ ├── voip_engine.h │ │ ├── voip_engine_factory.h │ │ ├── voip_network.h │ │ ├── voip_statistics.h │ │ └── voip_volume_control.h │ ├── webrtc_key_value_config.h │ └── wrapping_async_dns_resolver.h ├── audio │ ├── audio_level.h │ ├── audio_receive_stream.h │ ├── audio_send_stream.h │ ├── audio_state.h │ ├── audio_transport_impl.h │ ├── channel_receive.h │ ├── channel_receive_frame_transformer_delegate.h │ ├── channel_send.h │ ├── channel_send_frame_transformer_delegate.h │ ├── conversion.h │ ├── mock_voe_channel_proxy.h │ ├── null_audio_poller.h │ ├── remix_resample.h │ ├── test │ │ ├── audio_bwe_integration_test.h │ │ └── audio_end_to_end_test.h │ ├── utility │ │ ├── audio_frame_operations.h │ │ ├── channel_mixer.h │ │ └── channel_mixing_matrix.h │ └── voip │ │ ├── audio_channel.h │ │ ├── audio_egress.h │ │ ├── audio_ingress.h │ │ ├── test │ │ └── mock_task_queue.h │ │ └── voip_core.h ├── base │ ├── allocator │ │ ├── allocator_check.h │ │ ├── allocator_extension.h │ │ ├── allocator_interception_mac.h │ │ ├── allocator_shim.h │ │ ├── allocator_shim_default_dispatch_to_partition_alloc.h │ │ ├── allocator_shim_internals.h │ │ ├── allocator_shim_override_cpp_symbols.h │ │ ├── allocator_shim_override_glibc_weak_symbols.h │ │ ├── allocator_shim_override_libc_symbols.h │ │ ├── allocator_shim_override_linker_wrapped_symbols.h │ │ ├── allocator_shim_override_mac_default_zone.h │ │ ├── allocator_shim_override_mac_symbols.h │ │ ├── allocator_shim_override_ucrt_symbols_win.h │ │ ├── dispatcher │ │ │ ├── dispatcher.h │ │ │ └── reentry_guard.h │ │ ├── early_zone_registration_mac.h │ │ ├── malloc_zone_functions_mac.h │ │ ├── partition_alloc_features.h │ │ ├── partition_alloc_support.h │ │ ├── partition_allocator │ │ │ ├── address_pool_manager.h │ │ │ ├── address_pool_manager_bitmap.h │ │ │ ├── address_pool_manager_types.h │ │ │ ├── address_space_randomization.h │ │ │ ├── address_space_stats.h │ │ │ ├── allocation_guard.h │ │ │ ├── arm_bti_test_functions.h │ │ │ ├── dangling_raw_ptr_checks.h │ │ │ ├── extended_api.h │ │ │ ├── memory_reclaimer.h │ │ │ ├── oom.h │ │ │ ├── oom_callback.h │ │ │ ├── page_allocator.h │ │ │ ├── page_allocator_constants.h │ │ │ ├── page_allocator_internal.h │ │ │ ├── page_allocator_internals_fuchsia.h │ │ │ ├── page_allocator_internals_posix.h │ │ │ ├── page_allocator_internals_win.h │ │ │ ├── partition_address_space.h │ │ │ ├── partition_alloc-inl.h │ │ │ ├── partition_alloc.h │ │ │ ├── partition_alloc_base │ │ │ │ ├── atomic_ref_count.h │ │ │ │ ├── bit_cast.h │ │ │ │ ├── bits.h │ │ │ │ ├── check.h │ │ │ │ ├── compiler_specific.h │ │ │ │ ├── component_export.h │ │ │ │ ├── cpu.h │ │ │ │ ├── cxx17_backports.h │ │ │ │ ├── debug │ │ │ │ │ └── alias.h │ │ │ │ ├── files │ │ │ │ │ ├── file_path.h │ │ │ │ │ └── file_util.h │ │ │ │ ├── fuchsia │ │ │ │ │ └── fuchsia_logging.h │ │ │ │ ├── gtest_prod_util.h │ │ │ │ ├── immediate_crash.h │ │ │ │ ├── logging.h │ │ │ │ ├── mac │ │ │ │ │ ├── foundation_util.h │ │ │ │ │ ├── mac_util.h │ │ │ │ │ ├── scoped_cftyperef.h │ │ │ │ │ └── scoped_typeref.h │ │ │ │ ├── memory │ │ │ │ │ ├── ref_counted.h │ │ │ │ │ ├── scoped_policy.h │ │ │ │ │ └── scoped_refptr.h │ │ │ │ ├── migration_adapter.h │ │ │ │ ├── native_library.h │ │ │ │ ├── no_destructor.h │ │ │ │ ├── numerics │ │ │ │ │ ├── checked_math.h │ │ │ │ │ ├── checked_math_impl.h │ │ │ │ │ ├── clamped_math.h │ │ │ │ │ ├── clamped_math_impl.h │ │ │ │ │ ├── math_constants.h │ │ │ │ │ ├── ostream_operators.h │ │ │ │ │ ├── ranges.h │ │ │ │ │ ├── safe_conversions.h │ │ │ │ │ ├── safe_conversions_arm_impl.h │ │ │ │ │ ├── safe_conversions_impl.h │ │ │ │ │ ├── safe_math.h │ │ │ │ │ ├── safe_math_arm_impl.h │ │ │ │ │ ├── safe_math_clang_gcc_impl.h │ │ │ │ │ └── safe_math_shared_impl.h │ │ │ │ ├── posix │ │ │ │ │ ├── eintr_wrapper.h │ │ │ │ │ └── safe_strerror.h │ │ │ │ ├── rand_util.h │ │ │ │ ├── scoped_clear_last_error.h │ │ │ │ ├── strings │ │ │ │ │ └── stringprintf.h │ │ │ │ ├── sys_byteorder.h │ │ │ │ ├── thread_annotations.h │ │ │ │ ├── threading │ │ │ │ │ ├── platform_thread.h │ │ │ │ │ ├── platform_thread_for_testing.h │ │ │ │ │ ├── platform_thread_internal_posix.h │ │ │ │ │ └── platform_thread_ref.h │ │ │ │ ├── time │ │ │ │ │ ├── time.h │ │ │ │ │ └── time_override.h │ │ │ │ └── win │ │ │ │ │ └── windows_types.h │ │ │ ├── partition_alloc_check.h │ │ │ ├── partition_alloc_config.h │ │ │ ├── partition_alloc_constants.h │ │ │ ├── partition_alloc_forward.h │ │ │ ├── partition_alloc_hooks.h │ │ │ ├── partition_alloc_notreached.h │ │ │ ├── partition_bucket.h │ │ │ ├── partition_bucket_lookup.h │ │ │ ├── partition_cookie.h │ │ │ ├── partition_direct_map_extent.h │ │ │ ├── partition_freelist_entry.h │ │ │ ├── partition_lock.h │ │ │ ├── partition_oom.h │ │ │ ├── partition_page.h │ │ │ ├── partition_ref_count.h │ │ │ ├── partition_root.h │ │ │ ├── partition_stats.h │ │ │ ├── partition_tag.h │ │ │ ├── partition_tag_bitmap.h │ │ │ ├── partition_tls.h │ │ │ ├── random.h │ │ │ ├── reservation_offset_table.h │ │ │ ├── spinning_mutex.h │ │ │ ├── starscan │ │ │ │ ├── logging.h │ │ │ │ ├── metadata_allocator.h │ │ │ │ ├── pcscan.h │ │ │ │ ├── pcscan_internal.h │ │ │ │ ├── pcscan_scheduling.h │ │ │ │ ├── raceful_worklist.h │ │ │ │ ├── scan_loop.h │ │ │ │ ├── snapshot.h │ │ │ │ ├── stack │ │ │ │ │ └── stack.h │ │ │ │ ├── starscan_fwd.h │ │ │ │ ├── state_bitmap.h │ │ │ │ ├── stats_collector.h │ │ │ │ ├── stats_reporter.h │ │ │ │ └── write_protector.h │ │ │ ├── tagging.h │ │ │ ├── thread_cache.h │ │ │ └── yield_processor.h │ │ └── winheap_stubs_win.h │ ├── android │ │ ├── android_hardware_buffer_compat.h │ │ ├── android_image_reader_abi.h │ │ ├── android_image_reader_compat.h │ │ ├── apk_assets.h │ │ ├── application_status_listener.h │ │ ├── base_features.h │ │ ├── base_jni_onload.h │ │ ├── build_info.h │ │ ├── bundle_utils.h │ │ ├── callback_android.h │ │ ├── child_process_binding_types.h │ │ ├── content_uri_utils.h │ │ ├── early_trace_event_binding.h │ │ ├── event_log.h │ │ ├── int_string_callback.h │ │ ├── jank_metric_uma_recorder.h │ │ ├── java_exception_reporter.h │ │ ├── java_handler_thread.h │ │ ├── java_heap_dump_generator.h │ │ ├── java_runtime.h │ │ ├── jni_android.h │ │ ├── jni_array.h │ │ ├── jni_generator │ │ │ ├── jni_generator_helper.h │ │ │ └── sample_for_tests.h │ │ ├── jni_int_wrapper.h │ │ ├── jni_registrar.h │ │ ├── jni_string.h │ │ ├── jni_utils.h │ │ ├── jni_weak_ref.h │ │ ├── library_loader │ │ │ ├── anchor_functions.h │ │ │ ├── library_loader_hooks.h │ │ │ └── library_prefetcher.h │ │ ├── linker │ │ │ ├── legacy_linker_jni.h │ │ │ ├── linker_jni.h │ │ │ └── modern_linker_jni.h │ │ ├── locale_utils.h │ │ ├── memory_pressure_listener_android.h │ │ ├── orderfile │ │ │ └── orderfile_instrumentation.h │ │ ├── path_utils.h │ │ ├── radio_utils.h │ │ ├── reached_addresses_bitset.h │ │ ├── reached_code_profiler.h │ │ ├── remove_stale_data.h │ │ ├── scoped_hardware_buffer_fence_sync.h │ │ ├── scoped_hardware_buffer_handle.h │ │ ├── scoped_java_ref.h │ │ ├── sys_utils.h │ │ ├── task_scheduler │ │ │ ├── post_task_android.h │ │ │ └── task_runner_android.h │ │ ├── thread_instruction_count.h │ │ ├── timezone_utils.h │ │ ├── trace_event_binding.h │ │ └── unguessable_token_android.h │ ├── as_const.h │ ├── at_exit.h │ ├── atomic_ref_count.h │ ├── atomic_sequence_num.h │ ├── atomicops.h │ ├── atomicops_internals_atomicword_compat.h │ ├── atomicops_internals_portable.h │ ├── auto_reset.h │ ├── barrier_callback.h │ ├── barrier_closure.h │ ├── base64.h │ ├── base64url.h │ ├── base_export.h │ ├── base_paths.h │ ├── base_paths_android.h │ ├── base_paths_mac.h │ ├── base_paths_posix.h │ ├── base_paths_win.h │ ├── base_switches.h │ ├── big_endian.h │ ├── bind.h │ ├── bind_internal.h │ ├── bit_cast.h │ ├── bits.h │ ├── build_time.h │ ├── callback.h │ ├── callback_forward.h │ ├── callback_helpers.h │ ├── callback_internal.h │ ├── callback_list.h │ ├── cancelable_callback.h │ ├── check.h │ ├── check_is_test.h │ ├── check_op.h │ ├── command_line.h │ ├── compiler_specific.h │ ├── component_export.h │ ├── containers │ │ ├── adapters.h │ │ ├── buffer_iterator.h │ │ ├── checked_iterators.h │ │ ├── checked_range.h │ │ ├── circular_deque.h │ │ ├── contains.h │ │ ├── contiguous_iterator.h │ │ ├── cxx20_erase.h │ │ ├── cxx20_erase_deque.h │ │ ├── cxx20_erase_forward_list.h │ │ ├── cxx20_erase_internal.h │ │ ├── cxx20_erase_list.h │ │ ├── cxx20_erase_map.h │ │ ├── cxx20_erase_set.h │ │ ├── cxx20_erase_string.h │ │ ├── cxx20_erase_unordered_map.h │ │ ├── cxx20_erase_unordered_set.h │ │ ├── cxx20_erase_vector.h │ │ ├── enum_set.h │ │ ├── extend.h │ │ ├── fixed_flat_map.h │ │ ├── fixed_flat_set.h │ │ ├── flat_map.h │ │ ├── flat_set.h │ │ ├── flat_tree.h │ │ ├── id_map.h │ │ ├── intrusive_heap.h │ │ ├── linked_list.h │ │ ├── lru_cache.h │ │ ├── queue.h │ │ ├── ring_buffer.h │ │ ├── small_map.h │ │ ├── span.h │ │ ├── span_rust.h │ │ ├── stack.h │ │ ├── stack_container.h │ │ ├── unique_ptr_adapters.h │ │ ├── util.h │ │ └── vector_buffer.h │ ├── cpu.h │ ├── cpu_reduction_experiment.h │ ├── critical_closure.h │ ├── cxx17_backports.h │ ├── cxx20_to_address.h │ ├── dcheck_is_on.h │ ├── debug │ │ ├── activity_analyzer.h │ │ ├── activity_tracker.h │ │ ├── alias.h │ │ ├── asan_invalid_access.h │ │ ├── buffered_dwarf_reader.h │ │ ├── crash_logging.h │ │ ├── debugger.h │ │ ├── dump_without_crashing.h │ │ ├── dwarf_line_no.h │ │ ├── elf_reader.h │ │ ├── gdi_debug_util_win.h │ │ ├── handle_hooks_win.h │ │ ├── invalid_access_win.h │ │ ├── leak_annotations.h │ │ ├── proc_maps_linux.h │ │ ├── profiler.h │ │ ├── stack_trace.h │ │ ├── task_trace.h │ │ └── test_elf_image_builder.h │ ├── enterprise_util.h │ ├── environment.h │ ├── export_template.h │ ├── feature_list.h │ ├── features.h │ ├── file_descriptor_posix.h │ ├── file_descriptor_store.h │ ├── file_version_info.h │ ├── file_version_info_mac.h │ ├── file_version_info_win.h │ ├── files │ │ ├── dir_reader_fallback.h │ │ ├── dir_reader_linux.h │ │ ├── dir_reader_posix.h │ │ ├── file.h │ │ ├── file_descriptor_watcher_posix.h │ │ ├── file_enumerator.h │ │ ├── file_error_or.h │ │ ├── file_path.h │ │ ├── file_path_watcher.h │ │ ├── file_path_watcher_fsevents.h │ │ ├── file_path_watcher_inotify.h │ │ ├── file_path_watcher_kqueue.h │ │ ├── file_proxy.h │ │ ├── file_tracing.h │ │ ├── file_util.h │ │ ├── important_file_writer.h │ │ ├── important_file_writer_cleaner.h │ │ ├── memory_mapped_file.h │ │ ├── platform_file.h │ │ ├── safe_base_name.h │ │ ├── scoped_file.h │ │ └── scoped_temp_dir.h │ ├── format_macros.h │ ├── fuchsia │ │ ├── default_job.h │ │ ├── file_utils.h │ │ ├── filtered_service_directory.h │ │ ├── fuchsia_logging.h │ │ ├── intl_profile_watcher.h │ │ ├── koid.h │ │ ├── mem_buffer_util.h │ │ ├── process_context.h │ │ ├── process_lifecycle.h │ │ ├── scheduler.h │ │ ├── scoped_fx_logger.h │ │ ├── scoped_service_binding.h │ │ ├── scoped_service_publisher.h │ │ ├── service_directory_test_base.h │ │ ├── service_provider_impl.h │ │ ├── startup_context.h │ │ ├── system_info.h │ │ ├── test_component_context_for_process.h │ │ ├── test_component_controller.h │ │ ├── test_interface_impl.h │ │ └── test_log_listener_safe.h │ ├── functional │ │ ├── function_ref.h │ │ ├── identity.h │ │ ├── invoke.h │ │ └── not_fn.h │ ├── gtest_prod_util.h │ ├── guid.h │ ├── hash │ │ ├── hash.h │ │ ├── legacy_hash.h │ │ ├── md5.h │ │ ├── md5_boringssl.h │ │ ├── md5_constexpr.h │ │ ├── md5_constexpr_internal.h │ │ ├── md5_nacl.h │ │ ├── sha1.h │ │ ├── sha1_boringssl.h │ │ └── sha1_nacl.h │ ├── i18n │ │ ├── base_i18n_export.h │ │ ├── base_i18n_switches.h │ │ ├── break_iterator.h │ │ ├── case_conversion.h │ │ ├── char_iterator.h │ │ ├── character_encoding.h │ │ ├── encoding_detection.h │ │ ├── file_util_icu.h │ │ ├── i18n_constants.h │ │ ├── icu_mergeable_data_file.h │ │ ├── icu_string_conversions.h │ │ ├── icu_util.h │ │ ├── message_formatter.h │ │ ├── number_formatting.h │ │ ├── rtl.h │ │ ├── streaming_utf8_validator.h │ │ ├── string_compare.h │ │ ├── string_search.h │ │ ├── time_formatting.h │ │ ├── timezone.h │ │ ├── unicodestring.h │ │ └── utf8_validator_tables.h │ ├── immediate_crash.h │ ├── ios │ │ ├── block_types.h │ │ ├── crb_protocol_observers.h │ │ ├── device_util.h │ │ ├── ios_util.h │ │ ├── ns_error_util.h │ │ ├── ns_range.h │ │ ├── scoped_critical_action.h │ │ └── weak_nsobject.h │ ├── json │ │ ├── json_common.h │ │ ├── json_file_value_serializer.h │ │ ├── json_parser.h │ │ ├── json_reader.h │ │ ├── json_string_value_serializer.h │ │ ├── json_value_converter.h │ │ ├── json_writer.h │ │ ├── string_escape.h │ │ └── values_util.h │ ├── lazy_instance.h │ ├── lazy_instance_helpers.h │ ├── linux_util.h │ ├── location.h │ ├── logging.h │ ├── logging_win.h │ ├── mac │ │ ├── authorization_util.h │ │ ├── backup_util.h │ │ ├── bridging.h │ │ ├── bundle_locations.h │ │ ├── call_with_eh_frame.h │ │ ├── dispatch_source_mach.h │ │ ├── foundation_util.h │ │ ├── launch_services_util.h │ │ ├── launchd.h │ │ ├── mac_logging.h │ │ ├── mac_util.h │ │ ├── mach_logging.h │ │ ├── mach_port_rendezvous.h │ │ ├── objc_release_properties.h │ │ ├── os_crash_dumps.h │ │ ├── scoped_aedesc.h │ │ ├── scoped_authorizationref.h │ │ ├── scoped_block.h │ │ ├── scoped_cffiledescriptorref.h │ │ ├── scoped_cftyperef.h │ │ ├── scoped_dispatch_object.h │ │ ├── scoped_ionotificationportref.h │ │ ├── scoped_ioobject.h │ │ ├── scoped_ioplugininterface.h │ │ ├── scoped_launch_data.h │ │ ├── scoped_mach_msg_destroy.h │ │ ├── scoped_mach_port.h │ │ ├── scoped_mach_vm.h │ │ ├── scoped_nsautorelease_pool.h │ │ ├── scoped_nsobject.h │ │ ├── scoped_objc_class_swizzler.h │ │ ├── scoped_sending_event.h │ │ ├── scoped_typeref.h │ │ └── sdk_forward_declarations.h │ ├── memory │ │ ├── aligned_memory.h │ │ ├── discardable_memory.h │ │ ├── discardable_memory_allocator.h │ │ ├── discardable_memory_internal.h │ │ ├── discardable_shared_memory.h │ │ ├── free_deleter.h │ │ ├── madv_free_discardable_memory_allocator_posix.h │ │ ├── madv_free_discardable_memory_posix.h │ │ ├── memory_pressure_listener.h │ │ ├── memory_pressure_monitor.h │ │ ├── nonscannable_memory.h │ │ ├── page_size.h │ │ ├── platform_shared_memory_handle.h │ │ ├── platform_shared_memory_mapper.h │ │ ├── platform_shared_memory_region.h │ │ ├── ptr_util.h │ │ ├── raw_ptr.h │ │ ├── raw_ptr_asan_service.h │ │ ├── raw_ptr_exclusion.h │ │ ├── raw_ref.h │ │ ├── raw_scoped_refptr_mismatch_checker.h │ │ ├── read_only_shared_memory_region.h │ │ ├── ref_counted.h │ │ ├── ref_counted_delete_on_sequence.h │ │ ├── ref_counted_memory.h │ │ ├── safe_ref.h │ │ ├── scoped_policy.h │ │ ├── scoped_refptr.h │ │ ├── shared_memory_hooks.h │ │ ├── shared_memory_mapper.h │ │ ├── shared_memory_mapping.h │ │ ├── shared_memory_security_policy.h │ │ ├── shared_memory_tracker.h │ │ ├── singleton.h │ │ ├── unsafe_shared_memory_pool.h │ │ ├── unsafe_shared_memory_region.h │ │ ├── values_equivalent.h │ │ ├── weak_auto_reset.h │ │ ├── weak_ptr.h │ │ └── writable_shared_memory_region.h │ ├── message_loop │ │ ├── message_pump.h │ │ ├── message_pump_android.h │ │ ├── message_pump_default.h │ │ ├── message_pump_epoll.h │ │ ├── message_pump_for_io.h │ │ ├── message_pump_for_ui.h │ │ ├── message_pump_fuchsia.h │ │ ├── message_pump_glib.h │ │ ├── message_pump_io_ios.h │ │ ├── message_pump_kqueue.h │ │ ├── message_pump_libevent.h │ │ ├── message_pump_mac.h │ │ ├── message_pump_type.h │ │ ├── message_pump_win.h │ │ ├── timer_slack.h │ │ ├── watchable_io_message_pump_posix.h │ │ └── work_id_provider.h │ ├── metrics │ │ ├── bucket_ranges.h │ │ ├── crc32.h │ │ ├── dummy_histogram.h │ │ ├── field_trial.h │ │ ├── field_trial_param_associator.h │ │ ├── field_trial_params.h │ │ ├── histogram.h │ │ ├── histogram_base.h │ │ ├── histogram_delta_serialization.h │ │ ├── histogram_flattener.h │ │ ├── histogram_functions.h │ │ ├── histogram_macros.h │ │ ├── histogram_macros_internal.h │ │ ├── histogram_macros_local.h │ │ ├── histogram_samples.h │ │ ├── histogram_snapshot_manager.h │ │ ├── metrics_hashes.h │ │ ├── persistent_histogram_allocator.h │ │ ├── persistent_histogram_storage.h │ │ ├── persistent_memory_allocator.h │ │ ├── persistent_sample_map.h │ │ ├── ranges_manager.h │ │ ├── record_histogram_checker.h │ │ ├── sample_map.h │ │ ├── sample_vector.h │ │ ├── single_sample_metrics.h │ │ ├── sparse_histogram.h │ │ ├── statistics_recorder.h │ │ ├── user_metrics.h │ │ └── user_metrics_action.h │ ├── native_library.h │ ├── nix │ │ ├── mime_util_xdg.h │ │ └── xdg_util.h │ ├── no_destructor.h │ ├── notreached.h │ ├── numerics │ │ ├── checked_math.h │ │ ├── checked_math_impl.h │ │ ├── clamped_math.h │ │ ├── clamped_math_impl.h │ │ ├── math_constants.h │ │ ├── ostream_operators.h │ │ ├── ranges.h │ │ ├── safe_conversions.h │ │ ├── safe_conversions_arm_impl.h │ │ ├── safe_conversions_impl.h │ │ ├── safe_math.h │ │ ├── safe_math_arm_impl.h │ │ ├── safe_math_clang_gcc_impl.h │ │ └── safe_math_shared_impl.h │ ├── observer_list.h │ ├── observer_list_internal.h │ ├── observer_list_threadsafe.h │ ├── observer_list_types.h │ ├── one_shot_event.h │ ├── os_compat_android.h │ ├── os_compat_nacl.h │ ├── parameter_pack.h │ ├── path_service.h │ ├── pending_task.h │ ├── pickle.h │ ├── posix │ │ ├── can_lower_nice_to.h │ │ ├── eintr_wrapper.h │ │ ├── file_descriptor_shuffle.h │ │ ├── global_descriptors.h │ │ ├── safe_strerror.h │ │ └── unix_domain_socket.h │ ├── power_monitor │ │ ├── moving_average.h │ │ ├── power_monitor.h │ │ ├── power_monitor_device_source.h │ │ ├── power_monitor_source.h │ │ ├── power_observer.h │ │ ├── speed_limit_observer_win.h │ │ └── thermal_state_observer_mac.h │ ├── process │ │ ├── environment_internal.h │ │ ├── internal_aix.h │ │ ├── internal_linux.h │ │ ├── kill.h │ │ ├── launch.h │ │ ├── memory.h │ │ ├── memory_unittest_mac.h │ │ ├── port_provider_mac.h │ │ ├── process.h │ │ ├── process_handle.h │ │ ├── process_info.h │ │ ├── process_iterator.h │ │ ├── process_metrics.h │ │ └── process_metrics_iocounters.h │ ├── profiler │ │ ├── arm_cfi_table.h │ │ ├── chrome_unwind_info_android.h │ │ ├── chrome_unwinder_android.h │ │ ├── chrome_unwinder_android_v2.h │ │ ├── frame.h │ │ ├── frame_pointer_unwinder.h │ │ ├── metadata_recorder.h │ │ ├── module_cache.h │ │ ├── native_unwinder_android.h │ │ ├── native_unwinder_win.h │ │ ├── profile_builder.h │ │ ├── register_context.h │ │ ├── sample_metadata.h │ │ ├── sampling_profiler_thread_token.h │ │ ├── stack_buffer.h │ │ ├── stack_copier.h │ │ ├── stack_copier_signal.h │ │ ├── stack_copier_suspend.h │ │ ├── stack_sampler.h │ │ ├── stack_sampler_impl.h │ │ ├── stack_sampling_profiler.h │ │ ├── stack_sampling_profiler_test_util.h │ │ ├── suspendable_thread_delegate.h │ │ ├── suspendable_thread_delegate_mac.h │ │ ├── suspendable_thread_delegate_win.h │ │ ├── thread_delegate.h │ │ ├── thread_delegate_posix.h │ │ ├── unwinder.h │ │ └── win32_stack_frame_unwinder.h │ ├── rand_util.h │ ├── ranges │ │ ├── algorithm.h │ │ ├── functional.h │ │ └── ranges.h │ ├── rs_glue │ │ └── values_glue.h │ ├── run_loop.h │ ├── sampling_heap_profiler │ │ ├── lock_free_address_hash_set.h │ │ ├── poisson_allocation_sampler.h │ │ └── sampling_heap_profiler.h │ ├── scoped_add_feature_flags.h │ ├── scoped_clear_last_error.h │ ├── scoped_environment_variable_override.h │ ├── scoped_generic.h │ ├── scoped_multi_source_observation.h │ ├── scoped_native_library.h │ ├── scoped_observation.h │ ├── sequence_checker.h │ ├── sequence_checker_impl.h │ ├── sequence_token.h │ ├── stack_canary_linux.h │ ├── stl_util.h │ ├── strings │ │ ├── abseil_string_conversions.h │ │ ├── abseil_string_number_conversions.h │ │ ├── escape.h │ │ ├── latin1_string_conversions.h │ │ ├── pattern.h │ │ ├── safe_sprintf.h │ │ ├── strcat.h │ │ ├── strcat_internal.h │ │ ├── strcat_win.h │ │ ├── string_number_conversions.h │ │ ├── string_number_conversions_internal.h │ │ ├── string_number_conversions_win.h │ │ ├── string_piece.h │ │ ├── string_piece_forward.h │ │ ├── string_piece_rust.h │ │ ├── string_split.h │ │ ├── string_split_internal.h │ │ ├── string_split_win.h │ │ ├── string_tokenizer.h │ │ ├── string_util.h │ │ ├── string_util_internal.h │ │ ├── string_util_posix.h │ │ ├── string_util_win.h │ │ ├── stringize_macros.h │ │ ├── stringprintf.h │ │ ├── sys_string_conversions.h │ │ ├── utf_offset_string_conversions.h │ │ ├── utf_string_conversion_utils.h │ │ └── utf_string_conversions.h │ ├── substring_set_matcher │ │ ├── matcher_string_pattern.h │ │ └── substring_set_matcher.h │ ├── supports_user_data.h │ ├── sync_socket.h │ ├── synchronization │ │ ├── atomic_flag.h │ │ ├── condition_variable.h │ │ ├── lock.h │ │ ├── lock_impl.h │ │ ├── waitable_event.h │ │ └── waitable_event_watcher.h │ ├── sys_byteorder.h │ ├── syslog_logging.h │ ├── system │ │ ├── sys_info.h │ │ ├── sys_info_internal.h │ │ └── system_monitor.h │ ├── task │ │ ├── bind_post_task.h │ │ ├── bind_post_task_internal.h │ │ ├── cancelable_task_tracker.h │ │ ├── common │ │ │ ├── checked_lock.h │ │ │ ├── checked_lock_impl.h │ │ │ ├── operations_controller.h │ │ │ ├── scoped_defer_task_posting.h │ │ │ └── task_annotator.h │ │ ├── current_thread.h │ │ ├── default_delayed_task_handle_delegate.h │ │ ├── deferred_sequenced_task_runner.h │ │ ├── delay_policy.h │ │ ├── delayed_task_handle.h │ │ ├── lazy_thread_pool_task_runner.h │ │ ├── post_job.h │ │ ├── post_task_and_reply_with_result_internal.h │ │ ├── scoped_set_task_priority_for_current_thread.h │ │ ├── sequence_manager │ │ │ ├── associated_thread_id.h │ │ │ ├── atomic_flag_set.h │ │ │ ├── delayed_task_handle_delegate.h │ │ │ ├── enqueue_order.h │ │ │ ├── enqueue_order_generator.h │ │ │ ├── fence.h │ │ │ ├── lazily_deallocated_deque.h │ │ │ ├── lazy_now.h │ │ │ ├── sequence_manager.h │ │ │ ├── sequence_manager_impl.h │ │ │ ├── sequenced_task_source.h │ │ │ ├── task_order.h │ │ │ ├── task_queue.h │ │ │ ├── task_queue_impl.h │ │ │ ├── task_queue_selector.h │ │ │ ├── task_queue_selector_logic.h │ │ │ ├── task_time_observer.h │ │ │ ├── tasks.h │ │ │ ├── test │ │ │ │ ├── fake_task.h │ │ │ │ ├── mock_time_domain.h │ │ │ │ ├── mock_time_message_pump.h │ │ │ │ ├── sequence_manager_for_test.h │ │ │ │ ├── test_task_queue.h │ │ │ │ └── test_task_time_observer.h │ │ │ ├── thread_controller.h │ │ │ ├── thread_controller_impl.h │ │ │ ├── thread_controller_power_monitor.h │ │ │ ├── thread_controller_with_message_pump_impl.h │ │ │ ├── time_domain.h │ │ │ ├── wake_up_queue.h │ │ │ ├── work_deduplicator.h │ │ │ ├── work_queue.h │ │ │ └── work_queue_sets.h │ │ ├── sequenced_task_runner.h │ │ ├── sequenced_task_runner_helpers.h │ │ ├── simple_task_executor.h │ │ ├── single_thread_task_executor.h │ │ ├── single_thread_task_runner.h │ │ ├── single_thread_task_runner_thread_mode.h │ │ ├── task_executor.h │ │ ├── task_features.h │ │ ├── task_observer.h │ │ ├── task_runner.h │ │ ├── task_runner_util.h │ │ ├── task_traits.h │ │ ├── task_traits_extension.h │ │ ├── test_task_traits_extension.h │ │ ├── thread_pool.h │ │ ├── thread_pool │ │ │ ├── can_run_policy_test.h │ │ │ ├── delayed_task_manager.h │ │ │ ├── environment_config.h │ │ │ ├── initialization_util.h │ │ │ ├── job_task_source.h │ │ │ ├── pooled_parallel_task_runner.h │ │ │ ├── pooled_sequenced_task_runner.h │ │ │ ├── pooled_single_thread_task_runner_manager.h │ │ │ ├── pooled_task_runner_delegate.h │ │ │ ├── priority_queue.h │ │ │ ├── sequence.h │ │ │ ├── service_thread.h │ │ │ ├── task.h │ │ │ ├── task_source.h │ │ │ ├── task_source_sort_key.h │ │ │ ├── task_tracker.h │ │ │ ├── test_task_factory.h │ │ │ ├── test_utils.h │ │ │ ├── thread_group.h │ │ │ ├── thread_group_impl.h │ │ │ ├── thread_group_native.h │ │ │ ├── thread_group_native_mac.h │ │ │ ├── thread_group_native_win.h │ │ │ ├── thread_pool_impl.h │ │ │ ├── thread_pool_instance.h │ │ │ ├── tracked_ref.h │ │ │ ├── worker_thread.h │ │ │ ├── worker_thread_observer.h │ │ │ └── worker_thread_stack.h │ │ └── updateable_sequenced_task_runner.h │ ├── template_util.h │ ├── test │ │ ├── allow_check_is_test_to_be_called.h │ │ ├── android │ │ │ ├── java_handler_thread_helpers.h │ │ │ └── url_utils.h │ │ ├── async_results_test_values_win.h │ │ ├── bind.h │ │ ├── clang_profiling.h │ │ ├── copy_only_int.h │ │ ├── fake_iasync_operation_win.h │ │ ├── gmock_callback_support.h │ │ ├── gmock_move_support.h │ │ ├── gtest_links.h │ │ ├── gtest_util.h │ │ ├── gtest_xml_unittest_result_printer.h │ │ ├── gtest_xml_util.h │ │ ├── icu_test_util.h │ │ ├── ios │ │ │ ├── google_test_runner_delegate.h │ │ │ └── wait_util.h │ │ ├── launcher │ │ │ ├── test_launcher.h │ │ │ ├── test_launcher_test_utils.h │ │ │ ├── test_launcher_tracer.h │ │ │ ├── test_result.h │ │ │ ├── test_results_tracker.h │ │ │ └── unit_test_launcher.h │ │ ├── malloc_wrapper.h │ │ ├── metrics │ │ │ ├── histogram_enum_reader.h │ │ │ ├── histogram_tester.h │ │ │ └── user_action_tester.h │ │ ├── mock_callback.h │ │ ├── mock_chrome_application_mac.h │ │ ├── mock_devices_changed_observer.h │ │ ├── mock_entropy_provider.h │ │ ├── mock_log.h │ │ ├── move_only_int.h │ │ ├── multiprocess_test.h │ │ ├── native_library_test_utils.h │ │ ├── null_task_runner.h │ │ ├── perf_log.h │ │ ├── perf_test_suite.h │ │ ├── perf_time_logger.h │ │ ├── power_monitor_test.h │ │ ├── repeating_test_future.h │ │ ├── scoped_chromeos_version_info.h │ │ ├── scoped_command_line.h │ │ ├── scoped_dev_zero_fuchsia.h │ │ ├── scoped_feature_list.h │ │ ├── scoped_field_trial_list_resetter.h │ │ ├── scoped_locale.h │ │ ├── scoped_logging_settings.h │ │ ├── scoped_mock_clock_override.h │ │ ├── scoped_mock_time_message_loop_task_runner.h │ │ ├── scoped_os_info_override_win.h │ │ ├── scoped_path_override.h │ │ ├── scoped_run_loop_timeout.h │ │ ├── scoped_running_on_chromeos.h │ │ ├── sequenced_task_runner_test_template.h │ │ ├── simple_test_clock.h │ │ ├── simple_test_tick_clock.h │ │ ├── spin_wait.h │ │ ├── task_environment.h │ │ ├── task_runner_test_template.h │ │ ├── test_discardable_memory_allocator.h │ │ ├── test_file_util.h │ │ ├── test_future.h │ │ ├── test_future_internal.h │ │ ├── test_io_thread.h │ │ ├── test_listener_ios.h │ │ ├── test_message_loop.h │ │ ├── test_mock_time_task_runner.h │ │ ├── test_pending_task.h │ │ ├── test_reg_util_win.h │ │ ├── test_shared_memory_util.h │ │ ├── test_shortcut_win.h │ │ ├── test_simple_task_runner.h │ │ ├── test_suite.h │ │ ├── test_support_android.h │ │ ├── test_support_ios.h │ │ ├── test_switches.h │ │ ├── test_timeouts.h │ │ ├── test_waitable_event.h │ │ ├── thread_test_helper.h │ │ ├── trace_event_analyzer.h │ │ ├── trace_test_utils.h │ │ ├── trace_to_file.h │ │ ├── values_test_util.h │ │ └── with_feature_override.h │ ├── third_party │ │ ├── cityhash │ │ │ └── city.h │ │ ├── cityhash_v103 │ │ │ └── src │ │ │ │ └── city_v103.h │ │ ├── double_conversion │ │ │ └── double-conversion │ │ │ │ ├── bignum-dtoa.h │ │ │ │ ├── bignum.h │ │ │ │ ├── cached-powers.h │ │ │ │ ├── diy-fp.h │ │ │ │ ├── double-conversion.h │ │ │ │ ├── double-to-string.h │ │ │ │ ├── fast-dtoa.h │ │ │ │ ├── fixed-dtoa.h │ │ │ │ ├── ieee.h │ │ │ │ ├── string-to-double.h │ │ │ │ ├── strtod.h │ │ │ │ └── utils.h │ │ ├── dynamic_annotations │ │ │ └── dynamic_annotations.h │ │ ├── icu │ │ │ └── icu_utf.h │ │ ├── nspr │ │ │ └── prtime.h │ │ ├── symbolize │ │ │ ├── config.h │ │ │ ├── demangle.h │ │ │ ├── glog │ │ │ │ ├── logging.h │ │ │ │ └── raw_logging.h │ │ │ ├── symbolize.h │ │ │ └── utilities.h │ │ ├── valgrind │ │ │ ├── memcheck.h │ │ │ └── valgrind.h │ │ ├── xdg_mime │ │ │ ├── xdgmime.h │ │ │ ├── xdgmimealias.h │ │ │ ├── xdgmimecache.h │ │ │ ├── xdgmimeglob.h │ │ │ ├── xdgmimeicon.h │ │ │ ├── xdgmimeint.h │ │ │ ├── xdgmimemagic.h │ │ │ └── xdgmimeparent.h │ │ └── xdg_user_dirs │ │ │ └── xdg_user_dir_lookup.h │ ├── thread_annotations.h │ ├── threading │ │ ├── hang_watcher.h │ │ ├── platform_thread.h │ │ ├── platform_thread_internal_posix.h │ │ ├── platform_thread_ref.h │ │ ├── platform_thread_win.h │ │ ├── post_task_and_reply_impl.h │ │ ├── scoped_blocking_call.h │ │ ├── scoped_blocking_call_internal.h │ │ ├── scoped_thread_priority.h │ │ ├── sequence_bound.h │ │ ├── sequence_local_storage_map.h │ │ ├── sequence_local_storage_slot.h │ │ ├── sequenced_task_runner_handle.h │ │ ├── simple_thread.h │ │ ├── thread.h │ │ ├── thread_checker.h │ │ ├── thread_checker_impl.h │ │ ├── thread_collision_warner.h │ │ ├── thread_id_name_manager.h │ │ ├── thread_local.h │ │ ├── thread_local_internal.h │ │ ├── thread_local_storage.h │ │ ├── thread_restrictions.h │ │ ├── thread_task_runner_handle.h │ │ ├── threading_features.h │ │ └── watchdog.h │ ├── time │ │ ├── clock.h │ │ ├── default_clock.h │ │ ├── default_tick_clock.h │ │ ├── tick_clock.h │ │ ├── time.h │ │ ├── time_delta_from_string.h │ │ ├── time_override.h │ │ └── time_to_iso8601.h │ ├── timer │ │ ├── elapsed_timer.h │ │ ├── hi_res_timer_manager.h │ │ ├── lap_timer.h │ │ ├── mock_timer.h │ │ ├── timer.h │ │ └── wall_clock_timer.h │ ├── token.h │ ├── trace_event │ │ ├── address_space_dump_provider.h │ │ ├── application_state_proto_android.h │ │ ├── auto_open_close_event.h │ │ ├── base_tracing.h │ │ ├── base_tracing_forward.h │ │ ├── blame_context.h │ │ ├── builtin_categories.h │ │ ├── category_registry.h │ │ ├── cfi_backtrace_android.h │ │ ├── common │ │ │ └── trace_event_common.h │ │ ├── cpufreq_monitor_android.h │ │ ├── event_name_filter.h │ │ ├── heap_profiler.h │ │ ├── heap_profiler_allocation_context.h │ │ ├── heap_profiler_allocation_context_tracker.h │ │ ├── interned_args_helper.h │ │ ├── java_heap_dump_provider_android.h │ │ ├── log_message.h │ │ ├── malloc_dump_provider.h │ │ ├── memory_allocator_dump.h │ │ ├── memory_allocator_dump_guid.h │ │ ├── memory_dump_manager.h │ │ ├── memory_dump_manager_test_utils.h │ │ ├── memory_dump_provider.h │ │ ├── memory_dump_provider_info.h │ │ ├── memory_dump_request_args.h │ │ ├── memory_dump_scheduler.h │ │ ├── memory_infra_background_allowlist.h │ │ ├── memory_pressure_level_proto.h │ │ ├── memory_usage_estimator.h │ │ ├── optional_trace_event.h │ │ ├── process_memory_dump.h │ │ ├── task_execution_macros.h │ │ ├── trace_arguments.h │ │ ├── trace_buffer.h │ │ ├── trace_category.h │ │ ├── trace_config.h │ │ ├── trace_config_category_filter.h │ │ ├── trace_config_memory_test_util.h │ │ ├── trace_conversion_helper.h │ │ ├── trace_event.h │ │ ├── trace_event_etw_export_win.h │ │ ├── trace_event_filter.h │ │ ├── trace_event_filter_test_utils.h │ │ ├── trace_event_impl.h │ │ ├── trace_event_memory_overhead.h │ │ ├── trace_event_stub.h │ │ ├── trace_id_helper.h │ │ ├── trace_log.h │ │ ├── trace_logging_minimal_win.h │ │ ├── traced_value.h │ │ ├── traced_value_support.h │ │ ├── tracing_agent.h │ │ ├── typed_macros.h │ │ ├── typed_macros_embedder_support.h │ │ └── typed_macros_internal.h │ ├── tracing │ │ ├── perfetto_platform.h │ │ ├── perfetto_task_runner.h │ │ ├── trace_time.h │ │ └── tracing_tls.h │ ├── traits_bag.h │ ├── tuple.h │ ├── types │ │ ├── always_false.h │ │ ├── expected.h │ │ ├── expected_internal.h │ │ ├── id_type.h │ │ ├── pass_key.h │ │ ├── strong_alias.h │ │ └── token_type.h │ ├── unguessable_token.h │ ├── value_iterators.h │ ├── values.h │ ├── version.h │ ├── vlog.h │ └── win │ │ ├── access_token.h │ │ ├── async_operation.h │ │ ├── atl.h │ │ ├── atl_throw.h │ │ ├── com_init_balancer.h │ │ ├── com_init_check_hook.h │ │ ├── com_init_util.h │ │ ├── core_winrt_util.h │ │ ├── current_module.h │ │ ├── dark_mode_support.h │ │ ├── default_apps_util.h │ │ ├── dispatch_stub.h │ │ ├── embedded_i18n │ │ └── language_selector.h │ │ ├── enum_variant.h │ │ ├── event_trace_consumer.h │ │ ├── event_trace_controller.h │ │ ├── event_trace_provider.h │ │ ├── hstring_compare.h │ │ ├── hstring_reference.h │ │ ├── i18n.h │ │ ├── iat_patch_function.h │ │ ├── map.h │ │ ├── message_window.h │ │ ├── nt_status.h │ │ ├── object_watcher.h │ │ ├── patch_util.h │ │ ├── pe_image.h │ │ ├── pe_image_reader.h │ │ ├── post_async_results.h │ │ ├── process_startup_helper.h │ │ ├── propvarutil.h │ │ ├── reference.h │ │ ├── registry.h │ │ ├── resource_util.h │ │ ├── scoped_bstr.h │ │ ├── scoped_co_mem.h │ │ ├── scoped_com_initializer.h │ │ ├── scoped_devinfo.h │ │ ├── scoped_gdi_object.h │ │ ├── scoped_handle.h │ │ ├── scoped_handle_verifier.h │ │ ├── scoped_hdc.h │ │ ├── scoped_hglobal.h │ │ ├── scoped_hstring.h │ │ ├── scoped_localalloc.h │ │ ├── scoped_process_information.h │ │ ├── scoped_propvariant.h │ │ ├── scoped_safearray.h │ │ ├── scoped_select_object.h │ │ ├── scoped_variant.h │ │ ├── scoped_windows_thread_environment.h │ │ ├── scoped_winrt_initializer.h │ │ ├── security_util.h │ │ ├── shlwapi.h │ │ ├── shortcut.h │ │ ├── sid.h │ │ ├── sphelper.h │ │ ├── startup_information.h │ │ ├── static_constants.h │ │ ├── variant_util.h │ │ ├── variant_vector.h │ │ ├── vector.h │ │ ├── win_handle_types.h │ │ ├── win_util.h │ │ ├── wincrypt_shim.h │ │ ├── windows_full.h │ │ ├── windows_h_disallowed.h │ │ ├── windows_types.h │ │ ├── windows_version.h │ │ ├── windowsx_shim.h │ │ ├── winrt_foundation_helpers.h │ │ ├── winrt_storage_util.h │ │ ├── wmi.h │ │ └── wrapped_window_proc.h ├── buildtools │ ├── checkdeps │ │ └── testdata │ │ │ ├── allowed │ │ │ └── test.h │ │ │ ├── checkdeps_test │ │ │ ├── allowed │ │ │ │ └── test.h │ │ │ └── disallowed │ │ │ │ ├── allowed │ │ │ │ ├── skipped │ │ │ │ │ └── test.h │ │ │ │ └── test.h │ │ │ │ └── test.h │ │ │ ├── disallowed │ │ │ ├── allowed │ │ │ │ ├── skipped │ │ │ │ │ └── test.h │ │ │ │ └── test.h │ │ │ └── test.h │ │ │ └── noparent │ │ │ └── test.h │ └── third_party │ │ ├── libc++ │ │ └── trunk │ │ │ ├── benchmarks │ │ │ ├── CartesianBenchmarks.h │ │ │ ├── ContainerBenchmarks.h │ │ │ ├── GenerateInput.h │ │ │ ├── Utilities.h │ │ │ ├── VariantBenchmarks.h │ │ │ └── algorithms │ │ │ │ └── common.h │ │ │ ├── include │ │ │ ├── __algorithm │ │ │ │ ├── adjacent_find.h │ │ │ │ ├── algorithm_family.h │ │ │ │ ├── all_of.h │ │ │ │ ├── any_of.h │ │ │ │ ├── binary_search.h │ │ │ │ ├── clamp.h │ │ │ │ ├── comp.h │ │ │ │ ├── comp_ref_type.h │ │ │ │ ├── copy.h │ │ │ │ ├── copy_backward.h │ │ │ │ ├── copy_if.h │ │ │ │ ├── copy_n.h │ │ │ │ ├── count.h │ │ │ │ ├── count_if.h │ │ │ │ ├── equal.h │ │ │ │ ├── equal_range.h │ │ │ │ ├── fill.h │ │ │ │ ├── fill_n.h │ │ │ │ ├── find.h │ │ │ │ ├── find_end.h │ │ │ │ ├── find_first_of.h │ │ │ │ ├── find_if.h │ │ │ │ ├── find_if_not.h │ │ │ │ ├── for_each.h │ │ │ │ ├── for_each_n.h │ │ │ │ ├── generate.h │ │ │ │ ├── generate_n.h │ │ │ │ ├── half_positive.h │ │ │ │ ├── in_found_result.h │ │ │ │ ├── in_fun_result.h │ │ │ │ ├── in_in_out_result.h │ │ │ │ ├── in_in_result.h │ │ │ │ ├── in_out_out_result.h │ │ │ │ ├── in_out_result.h │ │ │ │ ├── includes.h │ │ │ │ ├── inplace_merge.h │ │ │ │ ├── is_heap.h │ │ │ │ ├── is_heap_until.h │ │ │ │ ├── is_partitioned.h │ │ │ │ ├── is_permutation.h │ │ │ │ ├── is_sorted.h │ │ │ │ ├── is_sorted_until.h │ │ │ │ ├── iter_swap.h │ │ │ │ ├── iterator_operations.h │ │ │ │ ├── lexicographical_compare.h │ │ │ │ ├── lower_bound.h │ │ │ │ ├── make_heap.h │ │ │ │ ├── make_projected.h │ │ │ │ ├── max.h │ │ │ │ ├── max_element.h │ │ │ │ ├── merge.h │ │ │ │ ├── min.h │ │ │ │ ├── min_element.h │ │ │ │ ├── min_max_result.h │ │ │ │ ├── minmax.h │ │ │ │ ├── minmax_element.h │ │ │ │ ├── mismatch.h │ │ │ │ ├── move.h │ │ │ │ ├── move_backward.h │ │ │ │ ├── next_permutation.h │ │ │ │ ├── none_of.h │ │ │ │ ├── nth_element.h │ │ │ │ ├── partial_sort.h │ │ │ │ ├── partial_sort_copy.h │ │ │ │ ├── partition.h │ │ │ │ ├── partition_copy.h │ │ │ │ ├── partition_point.h │ │ │ │ ├── pop_heap.h │ │ │ │ ├── prev_permutation.h │ │ │ │ ├── push_heap.h │ │ │ │ ├── ranges_adjacent_find.h │ │ │ │ ├── ranges_all_of.h │ │ │ │ ├── ranges_any_of.h │ │ │ │ ├── ranges_binary_search.h │ │ │ │ ├── ranges_copy.h │ │ │ │ ├── ranges_copy_backward.h │ │ │ │ ├── ranges_copy_if.h │ │ │ │ ├── ranges_copy_n.h │ │ │ │ ├── ranges_count.h │ │ │ │ ├── ranges_count_if.h │ │ │ │ ├── ranges_equal.h │ │ │ │ ├── ranges_equal_range.h │ │ │ │ ├── ranges_fill.h │ │ │ │ ├── ranges_fill_n.h │ │ │ │ ├── ranges_find.h │ │ │ │ ├── ranges_find_end.h │ │ │ │ ├── ranges_find_first_of.h │ │ │ │ ├── ranges_find_if.h │ │ │ │ ├── ranges_find_if_not.h │ │ │ │ ├── ranges_for_each.h │ │ │ │ ├── ranges_for_each_n.h │ │ │ │ ├── ranges_generate.h │ │ │ │ ├── ranges_generate_n.h │ │ │ │ ├── ranges_includes.h │ │ │ │ ├── ranges_inplace_merge.h │ │ │ │ ├── ranges_is_heap.h │ │ │ │ ├── ranges_is_heap_until.h │ │ │ │ ├── ranges_is_partitioned.h │ │ │ │ ├── ranges_is_sorted.h │ │ │ │ ├── ranges_is_sorted_until.h │ │ │ │ ├── ranges_iterator_concept.h │ │ │ │ ├── ranges_lexicographical_compare.h │ │ │ │ ├── ranges_lower_bound.h │ │ │ │ ├── ranges_make_heap.h │ │ │ │ ├── ranges_max.h │ │ │ │ ├── ranges_max_element.h │ │ │ │ ├── ranges_merge.h │ │ │ │ ├── ranges_min.h │ │ │ │ ├── ranges_min_element.h │ │ │ │ ├── ranges_minmax.h │ │ │ │ ├── ranges_minmax_element.h │ │ │ │ ├── ranges_mismatch.h │ │ │ │ ├── ranges_move.h │ │ │ │ ├── ranges_move_backward.h │ │ │ │ ├── ranges_none_of.h │ │ │ │ ├── ranges_nth_element.h │ │ │ │ ├── ranges_partial_sort.h │ │ │ │ ├── ranges_partial_sort_copy.h │ │ │ │ ├── ranges_partition.h │ │ │ │ ├── ranges_partition_copy.h │ │ │ │ ├── ranges_partition_point.h │ │ │ │ ├── ranges_pop_heap.h │ │ │ │ ├── ranges_push_heap.h │ │ │ │ ├── ranges_remove.h │ │ │ │ ├── ranges_remove_copy.h │ │ │ │ ├── ranges_remove_copy_if.h │ │ │ │ ├── ranges_remove_if.h │ │ │ │ ├── ranges_replace.h │ │ │ │ ├── ranges_replace_copy.h │ │ │ │ ├── ranges_replace_copy_if.h │ │ │ │ ├── ranges_replace_if.h │ │ │ │ ├── ranges_reverse.h │ │ │ │ ├── ranges_reverse_copy.h │ │ │ │ ├── ranges_rotate_copy.h │ │ │ │ ├── ranges_search.h │ │ │ │ ├── ranges_search_n.h │ │ │ │ ├── ranges_set_difference.h │ │ │ │ ├── ranges_set_intersection.h │ │ │ │ ├── ranges_set_symmetric_difference.h │ │ │ │ ├── ranges_set_union.h │ │ │ │ ├── ranges_shuffle.h │ │ │ │ ├── ranges_sort.h │ │ │ │ ├── ranges_sort_heap.h │ │ │ │ ├── ranges_stable_partition.h │ │ │ │ ├── ranges_stable_sort.h │ │ │ │ ├── ranges_swap_ranges.h │ │ │ │ ├── ranges_transform.h │ │ │ │ ├── ranges_unique.h │ │ │ │ ├── ranges_unique_copy.h │ │ │ │ ├── ranges_upper_bound.h │ │ │ │ ├── remove.h │ │ │ │ ├── remove_copy.h │ │ │ │ ├── remove_copy_if.h │ │ │ │ ├── remove_if.h │ │ │ │ ├── replace.h │ │ │ │ ├── replace_copy.h │ │ │ │ ├── replace_copy_if.h │ │ │ │ ├── replace_if.h │ │ │ │ ├── reverse.h │ │ │ │ ├── reverse_copy.h │ │ │ │ ├── rotate.h │ │ │ │ ├── rotate_copy.h │ │ │ │ ├── sample.h │ │ │ │ ├── search.h │ │ │ │ ├── search_n.h │ │ │ │ ├── set_difference.h │ │ │ │ ├── set_intersection.h │ │ │ │ ├── set_symmetric_difference.h │ │ │ │ ├── set_union.h │ │ │ │ ├── shift_left.h │ │ │ │ ├── shift_right.h │ │ │ │ ├── shuffle.h │ │ │ │ ├── sift_down.h │ │ │ │ ├── sort.h │ │ │ │ ├── sort_heap.h │ │ │ │ ├── stable_partition.h │ │ │ │ ├── stable_sort.h │ │ │ │ ├── swap_ranges.h │ │ │ │ ├── transform.h │ │ │ │ ├── unique.h │ │ │ │ ├── unique_copy.h │ │ │ │ ├── unwrap_iter.h │ │ │ │ ├── unwrap_range.h │ │ │ │ └── upper_bound.h │ │ │ ├── __bit │ │ │ │ ├── bit_cast.h │ │ │ │ └── byteswap.h │ │ │ ├── __bsd_locale_defaults.h │ │ │ ├── __bsd_locale_fallbacks.h │ │ │ ├── __charconv │ │ │ │ ├── chars_format.h │ │ │ │ ├── from_chars_result.h │ │ │ │ ├── tables.h │ │ │ │ ├── to_chars_base_10.h │ │ │ │ └── to_chars_result.h │ │ │ ├── __chrono │ │ │ │ ├── calendar.h │ │ │ │ ├── convert_to_timespec.h │ │ │ │ ├── day.h │ │ │ │ ├── duration.h │ │ │ │ ├── file_clock.h │ │ │ │ ├── hh_mm_ss.h │ │ │ │ ├── high_resolution_clock.h │ │ │ │ ├── literals.h │ │ │ │ ├── month.h │ │ │ │ ├── month_weekday.h │ │ │ │ ├── monthday.h │ │ │ │ ├── steady_clock.h │ │ │ │ ├── system_clock.h │ │ │ │ ├── time_point.h │ │ │ │ ├── weekday.h │ │ │ │ ├── year.h │ │ │ │ ├── year_month.h │ │ │ │ ├── year_month_day.h │ │ │ │ └── year_month_weekday.h │ │ │ ├── __compare │ │ │ │ ├── common_comparison_category.h │ │ │ │ ├── compare_partial_order_fallback.h │ │ │ │ ├── compare_strong_order_fallback.h │ │ │ │ ├── compare_three_way.h │ │ │ │ ├── compare_three_way_result.h │ │ │ │ ├── compare_weak_order_fallback.h │ │ │ │ ├── is_eq.h │ │ │ │ ├── ordering.h │ │ │ │ ├── partial_order.h │ │ │ │ ├── strong_order.h │ │ │ │ ├── synth_three_way.h │ │ │ │ ├── three_way_comparable.h │ │ │ │ └── weak_order.h │ │ │ ├── __concepts │ │ │ │ ├── arithmetic.h │ │ │ │ ├── assignable.h │ │ │ │ ├── boolean_testable.h │ │ │ │ ├── class_or_enum.h │ │ │ │ ├── common_reference_with.h │ │ │ │ ├── common_with.h │ │ │ │ ├── constructible.h │ │ │ │ ├── convertible_to.h │ │ │ │ ├── copyable.h │ │ │ │ ├── derived_from.h │ │ │ │ ├── destructible.h │ │ │ │ ├── different_from.h │ │ │ │ ├── equality_comparable.h │ │ │ │ ├── invocable.h │ │ │ │ ├── movable.h │ │ │ │ ├── predicate.h │ │ │ │ ├── regular.h │ │ │ │ ├── relation.h │ │ │ │ ├── same_as.h │ │ │ │ ├── semiregular.h │ │ │ │ ├── swappable.h │ │ │ │ └── totally_ordered.h │ │ │ ├── __coroutine │ │ │ │ ├── coroutine_handle.h │ │ │ │ ├── coroutine_traits.h │ │ │ │ ├── noop_coroutine_handle.h │ │ │ │ └── trivial_awaitables.h │ │ │ ├── __debug_utils │ │ │ │ └── randomize_range.h │ │ │ ├── __filesystem │ │ │ │ ├── copy_options.h │ │ │ │ ├── directory_entry.h │ │ │ │ ├── directory_iterator.h │ │ │ │ ├── directory_options.h │ │ │ │ ├── file_status.h │ │ │ │ ├── file_time_type.h │ │ │ │ ├── file_type.h │ │ │ │ ├── filesystem_error.h │ │ │ │ ├── operations.h │ │ │ │ ├── path.h │ │ │ │ ├── path_iterator.h │ │ │ │ ├── perm_options.h │ │ │ │ ├── perms.h │ │ │ │ ├── recursive_directory_iterator.h │ │ │ │ ├── space_info.h │ │ │ │ └── u8path.h │ │ │ ├── __format │ │ │ │ ├── buffer.h │ │ │ │ ├── concepts.h │ │ │ │ ├── enable_insertable.h │ │ │ │ ├── extended_grapheme_cluster_table.h │ │ │ │ ├── format_arg.h │ │ │ │ ├── format_arg_store.h │ │ │ │ ├── format_args.h │ │ │ │ ├── format_context.h │ │ │ │ ├── format_error.h │ │ │ │ ├── format_fwd.h │ │ │ │ ├── format_parse_context.h │ │ │ │ ├── format_string.h │ │ │ │ ├── format_to_n_result.h │ │ │ │ ├── formatter.h │ │ │ │ ├── formatter_bool.h │ │ │ │ ├── formatter_char.h │ │ │ │ ├── formatter_floating_point.h │ │ │ │ ├── formatter_integer.h │ │ │ │ ├── formatter_integral.h │ │ │ │ ├── formatter_output.h │ │ │ │ ├── formatter_pointer.h │ │ │ │ ├── formatter_string.h │ │ │ │ ├── parser_std_format_spec.h │ │ │ │ └── unicode.h │ │ │ ├── __functional │ │ │ │ ├── binary_function.h │ │ │ │ ├── binary_negate.h │ │ │ │ ├── bind.h │ │ │ │ ├── bind_back.h │ │ │ │ ├── bind_front.h │ │ │ │ ├── binder1st.h │ │ │ │ ├── binder2nd.h │ │ │ │ ├── boyer_moore_searcher.h │ │ │ │ ├── compose.h │ │ │ │ ├── default_searcher.h │ │ │ │ ├── function.h │ │ │ │ ├── hash.h │ │ │ │ ├── identity.h │ │ │ │ ├── invoke.h │ │ │ │ ├── is_transparent.h │ │ │ │ ├── mem_fn.h │ │ │ │ ├── mem_fun_ref.h │ │ │ │ ├── not_fn.h │ │ │ │ ├── operations.h │ │ │ │ ├── perfect_forward.h │ │ │ │ ├── pointer_to_binary_function.h │ │ │ │ ├── pointer_to_unary_function.h │ │ │ │ ├── ranges_operations.h │ │ │ │ ├── reference_wrapper.h │ │ │ │ ├── unary_function.h │ │ │ │ ├── unary_negate.h │ │ │ │ ├── unwrap_ref.h │ │ │ │ └── weak_result_type.h │ │ │ ├── __fwd │ │ │ │ ├── span.h │ │ │ │ └── string_view.h │ │ │ ├── __ios │ │ │ │ └── fpos.h │ │ │ ├── __iterator │ │ │ │ ├── access.h │ │ │ │ ├── advance.h │ │ │ │ ├── back_insert_iterator.h │ │ │ │ ├── bounded_iter.h │ │ │ │ ├── common_iterator.h │ │ │ │ ├── concepts.h │ │ │ │ ├── counted_iterator.h │ │ │ │ ├── data.h │ │ │ │ ├── default_sentinel.h │ │ │ │ ├── distance.h │ │ │ │ ├── empty.h │ │ │ │ ├── erase_if_container.h │ │ │ │ ├── front_insert_iterator.h │ │ │ │ ├── incrementable_traits.h │ │ │ │ ├── indirectly_comparable.h │ │ │ │ ├── insert_iterator.h │ │ │ │ ├── istream_iterator.h │ │ │ │ ├── istreambuf_iterator.h │ │ │ │ ├── iter_move.h │ │ │ │ ├── iter_swap.h │ │ │ │ ├── iterator.h │ │ │ │ ├── iterator_traits.h │ │ │ │ ├── mergeable.h │ │ │ │ ├── move_iterator.h │ │ │ │ ├── move_sentinel.h │ │ │ │ ├── next.h │ │ │ │ ├── ostream_iterator.h │ │ │ │ ├── ostreambuf_iterator.h │ │ │ │ ├── permutable.h │ │ │ │ ├── prev.h │ │ │ │ ├── projected.h │ │ │ │ ├── readable_traits.h │ │ │ │ ├── reverse_access.h │ │ │ │ ├── reverse_iterator.h │ │ │ │ ├── size.h │ │ │ │ ├── sortable.h │ │ │ │ ├── unreachable_sentinel.h │ │ │ │ └── wrap_iter.h │ │ │ ├── __mbstate_t.h │ │ │ ├── __memory │ │ │ │ ├── addressof.h │ │ │ │ ├── allocate_at_least.h │ │ │ │ ├── allocation_guard.h │ │ │ │ ├── allocator.h │ │ │ │ ├── allocator_arg_t.h │ │ │ │ ├── allocator_traits.h │ │ │ │ ├── assume_aligned.h │ │ │ │ ├── auto_ptr.h │ │ │ │ ├── compressed_pair.h │ │ │ │ ├── concepts.h │ │ │ │ ├── construct_at.h │ │ │ │ ├── pointer_traits.h │ │ │ │ ├── ranges_construct_at.h │ │ │ │ ├── ranges_uninitialized_algorithms.h │ │ │ │ ├── raw_storage_iterator.h │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── swap_allocator.h │ │ │ │ ├── temporary_buffer.h │ │ │ │ ├── uninitialized_algorithms.h │ │ │ │ ├── unique_ptr.h │ │ │ │ ├── uses_allocator.h │ │ │ │ └── voidify.h │ │ │ ├── __numeric │ │ │ │ ├── accumulate.h │ │ │ │ ├── adjacent_difference.h │ │ │ │ ├── exclusive_scan.h │ │ │ │ ├── gcd_lcm.h │ │ │ │ ├── inclusive_scan.h │ │ │ │ ├── inner_product.h │ │ │ │ ├── iota.h │ │ │ │ ├── midpoint.h │ │ │ │ ├── partial_sum.h │ │ │ │ ├── reduce.h │ │ │ │ ├── transform_exclusive_scan.h │ │ │ │ ├── transform_inclusive_scan.h │ │ │ │ └── transform_reduce.h │ │ │ ├── __random │ │ │ │ ├── bernoulli_distribution.h │ │ │ │ ├── binomial_distribution.h │ │ │ │ ├── cauchy_distribution.h │ │ │ │ ├── chi_squared_distribution.h │ │ │ │ ├── clamp_to_integral.h │ │ │ │ ├── default_random_engine.h │ │ │ │ ├── discard_block_engine.h │ │ │ │ ├── discrete_distribution.h │ │ │ │ ├── exponential_distribution.h │ │ │ │ ├── extreme_value_distribution.h │ │ │ │ ├── fisher_f_distribution.h │ │ │ │ ├── gamma_distribution.h │ │ │ │ ├── generate_canonical.h │ │ │ │ ├── geometric_distribution.h │ │ │ │ ├── independent_bits_engine.h │ │ │ │ ├── is_seed_sequence.h │ │ │ │ ├── is_valid.h │ │ │ │ ├── knuth_b.h │ │ │ │ ├── linear_congruential_engine.h │ │ │ │ ├── log2.h │ │ │ │ ├── lognormal_distribution.h │ │ │ │ ├── mersenne_twister_engine.h │ │ │ │ ├── negative_binomial_distribution.h │ │ │ │ ├── normal_distribution.h │ │ │ │ ├── piecewise_constant_distribution.h │ │ │ │ ├── piecewise_linear_distribution.h │ │ │ │ ├── poisson_distribution.h │ │ │ │ ├── random_device.h │ │ │ │ ├── ranlux.h │ │ │ │ ├── seed_seq.h │ │ │ │ ├── shuffle_order_engine.h │ │ │ │ ├── student_t_distribution.h │ │ │ │ ├── subtract_with_carry_engine.h │ │ │ │ ├── uniform_int_distribution.h │ │ │ │ ├── uniform_random_bit_generator.h │ │ │ │ ├── uniform_real_distribution.h │ │ │ │ └── weibull_distribution.h │ │ │ ├── __ranges │ │ │ │ ├── access.h │ │ │ │ ├── all.h │ │ │ │ ├── common_view.h │ │ │ │ ├── concepts.h │ │ │ │ ├── copyable_box.h │ │ │ │ ├── counted.h │ │ │ │ ├── dangling.h │ │ │ │ ├── data.h │ │ │ │ ├── drop_view.h │ │ │ │ ├── empty.h │ │ │ │ ├── empty_view.h │ │ │ │ ├── enable_borrowed_range.h │ │ │ │ ├── enable_view.h │ │ │ │ ├── filter_view.h │ │ │ │ ├── iota_view.h │ │ │ │ ├── join_view.h │ │ │ │ ├── lazy_split_view.h │ │ │ │ ├── non_propagating_cache.h │ │ │ │ ├── owning_view.h │ │ │ │ ├── range_adaptor.h │ │ │ │ ├── rbegin.h │ │ │ │ ├── ref_view.h │ │ │ │ ├── rend.h │ │ │ │ ├── reverse_view.h │ │ │ │ ├── single_view.h │ │ │ │ ├── size.h │ │ │ │ ├── subrange.h │ │ │ │ ├── take_view.h │ │ │ │ ├── transform_view.h │ │ │ │ ├── view_interface.h │ │ │ │ ├── views.h │ │ │ │ └── zip_view.h │ │ │ ├── __string │ │ │ │ ├── char_traits.h │ │ │ │ └── extern_template_lists.h │ │ │ ├── __support │ │ │ │ ├── android │ │ │ │ │ └── locale_bionic.h │ │ │ │ ├── fuchsia │ │ │ │ │ └── xlocale.h │ │ │ │ ├── ibm │ │ │ │ │ ├── gettod_zos.h │ │ │ │ │ ├── locale_mgmt_zos.h │ │ │ │ │ ├── nanosleep.h │ │ │ │ │ └── xlocale.h │ │ │ │ ├── musl │ │ │ │ │ └── xlocale.h │ │ │ │ ├── newlib │ │ │ │ │ └── xlocale.h │ │ │ │ ├── openbsd │ │ │ │ │ └── xlocale.h │ │ │ │ ├── solaris │ │ │ │ │ ├── floatingpoint.h │ │ │ │ │ ├── wchar.h │ │ │ │ │ └── xlocale.h │ │ │ │ ├── win32 │ │ │ │ │ ├── limits_msvc_win32.h │ │ │ │ │ └── locale_win32.h │ │ │ │ └── xlocale │ │ │ │ │ ├── __nop_locale_mgmt.h │ │ │ │ │ ├── __posix_l_fallback.h │ │ │ │ │ └── __strtonum_fallback.h │ │ │ ├── __thread │ │ │ │ ├── poll_with_backoff.h │ │ │ │ └── timed_backoff_policy.h │ │ │ ├── __type_traits │ │ │ │ ├── add_const.h │ │ │ │ ├── add_cv.h │ │ │ │ ├── add_lvalue_reference.h │ │ │ │ ├── add_pointer.h │ │ │ │ ├── add_rvalue_reference.h │ │ │ │ ├── add_volatile.h │ │ │ │ ├── aligned_storage.h │ │ │ │ ├── aligned_union.h │ │ │ │ ├── alignment_of.h │ │ │ │ ├── apply_cv.h │ │ │ │ ├── common_reference.h │ │ │ │ ├── common_type.h │ │ │ │ ├── conditional.h │ │ │ │ ├── conjunction.h │ │ │ │ ├── copy_cv.h │ │ │ │ ├── copy_cvref.h │ │ │ │ ├── decay.h │ │ │ │ ├── disjunction.h │ │ │ │ ├── enable_if.h │ │ │ │ ├── extent.h │ │ │ │ ├── has_unique_object_representation.h │ │ │ │ ├── has_virtual_destructor.h │ │ │ │ ├── integral_constant.h │ │ │ │ ├── is_abstract.h │ │ │ │ ├── is_aggregate.h │ │ │ │ ├── is_arithmetic.h │ │ │ │ ├── is_array.h │ │ │ │ ├── is_assignable.h │ │ │ │ ├── is_base_of.h │ │ │ │ ├── is_bounded_array.h │ │ │ │ ├── is_callable.h │ │ │ │ ├── is_class.h │ │ │ │ ├── is_compound.h │ │ │ │ ├── is_const.h │ │ │ │ ├── is_constant_evaluated.h │ │ │ │ ├── is_constructible.h │ │ │ │ ├── is_convertible.h │ │ │ │ ├── is_copy_assignable.h │ │ │ │ ├── is_copy_constructible.h │ │ │ │ ├── is_core_convertible.h │ │ │ │ ├── is_default_constructible.h │ │ │ │ ├── is_destructible.h │ │ │ │ ├── is_empty.h │ │ │ │ ├── is_enum.h │ │ │ │ ├── is_final.h │ │ │ │ ├── is_floating_point.h │ │ │ │ ├── is_function.h │ │ │ │ ├── is_fundamental.h │ │ │ │ ├── is_integral.h │ │ │ │ ├── is_literal_type.h │ │ │ │ ├── is_member_function_pointer.h │ │ │ │ ├── is_member_object_pointer.h │ │ │ │ ├── is_member_pointer.h │ │ │ │ ├── is_move_assignable.h │ │ │ │ ├── is_move_constructible.h │ │ │ │ ├── is_nothrow_assignable.h │ │ │ │ ├── is_nothrow_constructible.h │ │ │ │ ├── is_nothrow_convertible.h │ │ │ │ ├── is_nothrow_copy_assignable.h │ │ │ │ ├── is_nothrow_copy_constructible.h │ │ │ │ ├── is_nothrow_default_constructible.h │ │ │ │ ├── is_nothrow_destructible.h │ │ │ │ ├── is_nothrow_move_assignable.h │ │ │ │ ├── is_nothrow_move_constructible.h │ │ │ │ ├── is_null_pointer.h │ │ │ │ ├── is_object.h │ │ │ │ ├── is_pod.h │ │ │ │ ├── is_pointer.h │ │ │ │ ├── is_polymorphic.h │ │ │ │ ├── is_primary_template.h │ │ │ │ ├── is_reference.h │ │ │ │ ├── is_reference_wrapper.h │ │ │ │ ├── is_referenceable.h │ │ │ │ ├── is_same.h │ │ │ │ ├── is_scalar.h │ │ │ │ ├── is_scoped_enum.h │ │ │ │ ├── is_signed.h │ │ │ │ ├── is_signed_integer.h │ │ │ │ ├── is_standard_layout.h │ │ │ │ ├── is_trivial.h │ │ │ │ ├── is_trivially_assignable.h │ │ │ │ ├── is_trivially_constructible.h │ │ │ │ ├── is_trivially_copy_assignable.h │ │ │ │ ├── is_trivially_copy_constructible.h │ │ │ │ ├── is_trivially_copyable.h │ │ │ │ ├── is_trivially_default_constructible.h │ │ │ │ ├── is_trivially_destructible.h │ │ │ │ ├── is_trivially_move_assignable.h │ │ │ │ ├── is_trivially_move_constructible.h │ │ │ │ ├── is_unbounded_array.h │ │ │ │ ├── is_union.h │ │ │ │ ├── is_unsigned.h │ │ │ │ ├── is_unsigned_integer.h │ │ │ │ ├── is_valid_expansion.h │ │ │ │ ├── is_void.h │ │ │ │ ├── is_volatile.h │ │ │ │ ├── lazy.h │ │ │ │ ├── make_32_64_or_128_bit.h │ │ │ │ ├── make_signed.h │ │ │ │ ├── make_unsigned.h │ │ │ │ ├── nat.h │ │ │ │ ├── negation.h │ │ │ │ ├── promote.h │ │ │ │ ├── rank.h │ │ │ │ ├── remove_all_extents.h │ │ │ │ ├── remove_const.h │ │ │ │ ├── remove_cv.h │ │ │ │ ├── remove_cvref.h │ │ │ │ ├── remove_extent.h │ │ │ │ ├── remove_pointer.h │ │ │ │ ├── remove_reference.h │ │ │ │ ├── remove_volatile.h │ │ │ │ ├── type_identity.h │ │ │ │ ├── type_list.h │ │ │ │ ├── underlying_type.h │ │ │ │ └── void_t.h │ │ │ ├── __utility │ │ │ │ ├── as_const.h │ │ │ │ ├── auto_cast.h │ │ │ │ ├── cmp.h │ │ │ │ ├── declval.h │ │ │ │ ├── exchange.h │ │ │ │ ├── forward.h │ │ │ │ ├── in_place.h │ │ │ │ ├── integer_sequence.h │ │ │ │ ├── move.h │ │ │ │ ├── pair.h │ │ │ │ ├── piecewise_construct.h │ │ │ │ ├── priority_tag.h │ │ │ │ ├── rel_ops.h │ │ │ │ ├── swap.h │ │ │ │ ├── to_underlying.h │ │ │ │ ├── transaction.h │ │ │ │ └── unreachable.h │ │ │ ├── __variant │ │ │ │ └── monostate.h │ │ │ ├── complex.h │ │ │ ├── ctype.h │ │ │ ├── errno.h │ │ │ ├── fenv.h │ │ │ ├── float.h │ │ │ ├── inttypes.h │ │ │ ├── limits.h │ │ │ ├── locale.h │ │ │ ├── math.h │ │ │ ├── setjmp.h │ │ │ ├── stdatomic.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── tgmath.h │ │ │ ├── uchar.h │ │ │ ├── wchar.h │ │ │ └── wctype.h │ │ │ ├── src │ │ │ ├── chrono_system_time_init.h │ │ │ ├── experimental │ │ │ │ └── memory_resource_init_helper.h │ │ │ ├── filesystem │ │ │ │ ├── filesystem_common.h │ │ │ │ └── posix_compat.h │ │ │ ├── include │ │ │ │ ├── apple_availability.h │ │ │ │ ├── atomic_support.h │ │ │ │ ├── config_elast.h │ │ │ │ ├── refstring.h │ │ │ │ ├── ryu │ │ │ │ │ ├── common.h │ │ │ │ │ ├── d2fixed.h │ │ │ │ │ ├── d2fixed_full_table.h │ │ │ │ │ ├── d2s.h │ │ │ │ │ ├── d2s_full_table.h │ │ │ │ │ ├── d2s_intrinsics.h │ │ │ │ │ ├── digit_table.h │ │ │ │ │ ├── f2s.h │ │ │ │ │ └── ryu.h │ │ │ │ ├── sso_allocator.h │ │ │ │ └── to_chars_floating_point.h │ │ │ └── iostream_init.h │ │ │ └── test │ │ │ ├── libcxx │ │ │ ├── fuzzing │ │ │ │ └── fuzz.h │ │ │ ├── ranges │ │ │ │ └── range.adaptors │ │ │ │ │ ├── range.copy.wrap │ │ │ │ │ └── types.h │ │ │ │ │ └── range.lazy.split │ │ │ │ │ └── types.h │ │ │ └── utilities │ │ │ │ ├── format │ │ │ │ └── format.string │ │ │ │ │ └── format.string.std │ │ │ │ │ ├── concepts_precision.h │ │ │ │ │ ├── extended_grapheme_cluster.h │ │ │ │ │ └── test_exception.h │ │ │ │ └── function.objects │ │ │ │ └── func.require │ │ │ │ └── invoke_helpers.h │ │ │ ├── std │ │ │ ├── algorithms │ │ │ │ └── alg.sorting │ │ │ │ │ └── sortable_helpers.h │ │ │ ├── concepts │ │ │ │ └── concepts.lang │ │ │ │ │ └── concepts.arithmetic │ │ │ │ │ └── arithmetic.h │ │ │ ├── containers │ │ │ │ ├── Copyable.h │ │ │ │ ├── Emplaceable.h │ │ │ │ ├── NotConstructible.h │ │ │ │ ├── check_consecutive.h │ │ │ │ ├── map_allocator_requirement_test_templates.h │ │ │ │ ├── set_allocator_requirement_test_templates.h │ │ │ │ ├── test_compare.h │ │ │ │ └── test_hash.h │ │ │ ├── depr │ │ │ │ ├── depr.auto.ptr │ │ │ │ │ └── auto.ptr │ │ │ │ │ │ ├── A.h │ │ │ │ │ │ └── AB.h │ │ │ │ └── depr.lib.binders │ │ │ │ │ └── test_func.h │ │ │ ├── input.output │ │ │ │ └── filesystems │ │ │ │ │ └── fs.enum │ │ │ │ │ └── check_bitmask_types.h │ │ │ ├── iterators │ │ │ │ ├── iterator.primitives │ │ │ │ │ └── range.iter.ops │ │ │ │ │ │ └── types.h │ │ │ │ ├── iterator.requirements │ │ │ │ │ ├── iterator.concepts │ │ │ │ │ │ └── incrementable.h │ │ │ │ │ └── iterator.cust │ │ │ │ │ │ └── unqualified_lookup_wrapper.h │ │ │ │ └── predef.iterators │ │ │ │ │ └── iterators.common │ │ │ │ │ └── types.h │ │ │ ├── numerics │ │ │ │ ├── complex.number │ │ │ │ │ └── cases.h │ │ │ │ └── numarray │ │ │ │ │ └── valarray.nonmembers │ │ │ │ │ └── valarray.transcend │ │ │ │ │ └── valarray_helper.h │ │ │ ├── ranges │ │ │ │ ├── range.adaptors │ │ │ │ │ ├── range.common.view │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── range.drop │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── range.filter │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── range.join.view │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── range.lazy.split │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── range.reverse │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── range.take │ │ │ │ │ │ └── types.h │ │ │ │ │ ├── range.transform │ │ │ │ │ │ └── types.h │ │ │ │ │ └── range.zip │ │ │ │ │ │ └── types.h │ │ │ │ ├── range.factories │ │ │ │ │ └── range.iota.view │ │ │ │ │ │ └── types.h │ │ │ │ └── range.utility │ │ │ │ │ └── range.subrange │ │ │ │ │ └── types.h │ │ │ ├── strings │ │ │ │ └── basic.string │ │ │ │ │ └── test_traits.h │ │ │ ├── time │ │ │ │ ├── clock.h │ │ │ │ ├── rep.h │ │ │ │ └── time.cal │ │ │ │ │ └── euclidian.h │ │ │ └── utilities │ │ │ │ ├── format │ │ │ │ └── format.functions │ │ │ │ │ └── format_tests.h │ │ │ │ ├── function.objects │ │ │ │ └── func.wrap │ │ │ │ │ └── func.wrap.func │ │ │ │ │ └── function_types.h │ │ │ │ ├── memory │ │ │ │ ├── allocator.traits │ │ │ │ │ └── allocator.traits.members │ │ │ │ │ │ └── incomplete_type_helper.h │ │ │ │ ├── specialized.algorithms │ │ │ │ │ ├── buffer.h │ │ │ │ │ └── counted.h │ │ │ │ └── util.smartptr │ │ │ │ │ └── util.smartptr.shared │ │ │ │ │ └── util.smartptr.shared.create │ │ │ │ │ └── types.h │ │ │ │ ├── template.bitset │ │ │ │ └── bitset_test_cases.h │ │ │ │ └── tuple │ │ │ │ └── tuple.tuple │ │ │ │ ├── alloc_first.h │ │ │ │ ├── alloc_last.h │ │ │ │ ├── tuple.assign │ │ │ │ └── types.h │ │ │ │ └── tuple.cnstr │ │ │ │ └── convert_types.h │ │ │ └── support │ │ │ ├── Counter.h │ │ │ ├── DefaultOnly.h │ │ │ ├── MoveOnly.h │ │ │ ├── allocators.h │ │ │ ├── almost_satisfies_types.h │ │ │ ├── any_helpers.h │ │ │ ├── archetypes.h │ │ │ ├── asan_testing.h │ │ │ ├── atomic_helpers.h │ │ │ ├── boolean_testable.h │ │ │ ├── callable_types.h │ │ │ ├── charconv_test_helpers.h │ │ │ ├── check_assertion.h │ │ │ ├── cmpxchg_loop.h │ │ │ ├── compare_types.h │ │ │ ├── constexpr_char_traits.h │ │ │ ├── container_debug_tests.h │ │ │ ├── container_test_types.h │ │ │ ├── controlled_allocators.h │ │ │ ├── count_new.h │ │ │ ├── counting_predicates.h │ │ │ ├── counting_projection.h │ │ │ ├── deduction_guides_sfinae_checks.h │ │ │ ├── deleter_types.h │ │ │ ├── emplace_constructible.h │ │ │ ├── experimental_any_helpers.h │ │ │ ├── filesystem_include.h │ │ │ ├── filesystem_test_helper.h │ │ │ ├── format_string.h │ │ │ ├── fp_compare.h │ │ │ ├── hexfloat.h │ │ │ ├── indirectly_readable.h │ │ │ ├── is_transparent.h │ │ │ ├── iterator_traits_cpp17_iterators.h │ │ │ ├── locale_helpers.h │ │ │ ├── make_implicit.h │ │ │ ├── make_string.h │ │ │ ├── make_test_thread.h │ │ │ ├── min_allocator.h │ │ │ ├── msvc_stdlib_force_include.h │ │ │ ├── nasty_containers.h │ │ │ ├── operator_hijacker.h │ │ │ ├── parse_integer.h │ │ │ ├── platform_support.h │ │ │ ├── pointer_comparison_test_helper.h │ │ │ ├── poisoned_hash_helper.h │ │ │ ├── private_constructor.h │ │ │ ├── propagate_const_helpers.h │ │ │ ├── rapid-cxx-test.h │ │ │ ├── read_write.h │ │ │ ├── set_windows_crt_report_mode.h │ │ │ ├── string_literal.h │ │ │ ├── template_cost_testing.h │ │ │ ├── test_allocator.h │ │ │ ├── test_basic_format_arg.h │ │ │ ├── test_comparisons.h │ │ │ ├── test_constexpr_container.h │ │ │ ├── test_convertible.h │ │ │ ├── test_format_context.h │ │ │ ├── test_iterators.h │ │ │ ├── test_macros.h │ │ │ ├── test_memory_resource.h │ │ │ ├── test_range.h │ │ │ ├── test_transparent_unordered.h │ │ │ ├── test_workarounds.h │ │ │ ├── truncate_fp.h │ │ │ ├── type_classification │ │ │ ├── copyable.h │ │ │ ├── movable.h │ │ │ ├── moveconstructible.h │ │ │ ├── semiregular.h │ │ │ └── swappable.h │ │ │ ├── type_id.h │ │ │ ├── unique_ptr_test_helper.h │ │ │ ├── user_defined_integral.h │ │ │ ├── uses_alloc_types.h │ │ │ └── variant_test_helpers.h │ │ ├── libc++abi │ │ └── trunk │ │ │ ├── include │ │ │ ├── __cxxabi_config.h │ │ │ └── cxxabi.h │ │ │ ├── src │ │ │ ├── abort_message.h │ │ │ ├── cxa_exception.h │ │ │ ├── cxa_guard_impl.h │ │ │ ├── cxa_handlers.h │ │ │ ├── demangle │ │ │ │ ├── DemangleConfig.h │ │ │ │ ├── ItaniumDemangle.h │ │ │ │ ├── StringView.h │ │ │ │ └── Utility.h │ │ │ ├── fallback_malloc.h │ │ │ └── private_typeinfo.h │ │ │ └── test │ │ │ └── support │ │ │ └── timer.h │ │ └── libunwind │ │ └── trunk │ │ ├── include │ │ ├── __libunwind_config.h │ │ ├── libunwind.h │ │ ├── mach-o │ │ │ └── compact_unwind_encoding.h │ │ ├── unwind.h │ │ ├── unwind_arm_ehabi.h │ │ └── unwind_itanium.h │ │ └── src │ │ ├── Unwind-EHABI.h │ │ ├── assembly.h │ │ ├── cet_unwind.h │ │ ├── config.h │ │ ├── dwarf2.h │ │ └── libunwind_ext.h ├── call │ ├── adaptation │ │ ├── adaptation_constraint.h │ │ ├── broadcast_resource_listener.h │ │ ├── degradation_preference_provider.h │ │ ├── encoder_settings.h │ │ ├── resource_adaptation_processor.h │ │ ├── resource_adaptation_processor_interface.h │ │ ├── test │ │ │ ├── fake_adaptation_constraint.h │ │ │ ├── fake_frame_rate_provider.h │ │ │ ├── fake_resource.h │ │ │ ├── fake_video_stream_input_state_provider.h │ │ │ └── mock_resource_listener.h │ │ ├── video_source_restrictions.h │ │ ├── video_stream_adapter.h │ │ ├── video_stream_input_state.h │ │ └── video_stream_input_state_provider.h │ ├── audio_receive_stream.h │ ├── audio_send_stream.h │ ├── audio_sender.h │ ├── audio_state.h │ ├── bitrate_allocator.h │ ├── call.h │ ├── call_config.h │ ├── call_factory.h │ ├── degraded_call.h │ ├── fake_network_pipe.h │ ├── flexfec_receive_stream.h │ ├── flexfec_receive_stream_impl.h │ ├── packet_receiver.h │ ├── rampup_tests.h │ ├── receive_stream.h │ ├── receive_time_calculator.h │ ├── rtp_bitrate_configurator.h │ ├── rtp_config.h │ ├── rtp_demuxer.h │ ├── rtp_packet_sink_interface.h │ ├── rtp_payload_params.h │ ├── rtp_stream_receiver_controller.h │ ├── rtp_stream_receiver_controller_interface.h │ ├── rtp_transport_config.h │ ├── rtp_transport_controller_send.h │ ├── rtp_transport_controller_send_factory.h │ ├── rtp_transport_controller_send_factory_interface.h │ ├── rtp_transport_controller_send_interface.h │ ├── rtp_video_sender.h │ ├── rtp_video_sender_interface.h │ ├── rtx_receive_stream.h │ ├── simulated_network.h │ ├── simulated_packet_receiver.h │ ├── syncable.h │ ├── test │ │ ├── mock_audio_send_stream.h │ │ ├── mock_bitrate_allocator.h │ │ ├── mock_rtp_packet_sink_interface.h │ │ └── mock_rtp_transport_controller_send.h │ ├── version.h │ ├── video_receive_stream.h │ └── video_send_stream.h ├── common_audio │ ├── audio_converter.h │ ├── channel_buffer.h │ ├── fir_filter.h │ ├── fir_filter_avx2.h │ ├── fir_filter_c.h │ ├── fir_filter_factory.h │ ├── fir_filter_neon.h │ ├── fir_filter_sse.h │ ├── include │ │ └── audio_util.h │ ├── mocks │ │ └── mock_smoothing_filter.h │ ├── real_fourier.h │ ├── real_fourier_ooura.h │ ├── resampler │ │ ├── include │ │ │ ├── push_resampler.h │ │ │ └── resampler.h │ │ ├── push_sinc_resampler.h │ │ ├── sinc_resampler.h │ │ └── sinusoidal_linear_chirp_source.h │ ├── ring_buffer.h │ ├── signal_processing │ │ ├── complex_fft_tables.h │ │ ├── dot_product_with_scale.h │ │ ├── include │ │ │ ├── real_fft.h │ │ │ ├── signal_processing_library.h │ │ │ ├── spl_inl.h │ │ │ ├── spl_inl_armv7.h │ │ │ └── spl_inl_mips.h │ │ └── resample_by_2_internal.h │ ├── smoothing_filter.h │ ├── third_party │ │ ├── ooura │ │ │ ├── fft_size_128 │ │ │ │ ├── ooura_fft.h │ │ │ │ ├── ooura_fft_tables_common.h │ │ │ │ └── ooura_fft_tables_neon_sse2.h │ │ │ └── fft_size_256 │ │ │ │ └── fft4g.h │ │ └── spl_sqrt_floor │ │ │ └── spl_sqrt_floor.h │ ├── vad │ │ ├── include │ │ │ ├── vad.h │ │ │ └── webrtc_vad.h │ │ ├── mock │ │ │ └── mock_vad.h │ │ ├── vad_core.h │ │ ├── vad_filterbank.h │ │ ├── vad_gmm.h │ │ ├── vad_sp.h │ │ └── vad_unittest.h │ ├── wav_file.h │ ├── wav_header.h │ └── window_generator.h ├── common_video │ ├── frame_counts.h │ ├── frame_rate_estimator.h │ ├── framerate_controller.h │ ├── generic_frame_descriptor │ │ └── generic_frame_info.h │ ├── h264 │ │ ├── h264_bitstream_parser.h │ │ ├── h264_common.h │ │ ├── pps_parser.h │ │ ├── sps_parser.h │ │ └── sps_vui_rewriter.h │ ├── include │ │ ├── bitrate_adjuster.h │ │ ├── incoming_video_stream.h │ │ ├── quality_limitation_reason.h │ │ ├── video_frame_buffer.h │ │ └── video_frame_buffer_pool.h │ ├── libyuv │ │ └── include │ │ │ └── webrtc_libyuv.h │ ├── test │ │ └── utilities.h │ └── video_render_frames.h ├── examples │ ├── androidnativeapi │ │ └── jni │ │ │ └── android_call_client.h │ ├── androidvoip │ │ └── jni │ │ │ └── android_voip_client.h │ ├── objc │ │ └── AppRTCMobile │ │ │ ├── ARDAppClient+Internal.h │ │ │ ├── ARDAppClient.h │ │ │ ├── ARDAppEngineClient.h │ │ │ ├── ARDCaptureController.h │ │ │ ├── ARDExternalSampleCapturer.h │ │ │ ├── ARDJoinResponse+Internal.h │ │ │ ├── ARDJoinResponse.h │ │ │ ├── ARDMessageResponse+Internal.h │ │ │ ├── ARDMessageResponse.h │ │ │ ├── ARDRoomServerClient.h │ │ │ ├── ARDSettingsModel+Private.h │ │ │ ├── ARDSettingsModel.h │ │ │ ├── ARDSettingsStore.h │ │ │ ├── ARDSignalingChannel.h │ │ │ ├── ARDSignalingMessage.h │ │ │ ├── ARDStatsBuilder.h │ │ │ ├── ARDTURNClient+Internal.h │ │ │ ├── ARDTURNClient.h │ │ │ ├── ARDWebSocketChannel.h │ │ │ ├── RTCIceCandidate+JSON.h │ │ │ ├── RTCIceServer+JSON.h │ │ │ ├── RTCSessionDescription+JSON.h │ │ │ ├── common │ │ │ └── ARDUtilities.h │ │ │ ├── ios │ │ │ ├── ARDAppDelegate.h │ │ │ ├── ARDFileCaptureController.h │ │ │ ├── ARDMainView.h │ │ │ ├── ARDMainViewController.h │ │ │ ├── ARDSettingsViewController.h │ │ │ ├── ARDStatsView.h │ │ │ ├── ARDVideoCallView.h │ │ │ ├── ARDVideoCallViewController.h │ │ │ ├── RTCVideoCodecInfo+HumanReadable.h │ │ │ ├── UIImage+ARDUtilities.h │ │ │ └── broadcast_extension │ │ │ │ ├── ARDBroadcastSampleHandler.h │ │ │ │ └── ARDBroadcastSetupViewController.h │ │ │ ├── mac │ │ │ ├── APPRTCAppDelegate.h │ │ │ └── APPRTCViewController.h │ │ │ └── third_party │ │ │ └── SocketRocket │ │ │ └── SRWebSocket.h │ ├── objcnativeapi │ │ └── objc │ │ │ ├── NADAppDelegate.h │ │ │ ├── NADViewController.h │ │ │ └── objc_call_client.h │ ├── peerconnection │ │ ├── client │ │ │ ├── conductor.h │ │ │ ├── defaults.h │ │ │ ├── flag_defs.h │ │ │ ├── linux │ │ │ │ └── main_wnd.h │ │ │ ├── main_wnd.h │ │ │ └── peer_connection_client.h │ │ └── server │ │ │ ├── data_socket.h │ │ │ ├── peer_channel.h │ │ │ └── utils.h │ ├── turnserver │ │ └── read_auth_file.h │ └── unityplugin │ │ ├── class_reference_holder.h │ │ ├── simple_peer_connection.h │ │ ├── unity_plugin_apis.h │ │ └── video_observer.h ├── libyuv.h ├── libyuv │ ├── basic_types.h │ ├── compare.h │ ├── compare_row.h │ ├── convert.h │ ├── convert_argb.h │ ├── convert_from.h │ ├── convert_from_argb.h │ ├── cpu_id.h │ ├── loongson_intrinsics.h │ ├── macros_msa.h │ ├── mjpeg_decoder.h │ ├── planar_functions.h │ ├── rotate.h │ ├── rotate_argb.h │ ├── rotate_row.h │ ├── row.h │ ├── scale.h │ ├── scale_argb.h │ ├── scale_rgb.h │ ├── scale_row.h │ ├── scale_uv.h │ ├── version.h │ └── video_common.h ├── logging │ └── rtc_event_log │ │ ├── encoder │ │ ├── bit_writer.h │ │ ├── blob_encoding.h │ │ ├── delta_encoding.h │ │ ├── rtc_event_log_encoder.h │ │ ├── rtc_event_log_encoder_common.h │ │ ├── rtc_event_log_encoder_legacy.h │ │ ├── rtc_event_log_encoder_new_format.h │ │ ├── rtc_event_log_encoder_v3.h │ │ └── var_int.h │ │ ├── events │ │ ├── fixed_length_encoding_parameters_v3.h │ │ ├── logged_rtp_rtcp.h │ │ ├── rtc_event_alr_state.h │ │ ├── rtc_event_audio_network_adaptation.h │ │ ├── rtc_event_audio_playout.h │ │ ├── rtc_event_audio_receive_stream_config.h │ │ ├── rtc_event_audio_send_stream_config.h │ │ ├── rtc_event_begin_log.h │ │ ├── rtc_event_bwe_update_delay_based.h │ │ ├── rtc_event_bwe_update_loss_based.h │ │ ├── rtc_event_definition.h │ │ ├── rtc_event_dtls_transport_state.h │ │ ├── rtc_event_dtls_writable_state.h │ │ ├── rtc_event_end_log.h │ │ ├── rtc_event_field_encoding.h │ │ ├── rtc_event_field_encoding_parser.h │ │ ├── rtc_event_field_extraction.h │ │ ├── rtc_event_frame_decoded.h │ │ ├── rtc_event_generic_ack_received.h │ │ ├── rtc_event_generic_packet_received.h │ │ ├── rtc_event_generic_packet_sent.h │ │ ├── rtc_event_ice_candidate_pair.h │ │ ├── rtc_event_ice_candidate_pair_config.h │ │ ├── rtc_event_probe_cluster_created.h │ │ ├── rtc_event_probe_result_failure.h │ │ ├── rtc_event_probe_result_success.h │ │ ├── rtc_event_remote_estimate.h │ │ ├── rtc_event_route_change.h │ │ ├── rtc_event_rtcp_packet_incoming.h │ │ ├── rtc_event_rtcp_packet_outgoing.h │ │ ├── rtc_event_rtp_packet_incoming.h │ │ ├── rtc_event_rtp_packet_outgoing.h │ │ ├── rtc_event_video_receive_stream_config.h │ │ └── rtc_event_video_send_stream_config.h │ │ ├── fake_rtc_event_log.h │ │ ├── fake_rtc_event_log_factory.h │ │ ├── ice_logger.h │ │ ├── logged_events.h │ │ ├── mock │ │ └── mock_rtc_event_log.h │ │ ├── output │ │ └── rtc_event_log_output_file.h │ │ ├── rtc_event_log_impl.h │ │ ├── rtc_event_log_parser.h │ │ ├── rtc_event_log_unittest_helper.h │ │ ├── rtc_event_processor.h │ │ └── rtc_stream_config.h ├── media │ ├── base │ │ ├── adapted_video_track_source.h │ │ ├── audio_source.h │ │ ├── codec.h │ │ ├── delayable.h │ │ ├── fake_frame_source.h │ │ ├── fake_media_engine.h │ │ ├── fake_network_interface.h │ │ ├── fake_rtp.h │ │ ├── fake_video_renderer.h │ │ ├── media_channel.h │ │ ├── media_config.h │ │ ├── media_constants.h │ │ ├── media_engine.h │ │ ├── rid_description.h │ │ ├── rtp_utils.h │ │ ├── sdp_video_format_utils.h │ │ ├── stream_params.h │ │ ├── test_utils.h │ │ ├── turn_utils.h │ │ ├── video_adapter.h │ │ ├── video_broadcaster.h │ │ ├── video_common.h │ │ └── video_source_base.h │ ├── engine │ │ ├── adm_helpers.h │ │ ├── encoder_simulcast_proxy.h │ │ ├── fake_video_codec_factory.h │ │ ├── fake_webrtc_call.h │ │ ├── fake_webrtc_video_engine.h │ │ ├── internal_decoder_factory.h │ │ ├── internal_encoder_factory.h │ │ ├── multiplex_codec_factory.h │ │ ├── null_webrtc_video_engine.h │ │ ├── payload_type_mapper.h │ │ ├── simulcast.h │ │ ├── simulcast_encoder_adapter.h │ │ ├── unhandled_packets_buffer.h │ │ ├── webrtc_media_engine.h │ │ ├── webrtc_media_engine_defaults.h │ │ ├── webrtc_video_engine.h │ │ └── webrtc_voice_engine.h │ └── sctp │ │ ├── dcsctp_transport.h │ │ ├── sctp_transport_factory.h │ │ └── sctp_transport_internal.h ├── modules │ ├── async_audio_processing │ │ └── async_audio_processing.h │ ├── audio_coding │ │ ├── acm2 │ │ │ ├── acm_receive_test.h │ │ │ ├── acm_receiver.h │ │ │ ├── acm_remixing.h │ │ │ ├── acm_resampler.h │ │ │ ├── acm_send_test.h │ │ │ └── call_statistics.h │ │ ├── audio_network_adaptor │ │ │ ├── audio_network_adaptor_impl.h │ │ │ ├── bitrate_controller.h │ │ │ ├── channel_controller.h │ │ │ ├── controller.h │ │ │ ├── controller_manager.h │ │ │ ├── debug_dump_writer.h │ │ │ ├── dtx_controller.h │ │ │ ├── event_log_writer.h │ │ │ ├── fec_controller_plr_based.h │ │ │ ├── frame_length_controller.h │ │ │ ├── frame_length_controller_v2.h │ │ │ ├── include │ │ │ │ ├── audio_network_adaptor.h │ │ │ │ └── audio_network_adaptor_config.h │ │ │ ├── mock │ │ │ │ ├── mock_audio_network_adaptor.h │ │ │ │ ├── mock_controller.h │ │ │ │ ├── mock_controller_manager.h │ │ │ │ └── mock_debug_dump_writer.h │ │ │ └── util │ │ │ │ └── threshold_curve.h │ │ ├── codecs │ │ │ ├── audio_decoder.h │ │ │ ├── audio_encoder.h │ │ │ ├── cng │ │ │ │ ├── audio_encoder_cng.h │ │ │ │ └── webrtc_cng.h │ │ │ ├── g711 │ │ │ │ ├── audio_decoder_pcm.h │ │ │ │ ├── audio_encoder_pcm.h │ │ │ │ └── g711_interface.h │ │ │ ├── g722 │ │ │ │ ├── audio_decoder_g722.h │ │ │ │ ├── audio_encoder_g722.h │ │ │ │ └── g722_interface.h │ │ │ ├── ilbc │ │ │ │ ├── abs_quant.h │ │ │ │ ├── abs_quant_loop.h │ │ │ │ ├── audio_decoder_ilbc.h │ │ │ │ ├── audio_encoder_ilbc.h │ │ │ │ ├── augmented_cb_corr.h │ │ │ │ ├── bw_expand.h │ │ │ │ ├── cb_construct.h │ │ │ │ ├── cb_mem_energy.h │ │ │ │ ├── cb_mem_energy_augmentation.h │ │ │ │ ├── cb_mem_energy_calc.h │ │ │ │ ├── cb_search.h │ │ │ │ ├── cb_search_core.h │ │ │ │ ├── cb_update_best_index.h │ │ │ │ ├── chebyshev.h │ │ │ │ ├── comp_corr.h │ │ │ │ ├── constants.h │ │ │ │ ├── create_augmented_vec.h │ │ │ │ ├── decode.h │ │ │ │ ├── decode_residual.h │ │ │ │ ├── decoder_interpolate_lsf.h │ │ │ │ ├── defines.h │ │ │ │ ├── do_plc.h │ │ │ │ ├── encode.h │ │ │ │ ├── energy_inverse.h │ │ │ │ ├── enh_upsample.h │ │ │ │ ├── enhancer.h │ │ │ │ ├── enhancer_interface.h │ │ │ │ ├── filtered_cb_vecs.h │ │ │ │ ├── frame_classify.h │ │ │ │ ├── gain_dequant.h │ │ │ │ ├── gain_quant.h │ │ │ │ ├── get_cd_vec.h │ │ │ │ ├── get_lsp_poly.h │ │ │ │ ├── get_sync_seq.h │ │ │ │ ├── hp_input.h │ │ │ │ ├── hp_output.h │ │ │ │ ├── ilbc.h │ │ │ │ ├── index_conv_dec.h │ │ │ │ ├── index_conv_enc.h │ │ │ │ ├── init_decode.h │ │ │ │ ├── init_encode.h │ │ │ │ ├── interpolate.h │ │ │ │ ├── interpolate_samples.h │ │ │ │ ├── lpc_encode.h │ │ │ │ ├── lsf_check.h │ │ │ │ ├── lsf_interpolate_to_poly_dec.h │ │ │ │ ├── lsf_interpolate_to_poly_enc.h │ │ │ │ ├── lsf_to_lsp.h │ │ │ │ ├── lsf_to_poly.h │ │ │ │ ├── lsp_to_lsf.h │ │ │ │ ├── my_corr.h │ │ │ │ ├── nearest_neighbor.h │ │ │ │ ├── pack_bits.h │ │ │ │ ├── poly_to_lsf.h │ │ │ │ ├── poly_to_lsp.h │ │ │ │ ├── refiner.h │ │ │ │ ├── simple_interpolate_lsf.h │ │ │ │ ├── simple_lpc_analysis.h │ │ │ │ ├── simple_lsf_dequant.h │ │ │ │ ├── simple_lsf_quant.h │ │ │ │ ├── smooth.h │ │ │ │ ├── smooth_out_data.h │ │ │ │ ├── sort_sq.h │ │ │ │ ├── split_vq.h │ │ │ │ ├── state_construct.h │ │ │ │ ├── state_search.h │ │ │ │ ├── swap_bytes.h │ │ │ │ ├── unpack_bits.h │ │ │ │ ├── vq3.h │ │ │ │ ├── vq4.h │ │ │ │ ├── window32_w32.h │ │ │ │ └── xcorr_coef.h │ │ │ ├── isac │ │ │ │ ├── audio_decoder_isac_t.h │ │ │ │ ├── audio_decoder_isac_t_impl.h │ │ │ │ ├── audio_encoder_isac_t.h │ │ │ │ ├── audio_encoder_isac_t_impl.h │ │ │ │ ├── bandwidth_info.h │ │ │ │ ├── fix │ │ │ │ │ ├── include │ │ │ │ │ │ ├── audio_decoder_isacfix.h │ │ │ │ │ │ ├── audio_encoder_isacfix.h │ │ │ │ │ │ └── isacfix.h │ │ │ │ │ └── source │ │ │ │ │ │ ├── arith_routins.h │ │ │ │ │ │ ├── bandwidth_estimator.h │ │ │ │ │ │ ├── codec.h │ │ │ │ │ │ ├── entropy_coding.h │ │ │ │ │ │ ├── fft.h │ │ │ │ │ │ ├── filterbank_internal.h │ │ │ │ │ │ ├── filterbank_tables.h │ │ │ │ │ │ ├── isac_fix_type.h │ │ │ │ │ │ ├── lpc_masking_model.h │ │ │ │ │ │ ├── lpc_tables.h │ │ │ │ │ │ ├── pitch_estimator.h │ │ │ │ │ │ ├── pitch_gain_tables.h │ │ │ │ │ │ ├── pitch_lag_tables.h │ │ │ │ │ │ ├── settings.h │ │ │ │ │ │ ├── spectrum_ar_model_tables.h │ │ │ │ │ │ └── structs.h │ │ │ │ └── main │ │ │ │ │ ├── include │ │ │ │ │ ├── audio_decoder_isac.h │ │ │ │ │ ├── audio_encoder_isac.h │ │ │ │ │ └── isac.h │ │ │ │ │ ├── source │ │ │ │ │ ├── arith_routines.h │ │ │ │ │ ├── bandwidth_estimator.h │ │ │ │ │ ├── codec.h │ │ │ │ │ ├── crc.h │ │ │ │ │ ├── encode_lpc_swb.h │ │ │ │ │ ├── entropy_coding.h │ │ │ │ │ ├── filter_functions.h │ │ │ │ │ ├── isac_float_type.h │ │ │ │ │ ├── isac_vad.h │ │ │ │ │ ├── lpc_analysis.h │ │ │ │ │ ├── lpc_gain_swb_tables.h │ │ │ │ │ ├── lpc_shape_swb12_tables.h │ │ │ │ │ ├── lpc_shape_swb16_tables.h │ │ │ │ │ ├── lpc_tables.h │ │ │ │ │ ├── os_specific_inline.h │ │ │ │ │ ├── pitch_estimator.h │ │ │ │ │ ├── pitch_filter.h │ │ │ │ │ ├── pitch_gain_tables.h │ │ │ │ │ ├── pitch_lag_tables.h │ │ │ │ │ ├── settings.h │ │ │ │ │ ├── spectrum_ar_model_tables.h │ │ │ │ │ └── structs.h │ │ │ │ │ └── util │ │ │ │ │ └── utility.h │ │ │ ├── legacy_encoded_audio_frame.h │ │ │ ├── opus │ │ │ │ ├── audio_coder_opus_common.h │ │ │ │ ├── audio_decoder_multi_channel_opus_impl.h │ │ │ │ ├── audio_decoder_opus.h │ │ │ │ ├── audio_encoder_multi_channel_opus_impl.h │ │ │ │ ├── audio_encoder_opus.h │ │ │ │ ├── opus_inst.h │ │ │ │ ├── opus_interface.h │ │ │ │ └── test │ │ │ │ │ ├── audio_ring_buffer.h │ │ │ │ │ ├── blocker.h │ │ │ │ │ └── lapped_transform.h │ │ │ ├── pcm16b │ │ │ │ ├── audio_decoder_pcm16b.h │ │ │ │ ├── audio_encoder_pcm16b.h │ │ │ │ ├── pcm16b.h │ │ │ │ └── pcm16b_common.h │ │ │ ├── red │ │ │ │ └── audio_encoder_copy_red.h │ │ │ └── tools │ │ │ │ └── audio_codec_speed_test.h │ │ ├── include │ │ │ ├── audio_coding_module.h │ │ │ └── audio_coding_module_typedefs.h │ │ ├── neteq │ │ │ ├── accelerate.h │ │ │ ├── audio_multi_vector.h │ │ │ ├── audio_vector.h │ │ │ ├── background_noise.h │ │ │ ├── buffer_level_filter.h │ │ │ ├── comfort_noise.h │ │ │ ├── cross_correlation.h │ │ │ ├── decision_logic.h │ │ │ ├── decoder_database.h │ │ │ ├── default_neteq_factory.h │ │ │ ├── delay_manager.h │ │ │ ├── dsp_helper.h │ │ │ ├── dtmf_buffer.h │ │ │ ├── dtmf_tone_generator.h │ │ │ ├── expand.h │ │ │ ├── expand_uma_logger.h │ │ │ ├── histogram.h │ │ │ ├── merge.h │ │ │ ├── mock │ │ │ │ ├── mock_buffer_level_filter.h │ │ │ │ ├── mock_decoder_database.h │ │ │ │ ├── mock_delay_manager.h │ │ │ │ ├── mock_dtmf_buffer.h │ │ │ │ ├── mock_dtmf_tone_generator.h │ │ │ │ ├── mock_expand.h │ │ │ │ ├── mock_histogram.h │ │ │ │ ├── mock_neteq_controller.h │ │ │ │ ├── mock_packet_buffer.h │ │ │ │ ├── mock_red_payload_splitter.h │ │ │ │ └── mock_statistics_calculator.h │ │ │ ├── nack_tracker.h │ │ │ ├── neteq_impl.h │ │ │ ├── normal.h │ │ │ ├── packet.h │ │ │ ├── packet_arrival_history.h │ │ │ ├── packet_buffer.h │ │ │ ├── post_decode_vad.h │ │ │ ├── preemptive_expand.h │ │ │ ├── random_vector.h │ │ │ ├── red_payload_splitter.h │ │ │ ├── reorder_optimizer.h │ │ │ ├── statistics_calculator.h │ │ │ ├── sync_buffer.h │ │ │ ├── test │ │ │ │ ├── neteq_decoding_test.h │ │ │ │ └── result_sink.h │ │ │ ├── time_stretch.h │ │ │ ├── timestamp_scaler.h │ │ │ ├── tools │ │ │ │ ├── audio_checksum.h │ │ │ │ ├── audio_loop.h │ │ │ │ ├── audio_sink.h │ │ │ │ ├── constant_pcm_packet_source.h │ │ │ │ ├── encode_neteq_input.h │ │ │ │ ├── fake_decode_from_file.h │ │ │ │ ├── initial_packet_inserter_neteq_input.h │ │ │ │ ├── input_audio_file.h │ │ │ │ ├── neteq_delay_analyzer.h │ │ │ │ ├── neteq_event_log_input.h │ │ │ │ ├── neteq_input.h │ │ │ │ ├── neteq_packet_source_input.h │ │ │ │ ├── neteq_performance_test.h │ │ │ │ ├── neteq_quality_test.h │ │ │ │ ├── neteq_replacement_input.h │ │ │ │ ├── neteq_stats_getter.h │ │ │ │ ├── neteq_stats_plotter.h │ │ │ │ ├── neteq_test.h │ │ │ │ ├── neteq_test_factory.h │ │ │ │ ├── output_audio_file.h │ │ │ │ ├── output_wav_file.h │ │ │ │ ├── packet.h │ │ │ │ ├── packet_source.h │ │ │ │ ├── resample_input_audio_file.h │ │ │ │ ├── rtc_event_log_source.h │ │ │ │ ├── rtp_file_source.h │ │ │ │ └── rtp_generator.h │ │ │ └── underrun_optimizer.h │ │ └── test │ │ │ ├── Channel.h │ │ │ ├── EncodeDecodeTest.h │ │ │ ├── PCMFile.h │ │ │ ├── PacketLossTest.h │ │ │ ├── RTPFile.h │ │ │ ├── TestAllCodecs.h │ │ │ ├── TestRedFec.h │ │ │ ├── TestStereo.h │ │ │ ├── TestVADDTX.h │ │ │ ├── TwoWayCommunication.h │ │ │ ├── iSACTest.h │ │ │ └── opus_test.h │ ├── audio_device │ │ ├── android │ │ │ ├── aaudio_player.h │ │ │ ├── aaudio_recorder.h │ │ │ ├── aaudio_wrapper.h │ │ │ ├── audio_common.h │ │ │ ├── audio_device_template.h │ │ │ ├── audio_manager.h │ │ │ ├── audio_record_jni.h │ │ │ ├── audio_track_jni.h │ │ │ ├── build_info.h │ │ │ ├── ensure_initialized.h │ │ │ ├── opensles_common.h │ │ │ ├── opensles_player.h │ │ │ └── opensles_recorder.h │ │ ├── audio_device_buffer.h │ │ ├── audio_device_config.h │ │ ├── audio_device_generic.h │ │ ├── audio_device_impl.h │ │ ├── audio_device_name.h │ │ ├── dummy │ │ │ ├── audio_device_dummy.h │ │ │ ├── file_audio_device.h │ │ │ └── file_audio_device_factory.h │ │ ├── fine_audio_buffer.h │ │ ├── include │ │ │ ├── audio_device.h │ │ │ ├── audio_device_data_observer.h │ │ │ ├── audio_device_default.h │ │ │ ├── audio_device_defines.h │ │ │ ├── audio_device_factory.h │ │ │ ├── fake_audio_device.h │ │ │ ├── mock_audio_device.h │ │ │ ├── mock_audio_transport.h │ │ │ └── test_audio_device.h │ │ ├── linux │ │ │ ├── alsasymboltable_linux.h │ │ │ ├── audio_device_alsa_linux.h │ │ │ ├── audio_device_pulse_linux.h │ │ │ ├── audio_mixer_manager_alsa_linux.h │ │ │ ├── audio_mixer_manager_pulse_linux.h │ │ │ ├── latebindingsymboltable_linux.h │ │ │ └── pulseaudiosymboltable_linux.h │ │ ├── mac │ │ │ ├── audio_device_mac.h │ │ │ └── audio_mixer_manager_mac.h │ │ ├── mock_audio_device_buffer.h │ │ └── win │ │ │ ├── audio_device_core_win.h │ │ │ ├── audio_device_module_win.h │ │ │ ├── core_audio_base_win.h │ │ │ ├── core_audio_input_win.h │ │ │ ├── core_audio_output_win.h │ │ │ └── core_audio_utility_win.h │ ├── audio_mixer │ │ ├── audio_frame_manipulator.h │ │ ├── audio_mixer_impl.h │ │ ├── default_output_rate_calculator.h │ │ ├── frame_combiner.h │ │ ├── gain_change_calculator.h │ │ ├── output_rate_calculator.h │ │ └── sine_wave_generator.h │ ├── audio_processing │ │ ├── aec3 │ │ │ ├── adaptive_fir_filter.h │ │ │ ├── adaptive_fir_filter_erl.h │ │ │ ├── aec3_common.h │ │ │ ├── aec3_fft.h │ │ │ ├── aec_state.h │ │ │ ├── alignment_mixer.h │ │ │ ├── api_call_jitter_metrics.h │ │ │ ├── block.h │ │ │ ├── block_buffer.h │ │ │ ├── block_delay_buffer.h │ │ │ ├── block_framer.h │ │ │ ├── block_processor.h │ │ │ ├── block_processor_metrics.h │ │ │ ├── clockdrift_detector.h │ │ │ ├── coarse_filter_update_gain.h │ │ │ ├── comfort_noise_generator.h │ │ │ ├── config_selector.h │ │ │ ├── decimator.h │ │ │ ├── delay_estimate.h │ │ │ ├── dominant_nearend_detector.h │ │ │ ├── downsampled_render_buffer.h │ │ │ ├── echo_audibility.h │ │ │ ├── echo_canceller3.h │ │ │ ├── echo_path_delay_estimator.h │ │ │ ├── echo_path_variability.h │ │ │ ├── echo_remover.h │ │ │ ├── echo_remover_metrics.h │ │ │ ├── erl_estimator.h │ │ │ ├── erle_estimator.h │ │ │ ├── fft_buffer.h │ │ │ ├── fft_data.h │ │ │ ├── filter_analyzer.h │ │ │ ├── frame_blocker.h │ │ │ ├── fullband_erle_estimator.h │ │ │ ├── matched_filter.h │ │ │ ├── matched_filter_lag_aggregator.h │ │ │ ├── mock │ │ │ │ ├── mock_block_processor.h │ │ │ │ ├── mock_echo_remover.h │ │ │ │ ├── mock_render_delay_buffer.h │ │ │ │ └── mock_render_delay_controller.h │ │ │ ├── moving_average.h │ │ │ ├── multi_channel_content_detector.h │ │ │ ├── nearend_detector.h │ │ │ ├── refined_filter_update_gain.h │ │ │ ├── render_buffer.h │ │ │ ├── render_delay_buffer.h │ │ │ ├── render_delay_controller.h │ │ │ ├── render_delay_controller_metrics.h │ │ │ ├── render_signal_analyzer.h │ │ │ ├── residual_echo_estimator.h │ │ │ ├── reverb_decay_estimator.h │ │ │ ├── reverb_frequency_response.h │ │ │ ├── reverb_model.h │ │ │ ├── reverb_model_estimator.h │ │ │ ├── signal_dependent_erle_estimator.h │ │ │ ├── spectrum_buffer.h │ │ │ ├── stationarity_estimator.h │ │ │ ├── subband_erle_estimator.h │ │ │ ├── subband_nearend_detector.h │ │ │ ├── subtractor.h │ │ │ ├── subtractor_output.h │ │ │ ├── subtractor_output_analyzer.h │ │ │ ├── suppression_filter.h │ │ │ ├── suppression_gain.h │ │ │ ├── transparent_mode.h │ │ │ └── vector_math.h │ │ ├── aec_dump │ │ │ ├── aec_dump_factory.h │ │ │ ├── aec_dump_impl.h │ │ │ ├── capture_stream_info.h │ │ │ └── mock_aec_dump.h │ │ ├── aecm │ │ │ ├── aecm_core.h │ │ │ ├── aecm_defines.h │ │ │ └── echo_control_mobile.h │ │ ├── agc │ │ │ ├── agc.h │ │ │ ├── agc_manager_direct.h │ │ │ ├── analog_gain_stats_reporter.h │ │ │ ├── clipping_predictor.h │ │ │ ├── clipping_predictor_evaluator.h │ │ │ ├── clipping_predictor_level_buffer.h │ │ │ ├── gain_control.h │ │ │ ├── gain_map_internal.h │ │ │ ├── legacy │ │ │ │ ├── analog_agc.h │ │ │ │ ├── digital_agc.h │ │ │ │ └── gain_control.h │ │ │ ├── loudness_histogram.h │ │ │ ├── mock_agc.h │ │ │ └── utility.h │ │ ├── agc2 │ │ │ ├── adaptive_digital_gain_applier.h │ │ │ ├── adaptive_digital_gain_controller.h │ │ │ ├── adaptive_mode_level_estimator.h │ │ │ ├── agc2_common.h │ │ │ ├── agc2_testing_common.h │ │ │ ├── biquad_filter.h │ │ │ ├── compute_interpolated_gain_curve.h │ │ │ ├── cpu_features.h │ │ │ ├── fixed_digital_level_estimator.h │ │ │ ├── gain_applier.h │ │ │ ├── interpolated_gain_curve.h │ │ │ ├── limiter.h │ │ │ ├── limiter_db_gain_curve.h │ │ │ ├── noise_level_estimator.h │ │ │ ├── rnn_vad │ │ │ │ ├── auto_correlation.h │ │ │ │ ├── common.h │ │ │ │ ├── features_extraction.h │ │ │ │ ├── lp_residual.h │ │ │ │ ├── pitch_search.h │ │ │ │ ├── pitch_search_internal.h │ │ │ │ ├── ring_buffer.h │ │ │ │ ├── rnn.h │ │ │ │ ├── rnn_fc.h │ │ │ │ ├── rnn_gru.h │ │ │ │ ├── sequence_buffer.h │ │ │ │ ├── spectral_features.h │ │ │ │ ├── spectral_features_internal.h │ │ │ │ ├── symmetric_matrix_buffer.h │ │ │ │ ├── test_utils.h │ │ │ │ └── vector_math.h │ │ │ ├── saturation_protector.h │ │ │ ├── saturation_protector_buffer.h │ │ │ ├── vad_wrapper.h │ │ │ └── vector_float_frame.h │ │ ├── audio_buffer.h │ │ ├── audio_processing_impl.h │ │ ├── capture_levels_adjuster │ │ │ ├── audio_samples_scaler.h │ │ │ └── capture_levels_adjuster.h │ │ ├── echo_control_mobile_impl.h │ │ ├── echo_detector │ │ │ ├── circular_buffer.h │ │ │ ├── mean_variance_estimator.h │ │ │ ├── moving_max.h │ │ │ └── normalized_covariance_estimator.h │ │ ├── gain_control_impl.h │ │ ├── gain_controller2.h │ │ ├── high_pass_filter.h │ │ ├── include │ │ │ ├── aec_dump.h │ │ │ ├── audio_frame_proxies.h │ │ │ ├── audio_frame_view.h │ │ │ ├── audio_processing.h │ │ │ ├── audio_processing_statistics.h │ │ │ └── mock_audio_processing.h │ │ ├── logging │ │ │ └── apm_data_dumper.h │ │ ├── ns │ │ │ ├── fast_math.h │ │ │ ├── histograms.h │ │ │ ├── noise_estimator.h │ │ │ ├── noise_suppressor.h │ │ │ ├── ns_common.h │ │ │ ├── ns_config.h │ │ │ ├── ns_fft.h │ │ │ ├── prior_signal_model.h │ │ │ ├── prior_signal_model_estimator.h │ │ │ ├── quantile_noise_estimator.h │ │ │ ├── signal_model.h │ │ │ ├── signal_model_estimator.h │ │ │ ├── speech_probability_estimator.h │ │ │ ├── suppression_params.h │ │ │ └── wiener_filter.h │ │ ├── optionally_built_submodule_creators.h │ │ ├── render_queue_item_verifier.h │ │ ├── residual_echo_detector.h │ │ ├── rms_level.h │ │ ├── splitting_filter.h │ │ ├── test │ │ │ ├── aec_dump_based_simulator.h │ │ │ ├── api_call_statistics.h │ │ │ ├── audio_buffer_tools.h │ │ │ ├── audio_processing_builder_for_testing.h │ │ │ ├── audio_processing_simulator.h │ │ │ ├── audioproc_float_impl.h │ │ │ ├── bitexactness_tools.h │ │ │ ├── conversational_speech │ │ │ │ ├── config.h │ │ │ │ ├── mock_wavreader.h │ │ │ │ ├── mock_wavreader_factory.h │ │ │ │ ├── multiend_call.h │ │ │ │ ├── simulator.h │ │ │ │ ├── timing.h │ │ │ │ ├── wavreader_abstract_factory.h │ │ │ │ ├── wavreader_factory.h │ │ │ │ └── wavreader_interface.h │ │ │ ├── debug_dump_replayer.h │ │ │ ├── echo_canceller_test_tools.h │ │ │ ├── echo_control_mock.h │ │ │ ├── fake_recording_device.h │ │ │ ├── performance_timer.h │ │ │ ├── protobuf_utils.h │ │ │ ├── runtime_setting_util.h │ │ │ ├── simulator_buffers.h │ │ │ ├── test_utils.h │ │ │ └── wav_based_simulator.h │ │ ├── three_band_filter_bank.h │ │ ├── transient │ │ │ ├── common.h │ │ │ ├── daubechies_8_wavelet_coeffs.h │ │ │ ├── dyadic_decimator.h │ │ │ ├── file_utils.h │ │ │ ├── moving_moments.h │ │ │ ├── transient_detector.h │ │ │ ├── transient_suppressor.h │ │ │ ├── transient_suppressor_impl.h │ │ │ ├── voice_probability_delay_unit.h │ │ │ ├── windows_private.h │ │ │ ├── wpd_node.h │ │ │ └── wpd_tree.h │ │ ├── utility │ │ │ ├── cascaded_biquad_filter.h │ │ │ ├── delay_estimator.h │ │ │ ├── delay_estimator_internal.h │ │ │ ├── delay_estimator_wrapper.h │ │ │ └── pffft_wrapper.h │ │ └── vad │ │ │ ├── common.h │ │ │ ├── gmm.h │ │ │ ├── noise_gmm_tables.h │ │ │ ├── pitch_based_vad.h │ │ │ ├── pitch_internal.h │ │ │ ├── pole_zero_filter.h │ │ │ ├── standalone_vad.h │ │ │ ├── vad_audio_proc.h │ │ │ ├── vad_audio_proc_internal.h │ │ │ ├── vad_circular_buffer.h │ │ │ ├── voice_activity_detector.h │ │ │ └── voice_gmm_tables.h │ ├── congestion_controller │ │ ├── goog_cc │ │ │ ├── acknowledged_bitrate_estimator.h │ │ │ ├── acknowledged_bitrate_estimator_interface.h │ │ │ ├── alr_detector.h │ │ │ ├── bitrate_estimator.h │ │ │ ├── congestion_window_pushback_controller.h │ │ │ ├── delay_based_bwe.h │ │ │ ├── delay_based_bwe_unittest_helper.h │ │ │ ├── delay_increase_detector_interface.h │ │ │ ├── goog_cc_network_control.h │ │ │ ├── inter_arrival_delta.h │ │ │ ├── link_capacity_estimator.h │ │ │ ├── loss_based_bandwidth_estimation.h │ │ │ ├── loss_based_bwe_v2.h │ │ │ ├── probe_bitrate_estimator.h │ │ │ ├── probe_controller.h │ │ │ ├── robust_throughput_estimator.h │ │ │ ├── send_side_bandwidth_estimation.h │ │ │ ├── test │ │ │ │ └── goog_cc_printer.h │ │ │ └── trendline_estimator.h │ │ ├── include │ │ │ └── receive_side_congestion_controller.h │ │ ├── pcc │ │ │ ├── bitrate_controller.h │ │ │ ├── monitor_interval.h │ │ │ ├── pcc_factory.h │ │ │ ├── pcc_network_controller.h │ │ │ ├── rtt_tracker.h │ │ │ └── utility_function.h │ │ ├── remb_throttler.h │ │ └── rtp │ │ │ ├── control_handler.h │ │ │ ├── transport_feedback_adapter.h │ │ │ └── transport_feedback_demuxer.h │ ├── desktop_capture │ │ ├── blank_detector_desktop_capturer_wrapper.h │ │ ├── cropped_desktop_frame.h │ │ ├── cropping_window_capturer.h │ │ ├── desktop_and_cursor_composer.h │ │ ├── desktop_capture_metadata.h │ │ ├── desktop_capture_metrics_helper.h │ │ ├── desktop_capture_options.h │ │ ├── desktop_capture_types.h │ │ ├── desktop_capturer.h │ │ ├── desktop_capturer_differ_wrapper.h │ │ ├── desktop_capturer_wrapper.h │ │ ├── desktop_frame.h │ │ ├── desktop_frame_generator.h │ │ ├── desktop_frame_rotation.h │ │ ├── desktop_frame_win.h │ │ ├── desktop_geometry.h │ │ ├── desktop_region.h │ │ ├── differ_block.h │ │ ├── differ_vector_sse2.h │ │ ├── fake_desktop_capturer.h │ │ ├── fallback_desktop_capturer_wrapper.h │ │ ├── full_screen_application_handler.h │ │ ├── full_screen_window_detector.h │ │ ├── linux │ │ │ ├── wayland │ │ │ │ ├── base_capturer_pipewire.h │ │ │ │ ├── egl_dmabuf.h │ │ │ │ ├── mouse_cursor_monitor_pipewire.h │ │ │ │ ├── portal_request_response.h │ │ │ │ ├── restore_token_manager.h │ │ │ │ ├── scoped_glib.h │ │ │ │ ├── screen_capture_portal_interface.h │ │ │ │ ├── screencast_portal.h │ │ │ │ ├── screencast_stream_utils.h │ │ │ │ ├── shared_screencast_stream.h │ │ │ │ ├── xdg_desktop_portal_utils.h │ │ │ │ └── xdg_session_details.h │ │ │ └── x11 │ │ │ │ ├── mouse_cursor_monitor_x11.h │ │ │ │ ├── screen_capturer_x11.h │ │ │ │ ├── shared_x_display.h │ │ │ │ ├── window_capturer_x11.h │ │ │ │ ├── window_finder_x11.h │ │ │ │ ├── window_list_utils.h │ │ │ │ ├── x_atom_cache.h │ │ │ │ ├── x_error_trap.h │ │ │ │ ├── x_server_pixel_buffer.h │ │ │ │ └── x_window_property.h │ │ ├── mac │ │ │ ├── desktop_configuration.h │ │ │ ├── desktop_configuration_monitor.h │ │ │ ├── desktop_frame_cgimage.h │ │ │ ├── desktop_frame_iosurface.h │ │ │ ├── desktop_frame_provider.h │ │ │ ├── full_screen_mac_application_handler.h │ │ │ ├── screen_capturer_mac.h │ │ │ └── window_list_utils.h │ │ ├── mock_desktop_capturer_callback.h │ │ ├── mouse_cursor.h │ │ ├── mouse_cursor_monitor.h │ │ ├── resolution_tracker.h │ │ ├── rgba_color.h │ │ ├── screen_capture_frame_queue.h │ │ ├── screen_capturer_fuchsia.h │ │ ├── screen_capturer_helper.h │ │ ├── screen_drawer.h │ │ ├── screen_drawer_lock_posix.h │ │ ├── shared_desktop_frame.h │ │ ├── shared_memory.h │ │ ├── test_utils.h │ │ ├── win │ │ │ ├── cursor.h │ │ │ ├── cursor_unittest_resources.h │ │ │ ├── d3d_device.h │ │ │ ├── desktop.h │ │ │ ├── desktop_capture_utils.h │ │ │ ├── display_configuration_monitor.h │ │ │ ├── dxgi_adapter_duplicator.h │ │ │ ├── dxgi_context.h │ │ │ ├── dxgi_duplicator_controller.h │ │ │ ├── dxgi_frame.h │ │ │ ├── dxgi_output_duplicator.h │ │ │ ├── dxgi_texture.h │ │ │ ├── dxgi_texture_mapping.h │ │ │ ├── dxgi_texture_staging.h │ │ │ ├── full_screen_win_application_handler.h │ │ │ ├── scoped_gdi_object.h │ │ │ ├── scoped_thread_desktop.h │ │ │ ├── screen_capture_utils.h │ │ │ ├── screen_capturer_win_directx.h │ │ │ ├── screen_capturer_win_gdi.h │ │ │ ├── screen_capturer_win_magnifier.h │ │ │ ├── selected_window_context.h │ │ │ ├── test_support │ │ │ │ └── test_window.h │ │ │ ├── wgc_capture_session.h │ │ │ ├── wgc_capture_source.h │ │ │ ├── wgc_capturer_win.h │ │ │ ├── wgc_desktop_frame.h │ │ │ ├── window_capture_utils.h │ │ │ └── window_capturer_win_gdi.h │ │ ├── window_finder.h │ │ ├── window_finder_mac.h │ │ └── window_finder_win.h │ ├── include │ │ ├── module_common_types.h │ │ ├── module_common_types_public.h │ │ └── module_fec_types.h │ ├── pacing │ │ ├── bitrate_prober.h │ │ ├── interval_budget.h │ │ ├── pacing_controller.h │ │ ├── packet_router.h │ │ ├── prioritized_packet_queue.h │ │ ├── round_robin_packet_queue.h │ │ ├── rtp_packet_pacer.h │ │ └── task_queue_paced_sender.h │ ├── remote_bitrate_estimator │ │ ├── aimd_rate_control.h │ │ ├── include │ │ │ ├── bwe_defines.h │ │ │ └── remote_bitrate_estimator.h │ │ ├── inter_arrival.h │ │ ├── overuse_detector.h │ │ ├── overuse_estimator.h │ │ ├── packet_arrival_map.h │ │ ├── remote_bitrate_estimator_abs_send_time.h │ │ ├── remote_bitrate_estimator_single_stream.h │ │ ├── remote_bitrate_estimator_unittest_helper.h │ │ ├── remote_estimator_proxy.h │ │ ├── test │ │ │ └── bwe_test_logging.h │ │ └── tools │ │ │ └── bwe_rtp.h │ ├── rtp_rtcp │ │ ├── include │ │ │ ├── flexfec_receiver.h │ │ │ ├── flexfec_sender.h │ │ │ ├── receive_statistics.h │ │ │ ├── remote_ntp_time_estimator.h │ │ │ ├── report_block_data.h │ │ │ ├── rtcp_statistics.h │ │ │ ├── rtp_cvo.h │ │ │ ├── rtp_header_extension_map.h │ │ │ ├── rtp_packet_sender.h │ │ │ ├── rtp_rtcp.h │ │ │ ├── rtp_rtcp_defines.h │ │ │ └── ulpfec_receiver.h │ │ ├── mocks │ │ │ ├── mock_recovered_packet_receiver.h │ │ │ ├── mock_rtcp_bandwidth_observer.h │ │ │ ├── mock_rtcp_rtt_stats.h │ │ │ └── mock_rtp_rtcp.h │ │ ├── source │ │ │ ├── absolute_capture_time_interpolator.h │ │ │ ├── absolute_capture_time_sender.h │ │ │ ├── active_decode_targets_helper.h │ │ │ ├── byte_io.h │ │ │ ├── capture_clock_offset_updater.h │ │ │ ├── create_video_rtp_depacketizer.h │ │ │ ├── deprecated │ │ │ │ └── deprecated_rtp_sender_egress.h │ │ │ ├── dtmf_queue.h │ │ │ ├── fec_private_tables_bursty.h │ │ │ ├── fec_private_tables_random.h │ │ │ ├── fec_test_helper.h │ │ │ ├── flexfec_header_reader_writer.h │ │ │ ├── forward_error_correction.h │ │ │ ├── forward_error_correction_internal.h │ │ │ ├── packet_loss_stats.h │ │ │ ├── packet_sequencer.h │ │ │ ├── receive_statistics_impl.h │ │ │ ├── rtcp_nack_stats.h │ │ │ ├── rtcp_packet.h │ │ │ ├── rtcp_packet │ │ │ │ ├── app.h │ │ │ │ ├── bye.h │ │ │ │ ├── common_header.h │ │ │ │ ├── compound_packet.h │ │ │ │ ├── dlrr.h │ │ │ │ ├── extended_reports.h │ │ │ │ ├── fir.h │ │ │ │ ├── loss_notification.h │ │ │ │ ├── nack.h │ │ │ │ ├── pli.h │ │ │ │ ├── psfb.h │ │ │ │ ├── rapid_resync_request.h │ │ │ │ ├── receiver_report.h │ │ │ │ ├── remb.h │ │ │ │ ├── remote_estimate.h │ │ │ │ ├── report_block.h │ │ │ │ ├── rrtr.h │ │ │ │ ├── rtpfb.h │ │ │ │ ├── sdes.h │ │ │ │ ├── sender_report.h │ │ │ │ ├── target_bitrate.h │ │ │ │ ├── tmmb_item.h │ │ │ │ ├── tmmbn.h │ │ │ │ ├── tmmbr.h │ │ │ │ └── transport_feedback.h │ │ │ ├── rtcp_receiver.h │ │ │ ├── rtcp_sender.h │ │ │ ├── rtcp_transceiver.h │ │ │ ├── rtcp_transceiver_config.h │ │ │ ├── rtcp_transceiver_impl.h │ │ │ ├── rtp_dependency_descriptor_extension.h │ │ │ ├── rtp_dependency_descriptor_reader.h │ │ │ ├── rtp_dependency_descriptor_writer.h │ │ │ ├── rtp_descriptor_authentication.h │ │ │ ├── rtp_format.h │ │ │ ├── rtp_format_h264.h │ │ │ ├── rtp_format_video_generic.h │ │ │ ├── rtp_format_vp8.h │ │ │ ├── rtp_format_vp8_test_helper.h │ │ │ ├── rtp_format_vp9.h │ │ │ ├── rtp_generic_frame_descriptor.h │ │ │ ├── rtp_generic_frame_descriptor_extension.h │ │ │ ├── rtp_header_extension_size.h │ │ │ ├── rtp_header_extensions.h │ │ │ ├── rtp_packet.h │ │ │ ├── rtp_packet_history.h │ │ │ ├── rtp_packet_received.h │ │ │ ├── rtp_packet_to_send.h │ │ │ ├── rtp_packetizer_av1.h │ │ │ ├── rtp_packetizer_av1_test_helper.h │ │ │ ├── rtp_rtcp_config.h │ │ │ ├── rtp_rtcp_impl.h │ │ │ ├── rtp_rtcp_impl2.h │ │ │ ├── rtp_rtcp_interface.h │ │ │ ├── rtp_sender.h │ │ │ ├── rtp_sender_audio.h │ │ │ ├── rtp_sender_egress.h │ │ │ ├── rtp_sender_video.h │ │ │ ├── rtp_sender_video_frame_transformer_delegate.h │ │ │ ├── rtp_sequence_number_map.h │ │ │ ├── rtp_util.h │ │ │ ├── rtp_video_header.h │ │ │ ├── rtp_video_layers_allocation_extension.h │ │ │ ├── source_tracker.h │ │ │ ├── time_util.h │ │ │ ├── tmmbr_help.h │ │ │ ├── ulpfec_generator.h │ │ │ ├── ulpfec_header_reader_writer.h │ │ │ ├── ulpfec_receiver_impl.h │ │ │ ├── video_fec_generator.h │ │ │ ├── video_rtp_depacketizer.h │ │ │ ├── video_rtp_depacketizer_av1.h │ │ │ ├── video_rtp_depacketizer_generic.h │ │ │ ├── video_rtp_depacketizer_h264.h │ │ │ ├── video_rtp_depacketizer_raw.h │ │ │ ├── video_rtp_depacketizer_vp8.h │ │ │ └── video_rtp_depacketizer_vp9.h │ │ └── test │ │ │ └── testFec │ │ │ └── average_residual_loss_xor_codes.h │ ├── third_party │ │ ├── fft │ │ │ └── fft.h │ │ ├── g711 │ │ │ └── g711.h │ │ ├── g722 │ │ │ └── g722_enc_dec.h │ │ └── portaudio │ │ │ ├── pa_memorybarrier.h │ │ │ └── pa_ringbuffer.h │ ├── utility │ │ └── include │ │ │ ├── helpers_android.h │ │ │ └── jvm_android.h │ ├── video_capture │ │ ├── device_info_impl.h │ │ ├── linux │ │ │ ├── device_info_v4l2.h │ │ │ └── video_capture_v4l2.h │ │ ├── video_capture.h │ │ ├── video_capture_config.h │ │ ├── video_capture_defines.h │ │ ├── video_capture_factory.h │ │ ├── video_capture_impl.h │ │ └── windows │ │ │ ├── device_info_ds.h │ │ │ ├── help_functions_ds.h │ │ │ ├── sink_filter_ds.h │ │ │ └── video_capture_ds.h │ ├── video_coding │ │ ├── chain_diff_calculator.h │ │ ├── codecs │ │ │ ├── av1 │ │ │ │ ├── av1_svc_config.h │ │ │ │ ├── dav1d_decoder.h │ │ │ │ ├── libaom_av1_decoder.h │ │ │ │ └── libaom_av1_encoder.h │ │ │ ├── h264 │ │ │ │ ├── h264_color_space.h │ │ │ │ ├── h264_decoder_impl.h │ │ │ │ ├── h264_encoder_impl.h │ │ │ │ └── include │ │ │ │ │ ├── h264.h │ │ │ │ │ └── h264_globals.h │ │ │ ├── interface │ │ │ │ ├── common_constants.h │ │ │ │ ├── libvpx_interface.h │ │ │ │ └── mock_libvpx_interface.h │ │ │ ├── multiplex │ │ │ │ ├── include │ │ │ │ │ ├── augmented_video_frame_buffer.h │ │ │ │ │ ├── multiplex_decoder_adapter.h │ │ │ │ │ └── multiplex_encoder_adapter.h │ │ │ │ └── multiplex_encoded_image_packer.h │ │ │ ├── test │ │ │ │ ├── android_codec_factory_helper.h │ │ │ │ ├── encoded_video_frame_producer.h │ │ │ │ ├── objc_codec_factory_helper.h │ │ │ │ ├── video_codec_unittest.h │ │ │ │ ├── videocodec_test_fixture_impl.h │ │ │ │ ├── videocodec_test_stats_impl.h │ │ │ │ └── videoprocessor.h │ │ │ ├── vp8 │ │ │ │ ├── default_temporal_layers.h │ │ │ │ ├── include │ │ │ │ │ ├── temporal_layers_checker.h │ │ │ │ │ ├── vp8.h │ │ │ │ │ └── vp8_globals.h │ │ │ │ ├── libvpx_vp8_decoder.h │ │ │ │ ├── libvpx_vp8_encoder.h │ │ │ │ ├── screenshare_layers.h │ │ │ │ ├── temporal_layers.h │ │ │ │ └── vp8_scalability.h │ │ │ └── vp9 │ │ │ │ ├── include │ │ │ │ ├── vp9.h │ │ │ │ └── vp9_globals.h │ │ │ │ ├── libvpx_vp9_decoder.h │ │ │ │ ├── libvpx_vp9_encoder.h │ │ │ │ ├── svc_config.h │ │ │ │ └── vp9_frame_buffer_pool.h │ │ ├── decoder_database.h │ │ ├── decoding_state.h │ │ ├── encoded_frame.h │ │ ├── event_wrapper.h │ │ ├── fec_controller_default.h │ │ ├── fec_rate_table.h │ │ ├── frame_buffer.h │ │ ├── frame_buffer2.h │ │ ├── frame_dependencies_calculator.h │ │ ├── frame_helpers.h │ │ ├── frame_object.h │ │ ├── generic_decoder.h │ │ ├── h264_packet_buffer.h │ │ ├── h264_sprop_parameter_sets.h │ │ ├── h264_sps_pps_tracker.h │ │ ├── histogram.h │ │ ├── include │ │ │ ├── video_codec_initializer.h │ │ │ ├── video_codec_interface.h │ │ │ ├── video_coding.h │ │ │ ├── video_coding_defines.h │ │ │ └── video_error_codes.h │ │ ├── internal_defines.h │ │ ├── jitter_buffer.h │ │ ├── jitter_buffer_common.h │ │ ├── loss_notification_controller.h │ │ ├── media_opt_util.h │ │ ├── nack_requester.h │ │ ├── packet.h │ │ ├── packet_buffer.h │ │ ├── receiver.h │ │ ├── rtp_frame_id_only_ref_finder.h │ │ ├── rtp_frame_reference_finder.h │ │ ├── rtp_generic_ref_finder.h │ │ ├── rtp_seq_num_only_ref_finder.h │ │ ├── rtp_vp8_ref_finder.h │ │ ├── rtp_vp9_ref_finder.h │ │ ├── session_info.h │ │ ├── svc │ │ │ ├── create_scalability_structure.h │ │ │ ├── scalability_mode_util.h │ │ │ ├── scalability_structure_full_svc.h │ │ │ ├── scalability_structure_key_svc.h │ │ │ ├── scalability_structure_l2t2_key_shift.h │ │ │ ├── scalability_structure_simulcast.h │ │ │ ├── scalability_structure_test_helpers.h │ │ │ ├── scalable_video_controller.h │ │ │ ├── scalable_video_controller_no_layering.h │ │ │ └── svc_rate_allocator.h │ │ ├── test │ │ │ └── stream_generator.h │ │ ├── timestamp_map.h │ │ ├── timing │ │ │ ├── codec_timer.h │ │ │ ├── inter_frame_delay.h │ │ │ ├── jitter_estimator.h │ │ │ ├── rtt_filter.h │ │ │ └── timing.h │ │ ├── utility │ │ │ ├── bandwidth_quality_scaler.h │ │ │ ├── decoded_frames_history.h │ │ │ ├── frame_dropper.h │ │ │ ├── framerate_controller_deprecated.h │ │ │ ├── ivf_defines.h │ │ │ ├── ivf_file_reader.h │ │ │ ├── ivf_file_writer.h │ │ │ ├── qp_parser.h │ │ │ ├── quality_scaler.h │ │ │ ├── simulcast_rate_allocator.h │ │ │ ├── simulcast_test_fixture_impl.h │ │ │ ├── simulcast_utility.h │ │ │ ├── vp8_header_parser.h │ │ │ ├── vp9_constants.h │ │ │ └── vp9_uncompressed_header_parser.h │ │ ├── video_coding_impl.h │ │ └── video_receiver2.h │ └── video_processing │ │ ├── util │ │ ├── denoiser_filter.h │ │ ├── denoiser_filter_c.h │ │ ├── denoiser_filter_neon.h │ │ ├── denoiser_filter_sse2.h │ │ ├── noise_estimation.h │ │ └── skin_detection.h │ │ └── video_denoiser.h ├── net │ └── dcsctp │ │ ├── common │ │ ├── handover_testing.h │ │ ├── internal_types.h │ │ ├── math.h │ │ ├── sequence_numbers.h │ │ └── str_join.h │ │ ├── fuzzers │ │ └── dcsctp_fuzzers.h │ │ ├── packet │ │ ├── bounded_byte_reader.h │ │ ├── bounded_byte_writer.h │ │ ├── chunk │ │ │ ├── abort_chunk.h │ │ │ ├── chunk.h │ │ │ ├── cookie_ack_chunk.h │ │ │ ├── cookie_echo_chunk.h │ │ │ ├── data_chunk.h │ │ │ ├── data_common.h │ │ │ ├── error_chunk.h │ │ │ ├── forward_tsn_chunk.h │ │ │ ├── forward_tsn_common.h │ │ │ ├── heartbeat_ack_chunk.h │ │ │ ├── heartbeat_request_chunk.h │ │ │ ├── idata_chunk.h │ │ │ ├── iforward_tsn_chunk.h │ │ │ ├── init_ack_chunk.h │ │ │ ├── init_chunk.h │ │ │ ├── reconfig_chunk.h │ │ │ ├── sack_chunk.h │ │ │ ├── shutdown_ack_chunk.h │ │ │ ├── shutdown_chunk.h │ │ │ └── shutdown_complete_chunk.h │ │ ├── chunk_validators.h │ │ ├── crc32c.h │ │ ├── data.h │ │ ├── error_cause │ │ │ ├── cookie_received_while_shutting_down_cause.h │ │ │ ├── error_cause.h │ │ │ ├── invalid_mandatory_parameter_cause.h │ │ │ ├── invalid_stream_identifier_cause.h │ │ │ ├── missing_mandatory_parameter_cause.h │ │ │ ├── no_user_data_cause.h │ │ │ ├── out_of_resource_error_cause.h │ │ │ ├── protocol_violation_cause.h │ │ │ ├── restart_of_an_association_with_new_address_cause.h │ │ │ ├── stale_cookie_error_cause.h │ │ │ ├── unrecognized_chunk_type_cause.h │ │ │ ├── unrecognized_parameter_cause.h │ │ │ ├── unresolvable_address_cause.h │ │ │ └── user_initiated_abort_cause.h │ │ ├── parameter │ │ │ ├── add_incoming_streams_request_parameter.h │ │ │ ├── add_outgoing_streams_request_parameter.h │ │ │ ├── forward_tsn_supported_parameter.h │ │ │ ├── heartbeat_info_parameter.h │ │ │ ├── incoming_ssn_reset_request_parameter.h │ │ │ ├── outgoing_ssn_reset_request_parameter.h │ │ │ ├── parameter.h │ │ │ ├── reconfiguration_response_parameter.h │ │ │ ├── ssn_tsn_reset_request_parameter.h │ │ │ ├── state_cookie_parameter.h │ │ │ └── supported_extensions_parameter.h │ │ ├── sctp_packet.h │ │ └── tlv_trait.h │ │ ├── public │ │ ├── dcsctp_handover_state.h │ │ ├── dcsctp_message.h │ │ ├── dcsctp_options.h │ │ ├── dcsctp_socket.h │ │ ├── dcsctp_socket_factory.h │ │ ├── mock_dcsctp_socket.h │ │ ├── mock_dcsctp_socket_factory.h │ │ ├── packet_observer.h │ │ ├── text_pcap_packet_observer.h │ │ ├── timeout.h │ │ └── types.h │ │ ├── rx │ │ ├── data_tracker.h │ │ ├── interleaved_reassembly_streams.h │ │ ├── reassembly_queue.h │ │ ├── reassembly_streams.h │ │ └── traditional_reassembly_streams.h │ │ ├── socket │ │ ├── callback_deferrer.h │ │ ├── capabilities.h │ │ ├── context.h │ │ ├── dcsctp_socket.h │ │ ├── heartbeat_handler.h │ │ ├── mock_context.h │ │ ├── mock_dcsctp_socket_callbacks.h │ │ ├── packet_sender.h │ │ ├── state_cookie.h │ │ ├── stream_reset_handler.h │ │ └── transmission_control_block.h │ │ ├── testing │ │ ├── data_generator.h │ │ └── testing_macros.h │ │ ├── timer │ │ ├── fake_timeout.h │ │ ├── task_queue_timeout.h │ │ └── timer.h │ │ └── tx │ │ ├── mock_send_queue.h │ │ ├── outstanding_data.h │ │ ├── retransmission_error_counter.h │ │ ├── retransmission_queue.h │ │ ├── retransmission_timeout.h │ │ ├── rr_send_queue.h │ │ ├── send_queue.h │ │ └── stream_scheduler.h ├── openssl │ ├── aead.h │ ├── aes.h │ ├── arm_arch.h │ ├── asn1.h │ ├── asn1_mac.h │ ├── asn1t.h │ ├── base.h │ ├── base64.h │ ├── bio.h │ ├── blake2.h │ ├── blowfish.h │ ├── bn.h │ ├── buf.h │ ├── buffer.h │ ├── bytestring.h │ ├── cast.h │ ├── chacha.h │ ├── cipher.h │ ├── cmac.h │ ├── conf.h │ ├── cpu.h │ ├── crypto.h │ ├── curve25519.h │ ├── des.h │ ├── dh.h │ ├── digest.h │ ├── dsa.h │ ├── dtls1.h │ ├── e_os2.h │ ├── ec.h │ ├── ec_key.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── evp_errors.h │ ├── ex_data.h │ ├── hkdf.h │ ├── hmac.h │ ├── hpke.h │ ├── hrss.h │ ├── is_boringssl.h │ ├── kdf.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── mem.h │ ├── nid.h │ ├── obj.h │ ├── obj_mac.h │ ├── objects.h │ ├── opensslconf.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── pkcs8.h │ ├── poly1305.h │ ├── pool.h │ ├── rand.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── service_indicator.h │ ├── sha.h │ ├── siphash.h │ ├── span.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl3.h │ ├── stack.h │ ├── thread.h │ ├── tls1.h │ ├── trust_token.h │ ├── type_check.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h ├── out │ └── Release │ │ └── gen │ │ ├── modules │ │ └── desktop_capture │ │ │ └── linux │ │ │ └── wayland │ │ │ └── pipewire_stubs.h │ │ └── third_party │ │ ├── ffmpeg │ │ └── ffmpeg_features.h │ │ └── libaom │ │ └── libaom_buildflags.h ├── p2p │ ├── base │ │ ├── async_stun_tcp_socket.h │ │ ├── basic_async_resolver_factory.h │ │ ├── basic_ice_controller.h │ │ ├── basic_packet_socket_factory.h │ │ ├── candidate_pair_interface.h │ │ ├── connection.h │ │ ├── connection_info.h │ │ ├── default_ice_transport_factory.h │ │ ├── dtls_transport.h │ │ ├── dtls_transport_factory.h │ │ ├── dtls_transport_internal.h │ │ ├── fake_dtls_transport.h │ │ ├── fake_ice_transport.h │ │ ├── fake_packet_transport.h │ │ ├── fake_port_allocator.h │ │ ├── ice_controller_factory_interface.h │ │ ├── ice_controller_interface.h │ │ ├── ice_credentials_iterator.h │ │ ├── ice_switch_reason.h │ │ ├── ice_transport_internal.h │ │ ├── mock_async_resolver.h │ │ ├── mock_ice_transport.h │ │ ├── p2p_constants.h │ │ ├── p2p_transport_channel.h │ │ ├── p2p_transport_channel_ice_field_trials.h │ │ ├── packet_transport_internal.h │ │ ├── port.h │ │ ├── port_allocator.h │ │ ├── port_interface.h │ │ ├── pseudo_tcp.h │ │ ├── regathering_controller.h │ │ ├── stun_port.h │ │ ├── stun_request.h │ │ ├── stun_server.h │ │ ├── tcp_port.h │ │ ├── test_stun_server.h │ │ ├── test_turn_customizer.h │ │ ├── test_turn_server.h │ │ ├── transport_description.h │ │ ├── transport_description_factory.h │ │ ├── transport_info.h │ │ ├── turn_port.h │ │ ├── turn_server.h │ │ └── udp_port.h │ ├── client │ │ ├── basic_port_allocator.h │ │ ├── relay_port_factory_interface.h │ │ └── turn_port_factory.h │ └── stunprober │ │ └── stun_prober.h ├── pc │ ├── audio_rtp_receiver.h │ ├── audio_track.h │ ├── channel.h │ ├── channel_interface.h │ ├── connection_context.h │ ├── data_channel_controller.h │ ├── data_channel_utils.h │ ├── dtls_srtp_transport.h │ ├── dtls_transport.h │ ├── dtmf_sender.h │ ├── external_hmac.h │ ├── ice_server_parsing.h │ ├── ice_transport.h │ ├── jitter_buffer_delay.h │ ├── jsep_transport.h │ ├── jsep_transport_collection.h │ ├── jsep_transport_controller.h │ ├── legacy_stats_collector.h │ ├── legacy_stats_collector_interface.h │ ├── local_audio_source.h │ ├── media_protocol_names.h │ ├── media_session.h │ ├── media_stream.h │ ├── media_stream_observer.h │ ├── media_stream_proxy.h │ ├── media_stream_track_proxy.h │ ├── peer_connection.h │ ├── peer_connection_factory.h │ ├── peer_connection_factory_proxy.h │ ├── peer_connection_internal.h │ ├── peer_connection_message_handler.h │ ├── peer_connection_proxy.h │ ├── peer_connection_sdp_methods.h │ ├── peer_connection_wrapper.h │ ├── proxy.h │ ├── remote_audio_source.h │ ├── rtc_stats_collector.h │ ├── rtc_stats_traversal.h │ ├── rtcp_mux_filter.h │ ├── rtp_media_utils.h │ ├── rtp_parameters_conversion.h │ ├── rtp_receiver.h │ ├── rtp_receiver_proxy.h │ ├── rtp_sender.h │ ├── rtp_sender_proxy.h │ ├── rtp_transceiver.h │ ├── rtp_transmission_manager.h │ ├── rtp_transport.h │ ├── rtp_transport_internal.h │ ├── sctp_data_channel.h │ ├── sctp_data_channel_transport.h │ ├── sctp_transport.h │ ├── sctp_utils.h │ ├── sdp_offer_answer.h │ ├── sdp_serializer.h │ ├── sdp_state_provider.h │ ├── sdp_utils.h │ ├── session_description.h │ ├── simulcast_description.h │ ├── srtp_filter.h │ ├── srtp_session.h │ ├── srtp_transport.h │ ├── stream_collection.h │ ├── test │ │ ├── android_test_initializer.h │ │ ├── fake_audio_capture_module.h │ │ ├── fake_data_channel_controller.h │ │ ├── fake_peer_connection_base.h │ │ ├── fake_peer_connection_for_stats.h │ │ ├── fake_periodic_video_source.h │ │ ├── fake_periodic_video_track_source.h │ │ ├── fake_rtc_certificate_generator.h │ │ ├── fake_video_track_renderer.h │ │ ├── fake_video_track_source.h │ │ ├── frame_generator_capturer_video_track_source.h │ │ ├── integration_test_helpers.h │ │ ├── mock_channel_interface.h │ │ ├── mock_data_channel.h │ │ ├── mock_peer_connection_internal.h │ │ ├── mock_peer_connection_observers.h │ │ ├── mock_rtp_receiver_internal.h │ │ ├── mock_rtp_sender_internal.h │ │ ├── mock_voice_media_channel.h │ │ ├── peer_connection_test_wrapper.h │ │ ├── rtc_stats_obtainer.h │ │ ├── rtp_transport_test_util.h │ │ ├── srtp_test_util.h │ │ └── test_sdp_strings.h │ ├── track_media_info_map.h │ ├── transceiver_list.h │ ├── transport_stats.h │ ├── usage_pattern.h │ ├── used_ids.h │ ├── video_rtp_receiver.h │ ├── video_rtp_track_source.h │ ├── video_track.h │ ├── video_track_source.h │ ├── video_track_source_proxy.h │ ├── webrtc_sdp.h │ └── webrtc_session_description_factory.h ├── rtc_base │ ├── arraysize.h │ ├── async_invoker.h │ ├── async_invoker_inl.h │ ├── async_packet_socket.h │ ├── async_resolver.h │ ├── async_resolver_interface.h │ ├── async_socket.h │ ├── async_tcp_socket.h │ ├── async_udp_socket.h │ ├── bit_buffer.h │ ├── bitstream_reader.h │ ├── boringssl_certificate.h │ ├── boringssl_identity.h │ ├── bounded_inline_vector.h │ ├── bounded_inline_vector_impl.h │ ├── buffer.h │ ├── buffer_queue.h │ ├── byte_buffer.h │ ├── byte_order.h │ ├── callback_list.h │ ├── checks.h │ ├── compile_assert_c.h │ ├── containers │ │ ├── as_const.h │ │ ├── flat_map.h │ │ ├── flat_set.h │ │ ├── flat_tree.h │ │ ├── identity.h │ │ ├── invoke.h │ │ ├── move_only_int.h │ │ ├── not_fn.h │ │ └── void_t.h │ ├── copy_on_write_buffer.h │ ├── cpu_time.h │ ├── crc32.h │ ├── crypt_string.h │ ├── data_rate_limiter.h │ ├── deprecated │ │ └── recursive_critical_section.h │ ├── dscp.h │ ├── event.h │ ├── event_tracer.h │ ├── experiments │ │ ├── alr_experiment.h │ │ ├── balanced_degradation_settings.h │ │ ├── bandwidth_quality_scaler_settings.h │ │ ├── cpu_speed_experiment.h │ │ ├── encoder_info_settings.h │ │ ├── field_trial_list.h │ │ ├── field_trial_parser.h │ │ ├── field_trial_units.h │ │ ├── keyframe_interval_settings.h │ │ ├── min_video_bitrate_experiment.h │ │ ├── normalize_simulcast_size_experiment.h │ │ ├── quality_rampup_experiment.h │ │ ├── quality_scaler_settings.h │ │ ├── quality_scaling_experiment.h │ │ ├── rate_control_settings.h │ │ ├── rtt_mult_experiment.h │ │ ├── stable_target_rate_experiment.h │ │ └── struct_parameters_parser.h │ ├── fake_clock.h │ ├── fake_mdns_responder.h │ ├── fake_network.h │ ├── fake_ssl_identity.h │ ├── file_rotating_stream.h │ ├── firewall_socket_server.h │ ├── gtest_prod_util.h │ ├── gunit.h │ ├── helpers.h │ ├── http_common.h │ ├── ifaddrs_android.h │ ├── ifaddrs_converter.h │ ├── ignore_wundef.h │ ├── internal │ │ └── default_socket_server.h │ ├── ip_address.h │ ├── location.h │ ├── log_sinks.h │ ├── logging.h │ ├── mdns_responder_interface.h │ ├── memory │ │ ├── aligned_malloc.h │ │ ├── always_valid_pointer.h │ │ └── fifo_buffer.h │ ├── memory_stream.h │ ├── memory_usage.h │ ├── message_digest.h │ ├── message_handler.h │ ├── nat_server.h │ ├── nat_socket_factory.h │ ├── nat_types.h │ ├── net_helper.h │ ├── net_helpers.h │ ├── network.h │ ├── network │ │ └── sent_packet.h │ ├── network_constants.h │ ├── network_monitor.h │ ├── network_monitor_factory.h │ ├── network_route.h │ ├── null_socket_server.h │ ├── numerics │ │ ├── divide_round.h │ │ ├── event_based_exponential_moving_average.h │ │ ├── event_rate_counter.h │ │ ├── exp_filter.h │ │ ├── histogram_percentile_counter.h │ │ ├── math_utils.h │ │ ├── mod_ops.h │ │ ├── moving_average.h │ │ ├── moving_max_counter.h │ │ ├── moving_median_filter.h │ │ ├── percentile_filter.h │ │ ├── running_statistics.h │ │ ├── safe_compare.h │ │ ├── safe_conversions.h │ │ ├── safe_conversions_impl.h │ │ ├── safe_minmax.h │ │ ├── sample_counter.h │ │ ├── sample_stats.h │ │ └── sequence_number_util.h │ ├── one_time_event.h │ ├── openssl.h │ ├── openssl_adapter.h │ ├── openssl_certificate.h │ ├── openssl_digest.h │ ├── openssl_identity.h │ ├── openssl_key_pair.h │ ├── openssl_session_cache.h │ ├── openssl_stream_adapter.h │ ├── openssl_utility.h │ ├── operations_chain.h │ ├── physical_socket_server.h │ ├── platform_thread.h │ ├── platform_thread_types.h │ ├── protobuf_utils.h │ ├── proxy_info.h │ ├── proxy_server.h │ ├── race_checker.h │ ├── random.h │ ├── rate_limiter.h │ ├── rate_statistics.h │ ├── rate_tracker.h │ ├── ref_count.h │ ├── ref_counted_object.h │ ├── ref_counter.h │ ├── rolling_accumulator.h │ ├── rtc_certificate.h │ ├── rtc_certificate_generator.h │ ├── sanitizer.h │ ├── server_socket_adapters.h │ ├── sigslot_repeater.h │ ├── sigslot_tester.h │ ├── socket.h │ ├── socket_adapters.h │ ├── socket_address.h │ ├── socket_address_pair.h │ ├── socket_factory.h │ ├── socket_server.h │ ├── socket_stream.h │ ├── socket_unittest.h │ ├── ssl_adapter.h │ ├── ssl_certificate.h │ ├── ssl_fingerprint.h │ ├── ssl_identity.h │ ├── ssl_roots.h │ ├── ssl_stream_adapter.h │ ├── stream.h │ ├── string_encode.h │ ├── string_to_number.h │ ├── string_utils.h │ ├── strings │ │ ├── audio_format_to_string.h │ │ ├── json.h │ │ ├── string_builder.h │ │ └── string_format.h │ ├── strong_alias.h │ ├── swap_queue.h │ ├── synchronization │ │ ├── mutex.h │ │ ├── mutex_abseil.h │ │ ├── mutex_critical_section.h │ │ ├── mutex_pthread.h │ │ ├── sequence_checker_internal.h │ │ ├── yield.h │ │ └── yield_policy.h │ ├── system │ │ ├── arch.h │ │ ├── asm_defines.h │ │ ├── assume.h │ │ ├── cocoa_threading.h │ │ ├── file_wrapper.h │ │ ├── gcd_helpers.h │ │ ├── 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.h │ ├── system_time.h │ ├── task_queue.h │ ├── task_queue_for_test.h │ ├── task_queue_gcd.h │ ├── task_queue_libevent.h │ ├── task_queue_stdlib.h │ ├── task_queue_win.h │ ├── task_utils │ │ ├── pending_task_safety_flag.h │ │ ├── repeating_task.h │ │ └── to_queued_task.h │ ├── test_base64.h │ ├── test_certificate_verifier.h │ ├── test_client.h │ ├── test_echo_server.h │ ├── test_utils.h │ ├── third_party │ │ ├── base64 │ │ │ └── base64.h │ │ └── sigslot │ │ │ └── sigslot.h │ ├── thread.h │ ├── thread_annotations.h │ ├── thread_message.h │ ├── time │ │ └── timestamp_extrapolator.h │ ├── time_utils.h │ ├── timestamp_aligner.h │ ├── trace_event.h │ ├── type_traits.h │ ├── unique_id_generator.h │ ├── units │ │ └── unit_base.h │ ├── untyped_function.h │ ├── virtual_socket_server.h │ ├── weak_ptr.h │ ├── win │ │ ├── create_direct3d_device.h │ │ ├── get_activation_factory.h │ │ ├── hstring.h │ │ ├── scoped_com_initializer.h │ │ └── windows_version.h │ ├── win32.h │ ├── win32_socket_init.h │ ├── win32_window.h │ └── zero_memory.h ├── rtc_tools │ ├── converter │ │ └── converter.h │ ├── data_channel_benchmark │ │ ├── grpc_signaling.h │ │ ├── peer_connection_client.h │ │ └── signaling_interface.h │ ├── frame_analyzer │ │ ├── linear_least_squares.h │ │ ├── reference_less_video_analysis_lib.h │ │ ├── video_color_aligner.h │ │ ├── video_geometry_aligner.h │ │ ├── video_quality_analysis.h │ │ └── video_temporal_aligner.h │ ├── network_tester │ │ ├── config_reader.h │ │ ├── packet_logger.h │ │ ├── packet_sender.h │ │ └── test_controller.h │ ├── rtc_event_log_visualizer │ │ ├── alerts.h │ │ ├── analyze_audio.h │ │ ├── analyzer.h │ │ ├── analyzer_common.h │ │ ├── conversational_speech_en.h │ │ ├── log_simulation.h │ │ ├── plot_base.h │ │ ├── plot_protobuf.h │ │ └── plot_python.h │ ├── rtp_generator │ │ └── rtp_generator.h │ ├── video_file_reader.h │ └── video_file_writer.h ├── sdk │ ├── android │ │ ├── native_api │ │ │ ├── audio_device_module │ │ │ │ └── audio_device_android.h │ │ │ ├── base │ │ │ │ └── init.h │ │ │ ├── codecs │ │ │ │ └── wrapper.h │ │ │ ├── jni │ │ │ │ ├── class_loader.h │ │ │ │ ├── java_types.h │ │ │ │ ├── jni_int_wrapper.h │ │ │ │ ├── jvm.h │ │ │ │ └── scoped_java_ref.h │ │ │ ├── network_monitor │ │ │ │ └── network_monitor.h │ │ │ ├── peerconnection │ │ │ │ └── peer_connection_factory.h │ │ │ ├── stacktrace │ │ │ │ └── stacktrace.h │ │ │ └── video │ │ │ │ ├── video_source.h │ │ │ │ └── wrapper.h │ │ ├── native_unittests │ │ │ └── application_context_provider.h │ │ └── src │ │ │ └── jni │ │ │ ├── android_network_monitor.h │ │ │ ├── android_video_track_source.h │ │ │ ├── audio_device │ │ │ ├── aaudio_player.h │ │ │ ├── aaudio_recorder.h │ │ │ ├── aaudio_wrapper.h │ │ │ ├── audio_common.h │ │ │ ├── audio_device_module.h │ │ │ ├── audio_record_jni.h │ │ │ ├── audio_track_jni.h │ │ │ ├── opensles_common.h │ │ │ ├── opensles_player.h │ │ │ └── opensles_recorder.h │ │ │ ├── encoded_image.h │ │ │ ├── jni_generator_helper.h │ │ │ ├── jni_helpers.h │ │ │ ├── jvm.h │ │ │ ├── logging │ │ │ └── log_sink.h │ │ │ ├── native_capturer_observer.h │ │ │ ├── pc │ │ │ ├── add_ice_candidate_observer.h │ │ │ ├── android_network_monitor.h │ │ │ ├── audio.h │ │ │ ├── crypto_options.h │ │ │ ├── data_channel.h │ │ │ ├── ice_candidate.h │ │ │ ├── media_constraints.h │ │ │ ├── media_stream.h │ │ │ ├── media_stream_track.h │ │ │ ├── owned_factory_and_threads.h │ │ │ ├── peer_connection.h │ │ │ ├── peer_connection_factory.h │ │ │ ├── rtc_certificate.h │ │ │ ├── rtc_stats_collector_callback_wrapper.h │ │ │ ├── rtp_parameters.h │ │ │ ├── rtp_receiver.h │ │ │ ├── rtp_sender.h │ │ │ ├── rtp_transceiver.h │ │ │ ├── sdp_observer.h │ │ │ ├── session_description.h │ │ │ ├── ssl_certificate_verifier_wrapper.h │ │ │ ├── stats_observer.h │ │ │ ├── turn_customizer.h │ │ │ └── video.h │ │ │ ├── scoped_java_ref_counted.h │ │ │ ├── video_codec_info.h │ │ │ ├── video_codec_status.h │ │ │ ├── video_decoder_factory_wrapper.h │ │ │ ├── video_decoder_wrapper.h │ │ │ ├── video_encoder_factory_wrapper.h │ │ │ ├── video_encoder_wrapper.h │ │ │ ├── video_frame.h │ │ │ ├── video_sink.h │ │ │ └── wrapped_native_i420_buffer.h │ ├── media_constraints.h │ └── objc │ │ ├── Framework │ │ ├── Classes │ │ │ ├── Common │ │ │ │ ├── NSString+StdString.h │ │ │ │ └── scoped_cftyperef.h │ │ │ ├── PeerConnection │ │ │ │ ├── RTCConfiguration+Native.h │ │ │ │ └── RTCPeerConnectionFactory+Native.h │ │ │ ├── Video │ │ │ │ ├── RTCDefaultShader.h │ │ │ │ └── RTCNV12TextureCache.h │ │ │ └── VideoToolbox │ │ │ │ └── nalu_rewriter.h │ │ └── Native │ │ │ ├── api │ │ │ ├── audio_device_module.h │ │ │ ├── video_decoder_factory.h │ │ │ ├── video_encoder_factory.h │ │ │ └── video_frame_buffer.h │ │ │ └── src │ │ │ ├── objc_video_decoder_factory.h │ │ │ └── objc_video_encoder_factory.h │ │ ├── api │ │ ├── RTCVideoRendererAdapter+Private.h │ │ ├── RTCVideoRendererAdapter.h │ │ ├── logging │ │ │ └── RTCCallbackLogger.h │ │ ├── peerconnection │ │ │ ├── RTCAudioSource+Private.h │ │ │ ├── RTCAudioSource.h │ │ │ ├── RTCAudioTrack+Private.h │ │ │ ├── RTCAudioTrack.h │ │ │ ├── RTCCertificate.h │ │ │ ├── RTCConfiguration+Native.h │ │ │ ├── RTCConfiguration+Private.h │ │ │ ├── RTCConfiguration.h │ │ │ ├── RTCCryptoOptions.h │ │ │ ├── RTCDataChannel+Private.h │ │ │ ├── RTCDataChannel.h │ │ │ ├── RTCDataChannelConfiguration+Private.h │ │ │ ├── RTCDataChannelConfiguration.h │ │ │ ├── RTCDtmfSender+Private.h │ │ │ ├── RTCDtmfSender.h │ │ │ ├── RTCEncodedImage+Private.h │ │ │ ├── RTCFieldTrials.h │ │ │ ├── RTCFileLogger.h │ │ │ ├── RTCIceCandidate+Private.h │ │ │ ├── RTCIceCandidate.h │ │ │ ├── RTCIceCandidateErrorEvent+Private.h │ │ │ ├── RTCIceCandidateErrorEvent.h │ │ │ ├── RTCIceServer+Private.h │ │ │ ├── RTCIceServer.h │ │ │ ├── RTCLegacyStatsReport+Private.h │ │ │ ├── RTCLegacyStatsReport.h │ │ │ ├── RTCMediaConstraints+Private.h │ │ │ ├── RTCMediaConstraints.h │ │ │ ├── RTCMediaSource+Private.h │ │ │ ├── RTCMediaSource.h │ │ │ ├── RTCMediaStream+Private.h │ │ │ ├── RTCMediaStream.h │ │ │ ├── RTCMediaStreamTrack+Private.h │ │ │ ├── RTCMediaStreamTrack.h │ │ │ ├── RTCMetrics.h │ │ │ ├── RTCMetricsSampleInfo+Private.h │ │ │ ├── RTCMetricsSampleInfo.h │ │ │ ├── RTCPeerConnection+Private.h │ │ │ ├── RTCPeerConnection.h │ │ │ ├── RTCPeerConnectionFactory+Native.h │ │ │ ├── RTCPeerConnectionFactory+Private.h │ │ │ ├── RTCPeerConnectionFactory.h │ │ │ ├── RTCPeerConnectionFactoryBuilder+DefaultComponents.h │ │ │ ├── RTCPeerConnectionFactoryBuilder.h │ │ │ ├── RTCPeerConnectionFactoryOptions+Private.h │ │ │ ├── RTCPeerConnectionFactoryOptions.h │ │ │ ├── RTCRtcpParameters+Private.h │ │ │ ├── RTCRtcpParameters.h │ │ │ ├── RTCRtpCodecParameters+Private.h │ │ │ ├── RTCRtpCodecParameters.h │ │ │ ├── RTCRtpEncodingParameters+Private.h │ │ │ ├── RTCRtpEncodingParameters.h │ │ │ ├── RTCRtpHeaderExtension+Private.h │ │ │ ├── RTCRtpHeaderExtension.h │ │ │ ├── RTCRtpParameters+Private.h │ │ │ ├── RTCRtpParameters.h │ │ │ ├── RTCRtpReceiver+Native.h │ │ │ ├── RTCRtpReceiver+Private.h │ │ │ ├── RTCRtpReceiver.h │ │ │ ├── RTCRtpSender+Native.h │ │ │ ├── RTCRtpSender+Private.h │ │ │ ├── RTCRtpSender.h │ │ │ ├── RTCRtpTransceiver+Private.h │ │ │ ├── RTCRtpTransceiver.h │ │ │ ├── RTCSSLAdapter.h │ │ │ ├── RTCSessionDescription+Private.h │ │ │ ├── RTCSessionDescription.h │ │ │ ├── RTCStatisticsReport+Private.h │ │ │ ├── RTCStatisticsReport.h │ │ │ ├── RTCTracing.h │ │ │ ├── RTCVideoCodecInfo+Private.h │ │ │ ├── RTCVideoEncoderSettings+Private.h │ │ │ ├── RTCVideoSource+Private.h │ │ │ ├── RTCVideoSource.h │ │ │ ├── RTCVideoTrack+Private.h │ │ │ └── RTCVideoTrack.h │ │ ├── video_codec │ │ │ ├── RTCVideoCodecConstants.h │ │ │ ├── RTCVideoDecoderAV1.h │ │ │ ├── RTCVideoDecoderVP8.h │ │ │ ├── RTCVideoDecoderVP9.h │ │ │ ├── RTCVideoEncoderAV1.h │ │ │ ├── RTCVideoEncoderVP8.h │ │ │ ├── RTCVideoEncoderVP9.h │ │ │ ├── RTCWrappedNativeVideoDecoder.h │ │ │ └── RTCWrappedNativeVideoEncoder.h │ │ └── video_frame_buffer │ │ │ ├── RTCNativeI420Buffer+Private.h │ │ │ ├── RTCNativeI420Buffer.h │ │ │ └── RTCNativeMutableI420Buffer.h │ │ ├── base │ │ ├── RTCCodecSpecificInfo.h │ │ ├── RTCEncodedImage.h │ │ ├── RTCI420Buffer.h │ │ ├── RTCLogging.h │ │ ├── RTCMacros.h │ │ ├── RTCMutableI420Buffer.h │ │ ├── RTCMutableYUVPlanarBuffer.h │ │ ├── RTCSSLCertificateVerifier.h │ │ ├── RTCVideoCapturer.h │ │ ├── RTCVideoCodecInfo.h │ │ ├── RTCVideoDecoder.h │ │ ├── RTCVideoDecoderFactory.h │ │ ├── RTCVideoEncoder.h │ │ ├── RTCVideoEncoderFactory.h │ │ ├── RTCVideoEncoderQpThresholds.h │ │ ├── RTCVideoEncoderSettings.h │ │ ├── RTCVideoFrame.h │ │ ├── RTCVideoFrameBuffer.h │ │ ├── RTCVideoRenderer.h │ │ └── RTCYUVPlanarBuffer.h │ │ ├── components │ │ ├── audio │ │ │ ├── RTCAudioSession+Private.h │ │ │ ├── RTCAudioSession.h │ │ │ ├── RTCAudioSessionConfiguration.h │ │ │ └── RTCNativeAudioSessionDelegateAdapter.h │ │ ├── capturer │ │ │ ├── RTCCameraVideoCapturer.h │ │ │ └── RTCFileVideoCapturer.h │ │ ├── network │ │ │ ├── RTCNetworkMonitor+Private.h │ │ │ └── RTCNetworkMonitor.h │ │ ├── renderer │ │ │ ├── metal │ │ │ │ ├── RTCMTLI420Renderer.h │ │ │ │ ├── RTCMTLNSVideoView.h │ │ │ │ ├── RTCMTLNV12Renderer.h │ │ │ │ ├── RTCMTLRGBRenderer.h │ │ │ │ ├── RTCMTLRenderer+Private.h │ │ │ │ ├── RTCMTLRenderer.h │ │ │ │ └── RTCMTLVideoView.h │ │ │ └── opengl │ │ │ │ ├── RTCDefaultShader.h │ │ │ │ ├── RTCDisplayLinkTimer.h │ │ │ │ ├── RTCEAGLVideoView.h │ │ │ │ ├── RTCI420TextureCache.h │ │ │ │ ├── RTCNSGLVideoView.h │ │ │ │ ├── RTCNV12TextureCache.h │ │ │ │ ├── RTCOpenGLDefines.h │ │ │ │ ├── RTCShader.h │ │ │ │ └── RTCVideoViewShading.h │ │ ├── video_codec │ │ │ ├── RTCCodecSpecificInfoH264+Private.h │ │ │ ├── RTCCodecSpecificInfoH264.h │ │ │ ├── RTCDefaultVideoDecoderFactory.h │ │ │ ├── RTCDefaultVideoEncoderFactory.h │ │ │ ├── RTCH264ProfileLevelId.h │ │ │ ├── RTCVideoDecoderFactoryH264.h │ │ │ ├── RTCVideoDecoderH264.h │ │ │ ├── RTCVideoEncoderFactoryH264.h │ │ │ ├── RTCVideoEncoderH264.h │ │ │ ├── UIDevice+H264Profile.h │ │ │ ├── helpers.h │ │ │ └── nalu_rewriter.h │ │ └── video_frame_buffer │ │ │ └── RTCCVPixelBuffer.h │ │ ├── helpers │ │ ├── AVCaptureSession+DevicePosition.h │ │ ├── NSString+StdString.h │ │ ├── RTCCameraPreviewView.h │ │ ├── RTCDispatcher+Private.h │ │ ├── RTCDispatcher.h │ │ ├── UIDevice+RTCDevice.h │ │ └── scoped_cftyperef.h │ │ ├── native │ │ ├── api │ │ │ ├── audio_device_module.h │ │ │ ├── network_monitor_factory.h │ │ │ ├── ssl_certificate_verifier.h │ │ │ ├── video_capturer.h │ │ │ ├── video_decoder_factory.h │ │ │ ├── video_encoder_factory.h │ │ │ ├── video_frame.h │ │ │ ├── video_frame_buffer.h │ │ │ └── video_renderer.h │ │ └── src │ │ │ ├── audio │ │ │ ├── audio_device_ios.h │ │ │ ├── audio_device_module_ios.h │ │ │ ├── audio_session_observer.h │ │ │ ├── helpers.h │ │ │ └── voice_processing_audio_unit.h │ │ │ ├── network_monitor_observer.h │ │ │ ├── objc_frame_buffer.h │ │ │ ├── objc_network_monitor.h │ │ │ ├── objc_video_decoder_factory.h │ │ │ ├── objc_video_encoder_factory.h │ │ │ ├── objc_video_frame.h │ │ │ ├── objc_video_renderer.h │ │ │ └── objc_video_track_source.h │ │ └── unittests │ │ └── frame_buffer_helpers.h ├── stats │ └── test │ │ └── rtc_test_stats.h ├── system_wrappers │ └── 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 ├── test │ ├── audio_decoder_proxy_factory.h │ ├── call_config_utils.h │ ├── call_test.h │ ├── configurable_frame_size_encoder.h │ ├── direct_transport.h │ ├── drifting_clock.h │ ├── encoder_settings.h │ ├── explicit_key_value_config.h │ ├── fake_decoder.h │ ├── fake_encoded_frame.h │ ├── fake_encoder.h │ ├── fake_texture_frame.h │ ├── fake_videorenderer.h │ ├── fake_vp8_decoder.h │ ├── fake_vp8_encoder.h │ ├── field_trial.h │ ├── frame_forwarder.h │ ├── frame_generator.h │ ├── frame_generator_capturer.h │ ├── frame_utils.h │ ├── function_audio_decoder_factory.h │ ├── fuzzers │ │ ├── audio_decoder_fuzzer.h │ │ ├── audio_encoder_fuzzer.h │ │ ├── audio_processing_fuzzer_helper.h │ │ ├── fuzz_data_helper.h │ │ └── utils │ │ │ └── rtp_replayer.h │ ├── gl │ │ └── gl_renderer.h │ ├── gmock.h │ ├── gtest.h │ ├── ios │ │ ├── coverage_util_ios.h │ │ ├── google_test_runner_delegate.h │ │ └── test_support.h │ ├── layer_filtering_transport.h │ ├── linux │ │ └── glx_renderer.h │ ├── logging │ │ ├── file_log_writer.h │ │ ├── log_writer.h │ │ └── memory_log_writer.h │ ├── mac │ │ └── video_renderer_mac.h │ ├── mac_capturer.h │ ├── mappable_native_buffer.h │ ├── mock_audio_decoder.h │ ├── mock_audio_decoder_factory.h │ ├── mock_audio_encoder.h │ ├── mock_audio_encoder_factory.h │ ├── mock_frame_transformer.h │ ├── mock_transformable_frame.h │ ├── mock_transport.h │ ├── network │ │ ├── cross_traffic.h │ │ ├── emulated_network_manager.h │ │ ├── emulated_turn_server.h │ │ ├── fake_network_socket_server.h │ │ ├── feedback_generator.h │ │ ├── network_emulation.h │ │ ├── network_emulation_manager.h │ │ └── traffic_route.h │ ├── null_transport.h │ ├── pc │ │ ├── e2e │ │ │ ├── analyzer │ │ │ │ ├── audio │ │ │ │ │ └── default_audio_quality_analyzer.h │ │ │ │ └── video │ │ │ │ │ ├── default_video_quality_analyzer.h │ │ │ │ │ ├── default_video_quality_analyzer_cpu_measurer.h │ │ │ │ │ ├── default_video_quality_analyzer_frame_in_flight.h │ │ │ │ │ ├── default_video_quality_analyzer_frames_comparator.h │ │ │ │ │ ├── default_video_quality_analyzer_internal_shared_objects.h │ │ │ │ │ ├── default_video_quality_analyzer_shared_objects.h │ │ │ │ │ ├── default_video_quality_analyzer_stream_state.h │ │ │ │ │ ├── encoded_image_data_injector.h │ │ │ │ │ ├── example_video_quality_analyzer.h │ │ │ │ │ ├── multi_reader_queue.h │ │ │ │ │ ├── names_collection.h │ │ │ │ │ ├── quality_analyzing_video_decoder.h │ │ │ │ │ ├── quality_analyzing_video_encoder.h │ │ │ │ │ ├── simulcast_dummy_buffer_helper.h │ │ │ │ │ ├── single_process_encoded_image_data_injector.h │ │ │ │ │ ├── video_frame_tracking_id_injector.h │ │ │ │ │ ├── video_quality_analyzer_injection_helper.h │ │ │ │ │ └── video_quality_metrics_reporter.h │ │ │ ├── analyzer_helper.h │ │ │ ├── cross_media_metrics_reporter.h │ │ │ ├── echo │ │ │ │ └── echo_emulation.h │ │ │ ├── media │ │ │ │ ├── media_helper.h │ │ │ │ └── test_video_capturer_video_track_source.h │ │ │ ├── network_quality_metrics_reporter.h │ │ │ ├── peer_configurer.h │ │ │ ├── peer_connection_quality_test.h │ │ │ ├── peer_connection_quality_test_params.h │ │ │ ├── sdp │ │ │ │ └── sdp_changer.h │ │ │ ├── stats_based_network_quality_metrics_reporter.h │ │ │ ├── stats_poller.h │ │ │ ├── stats_provider.h │ │ │ ├── test_activities_executor.h │ │ │ ├── test_peer.h │ │ │ └── test_peer_factory.h │ │ └── sctp │ │ │ └── fake_sctp_transport.h │ ├── peer_scenario │ │ ├── peer_scenario.h │ │ ├── peer_scenario_client.h │ │ ├── scenario_connection.h │ │ └── signaling_route.h │ ├── platform_video_capturer.h │ ├── rtcp_packet_parser.h │ ├── rtp_file_reader.h │ ├── rtp_file_writer.h │ ├── rtp_rtcp_observer.h │ ├── run_loop.h │ ├── run_test.h │ ├── scenario │ │ ├── audio_stream.h │ │ ├── call_client.h │ │ ├── column_printer.h │ │ ├── hardware_codecs.h │ │ ├── network_node.h │ │ ├── performance_stats.h │ │ ├── scenario.h │ │ ├── scenario_config.h │ │ ├── stats_collection.h │ │ ├── video_frame_matcher.h │ │ └── video_stream.h │ ├── scoped_key_value_config.h │ ├── test_flags.h │ ├── test_main_lib.h │ ├── test_video_capturer.h │ ├── testsupport │ │ ├── copy_to_file_audio_capturer.h │ │ ├── file_utils.h │ │ ├── file_utils_override.h │ │ ├── fixed_fps_video_frame_writer_adapter.h │ │ ├── frame_reader.h │ │ ├── frame_writer.h │ │ ├── ios_file_utils.h │ │ ├── ivf_video_frame_generator.h │ │ ├── mac_file_utils.h │ │ ├── mock │ │ │ └── mock_frame_reader.h │ │ ├── perf_result_reporter.h │ │ ├── perf_test.h │ │ ├── perf_test_histogram_writer.h │ │ ├── perf_test_result_writer.h │ │ ├── resources_dir_flag.h │ │ ├── rtc_expect_death.h │ │ ├── test_artifacts.h │ │ └── video_frame_writer.h │ ├── time_controller │ │ ├── external_time_controller.h │ │ ├── real_time_controller.h │ │ ├── simulated_task_queue.h │ │ ├── simulated_thread.h │ │ └── simulated_time_controller.h │ ├── vcm_capturer.h │ ├── video_codec_settings.h │ ├── video_decoder_proxy_factory.h │ ├── video_encoder_nullable_proxy_factory.h │ ├── video_encoder_proxy_factory.h │ ├── video_renderer.h │ └── win │ │ └── d3d_renderer.h ├── testing │ ├── android │ │ └── native_test │ │ │ ├── main_runner.h │ │ │ ├── native_browser_test_support.h │ │ │ ├── native_test_launcher.h │ │ │ └── native_test_util.h │ ├── coverage_util_ios.h │ ├── data_driven_testing │ │ └── data_driven_test.h │ ├── gmock │ │ └── include │ │ │ └── gmock │ │ │ ├── gmock-actions.h │ │ │ ├── gmock-matchers.h │ │ │ └── gmock.h │ ├── gtest │ │ └── include │ │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest.h │ │ │ └── gtest_prod.h │ ├── gtest_mac.h │ ├── libfuzzer │ │ ├── fuzzer_support_ios │ │ │ └── fuzzer_support.h │ │ ├── fuzzers │ │ │ ├── color_space_data.h │ │ │ ├── javascript_parser_proto_to_string.h │ │ │ ├── mach │ │ │ │ └── mach_message_converter.h │ │ │ └── skia_path_common.h │ │ ├── libfuzzer_exports.h │ │ └── proto │ │ │ ├── json_proto_converter.h │ │ │ ├── lpm_interface.h │ │ │ ├── skia_image_filter_proto_converter.h │ │ │ └── url_proto_converter.h │ ├── multiprocess_func_list.h │ ├── perf │ │ ├── luci_test_result.h │ │ ├── perf_result_reporter.h │ │ └── perf_test.h │ ├── platform_test.h │ └── rust_gtest_interop │ │ ├── rust_gtest_interop.h │ │ └── test │ │ └── test_subclass.h ├── tools │ ├── accessibility │ │ └── inspect │ │ │ ├── ax_event_server.h │ │ │ ├── ax_tree_server.h │ │ │ └── ax_utils.h │ ├── aggregation_service │ │ ├── aggregation_service_tool.h │ │ └── aggregation_service_tool_network_initializer.h │ ├── android │ │ ├── common │ │ │ ├── adb_connection.h │ │ │ ├── daemon.h │ │ │ └── net.h │ │ ├── elf_compression │ │ │ └── test │ │ │ │ └── libtest_array.h │ │ ├── forwarder2 │ │ │ ├── command.h │ │ │ ├── common.h │ │ │ ├── daemon.h │ │ │ ├── device_controller.h │ │ │ ├── device_listener.h │ │ │ ├── forwarder.h │ │ │ ├── forwarders_manager.h │ │ │ ├── host_controller.h │ │ │ ├── host_controllers_manager.h │ │ │ ├── pipe_notifier.h │ │ │ ├── self_deleter_helper.h │ │ │ ├── socket.h │ │ │ └── util.h │ │ └── memtrack_helper │ │ │ └── memtrack_helper.h │ ├── binary_size │ │ └── libsupersize │ │ │ └── viewer │ │ │ └── caspian │ │ │ ├── diff.h │ │ │ ├── file_format.h │ │ │ ├── function_signature.h │ │ │ ├── grouped_path.h │ │ │ ├── lens.h │ │ │ ├── model.h │ │ │ └── tree_builder.h │ ├── clang │ │ ├── base_bind_rewriters │ │ │ └── tests │ │ │ │ └── callback.h │ │ ├── blink_gc_plugin │ │ │ ├── BadPatternFinder.h │ │ │ ├── BlinkGCPluginConsumer.h │ │ │ ├── BlinkGCPluginOptions.h │ │ │ ├── CheckDispatchVisitor.h │ │ │ ├── CheckFieldsVisitor.h │ │ │ ├── CheckFinalizerVisitor.h │ │ │ ├── CheckGCRootsVisitor.h │ │ │ ├── CheckTraceVisitor.h │ │ │ ├── CollectVisitor.h │ │ │ ├── Config.h │ │ │ ├── DiagnosticsReporter.h │ │ │ ├── Edge.h │ │ │ ├── JsonWriter.h │ │ │ ├── NeedsTracing.h │ │ │ ├── RecordInfo.h │ │ │ ├── TracingStatus.h │ │ │ └── tests │ │ │ │ ├── base_class_must_define_virtual_trace.h │ │ │ │ ├── base_requires_tracing.h │ │ │ │ ├── class_does_not_require_finalization.h │ │ │ │ ├── class_multiple_trace_bases.h │ │ │ │ ├── class_overrides_new.h │ │ │ │ ├── class_requires_trace_method.h │ │ │ │ ├── class_requires_trace_method_tmpl.h │ │ │ │ ├── crash_on_invalid.h │ │ │ │ ├── cycle_ptrs.h │ │ │ │ ├── cycle_sub.h │ │ │ │ ├── cycle_super.h │ │ │ │ ├── cycle_super_neg.h │ │ │ │ ├── destructor_access_finalized_field.h │ │ │ │ ├── fields_illegal_tracing.h │ │ │ │ ├── fields_require_tracing.h │ │ │ │ ├── finalize_after_dispatch.h │ │ │ │ ├── garbage_collected_mixin.h │ │ │ │ ├── heap │ │ │ │ └── stubs.h │ │ │ │ ├── ignore_class.h │ │ │ │ ├── ignore_fields.h │ │ │ │ ├── inner_class.h │ │ │ │ ├── left_most_gc_base.h │ │ │ │ ├── make_unique_gc_object.h │ │ │ │ ├── member_in_offheap_class.h │ │ │ │ ├── member_on_stack.h │ │ │ │ ├── non_virtual_trace.h │ │ │ │ ├── optional_gc_object.h │ │ │ │ ├── part_object_to_gc_derived_class.h │ │ │ │ ├── persistent_field_in_gc_managed_class.h │ │ │ │ ├── persistent_no_trace.h │ │ │ │ ├── polymorphic_class_with_non_virtual_trace.h │ │ │ │ ├── pure_virtual_trace.h │ │ │ │ ├── raw_ptr_to_gc_managed_class.h │ │ │ │ ├── raw_ptr_to_gc_managed_class_error.h │ │ │ │ ├── ref_ptr_to_gc_managed_class.h │ │ │ │ ├── register_weak_members_template.h │ │ │ │ ├── stack_allocated.h │ │ │ │ ├── templated_class_with_local_class_requires_trace.h │ │ │ │ ├── trace_after_dispatch.h │ │ │ │ ├── trace_after_dispatch_impl.h │ │ │ │ ├── trace_after_dispatch_impl_error.h │ │ │ │ ├── trace_collections.h │ │ │ │ ├── trace_if_needed.h │ │ │ │ ├── trace_if_needed_resolved.h │ │ │ │ ├── trace_templated_super.h │ │ │ │ ├── trace_wrapper.h │ │ │ │ ├── traceimpl.h │ │ │ │ ├── traceimpl_dependent_scope.h │ │ │ │ ├── traceimpl_derived_from_templated_base.h │ │ │ │ ├── traceimpl_error.h │ │ │ │ ├── traceimpl_omitted_trace.h │ │ │ │ ├── traceimpl_overloaded.h │ │ │ │ ├── traceimpl_overloaded_error.h │ │ │ │ ├── unique_ptr_to_gc_managed_class.h │ │ │ │ ├── variant_of_gced_type.h │ │ │ │ ├── virtual_and_trace_after_dispatch.h │ │ │ │ └── weak_fields_require_tracing.h │ │ ├── plugins │ │ │ ├── CheckIPCVisitor.h │ │ │ ├── CheckLayoutObjectMethodsVisitor.h │ │ │ ├── ChromeClassTester.h │ │ │ ├── FindBadConstructsAction.h │ │ │ ├── FindBadConstructsConsumer.h │ │ │ ├── Options.h │ │ │ ├── SuppressibleDiagnosticBuilder.h │ │ │ ├── Util.h │ │ │ └── tests │ │ │ │ ├── atomic_member.h │ │ │ │ ├── base │ │ │ │ └── memory │ │ │ │ │ ├── checked_ptr.h │ │ │ │ │ └── raw_ptr.h │ │ │ │ ├── base_refcounted.h │ │ │ │ ├── class_with_incomplete_type.h │ │ │ │ ├── inline_copy_ctor.h │ │ │ │ ├── inline_ctor.h │ │ │ │ ├── layout_object_methods.h │ │ │ │ ├── missing_ctor.h │ │ │ │ ├── missing_ctor_dllexport.h │ │ │ │ ├── missing_ctor_ignored_base.h │ │ │ │ ├── nested_class_inline_ctor.h │ │ │ │ ├── overridden_methods.h │ │ │ │ ├── system │ │ │ │ └── windows.h │ │ │ │ ├── virtual_bodies.h │ │ │ │ └── weak_ptr_factory.h │ │ ├── rewrite_raw_ptr_fields │ │ │ └── tests │ │ │ │ └── gen │ │ │ │ └── generated_header.h │ │ ├── rewrite_scoped_refptr │ │ │ └── tests │ │ │ │ └── scoped_refptr.h │ │ ├── rewrite_to_chrome_style │ │ │ ├── EditTracker.h │ │ │ └── tests │ │ │ │ └── gen │ │ │ │ └── thing.h │ │ ├── scripts │ │ │ └── sanitizers │ │ │ │ └── sanitizer_intercept_overriders.h │ │ ├── stack_maps │ │ │ ├── gc │ │ │ │ ├── gc_api.h │ │ │ │ └── stack_map_parser.h │ │ │ ├── objects.h │ │ │ └── tests.h │ │ ├── translation_unit │ │ │ └── test_files │ │ │ │ ├── binomial.h │ │ │ │ └── test.h │ │ └── value_cleanup │ │ │ ├── ValueRewriter.h │ │ │ └── tests │ │ │ └── values.h │ ├── gn │ │ └── tutorial │ │ │ └── hello.h │ ├── imagediff │ │ └── image_diff_png.h │ ├── ipc_fuzzer │ │ ├── fuzzer │ │ │ ├── fuzzer.h │ │ │ ├── generator.h │ │ │ ├── mutator.h │ │ │ └── rand_util.h │ │ ├── message_lib │ │ │ ├── all_message_null_macros.h │ │ │ ├── all_messages.h │ │ │ ├── message_cracker.h │ │ │ ├── message_file.h │ │ │ ├── message_file_format.h │ │ │ └── message_names.h │ │ └── message_replay │ │ │ └── replay_process.h │ ├── json_schema_compiler │ │ ├── manifest_parse_util.h │ │ ├── test │ │ │ └── test_util.h │ │ └── util.h │ ├── mac │ │ ├── icons │ │ │ └── additional_tools │ │ │ │ ├── makepng.h │ │ │ │ └── unpackicon.h │ │ └── power │ │ │ └── power_sampler │ │ │ ├── battery_sampler.h │ │ │ ├── csv_exporter.h │ │ │ ├── json_exporter.h │ │ │ ├── m1_sampler.h │ │ │ ├── main_display_sampler.h │ │ │ ├── monitor.h │ │ │ ├── resource_coalition_sampler.h │ │ │ ├── sample_counter.h │ │ │ ├── sampler.h │ │ │ ├── sampling_controller.h │ │ │ ├── smc_sampler.h │ │ │ ├── user_active_simulator.h │ │ │ └── user_idle_level_sampler.h │ ├── memory │ │ └── partition_allocator │ │ │ ├── inspect_utils.h │ │ │ └── palloc_viewer │ │ │ └── common.h │ ├── privacy_budget │ │ ├── clock_skew │ │ │ └── clock_skew_tool.h │ │ └── font_indexer │ │ │ └── font_indexer.h │ ├── strict_enum_value_checker │ │ ├── changed_file_1.h │ │ ├── changed_file_10.h │ │ ├── changed_file_2.h │ │ ├── changed_file_3.h │ │ ├── changed_file_4.h │ │ ├── changed_file_5.h │ │ ├── changed_file_6.h │ │ ├── changed_file_7.h │ │ ├── changed_file_8.h │ │ ├── changed_file_9.h │ │ └── mock_enum.h │ ├── traceline │ │ └── traceline │ │ │ ├── assembler.h │ │ │ ├── logging.h │ │ │ ├── rdtsc.h │ │ │ ├── sidestep │ │ │ ├── mini_disassembler.h │ │ │ └── mini_disassembler_types.h │ │ │ ├── sym_resolver.h │ │ │ └── syscall_map.h │ ├── variations │ │ └── unittest_data │ │ │ └── expected_output.h │ └── win │ │ ├── IdleWakeups │ │ ├── power_sampler.h │ │ ├── stdafx.h │ │ └── system_information_sampler.h │ │ └── chromeexts │ │ ├── chrome_exts_command.h │ │ └── commands │ │ ├── hwnd_command.h │ │ └── view_command.h └── video │ ├── adaptation │ ├── balanced_constraint.h │ ├── bandwidth_quality_scaler_resource.h │ ├── bitrate_constraint.h │ ├── encode_usage_resource.h │ ├── overuse_frame_detector.h │ ├── pixel_limit_resource.h │ ├── quality_rampup_experiment_helper.h │ ├── quality_scaler_resource.h │ ├── video_stream_encoder_resource.h │ └── video_stream_encoder_resource_manager.h │ ├── alignment_adjuster.h │ ├── buffered_frame_decryptor.h │ ├── call_stats2.h │ ├── decode_synchronizer.h │ ├── encoder_bitrate_adjuster.h │ ├── encoder_overshoot_detector.h │ ├── encoder_rtcp_feedback.h │ ├── end_to_end_tests │ └── multi_stream_tester.h │ ├── frame_buffer_proxy.h │ ├── frame_cadence_adapter.h │ ├── frame_decode_scheduler.h │ ├── frame_decode_timing.h │ ├── frame_dumping_decoder.h │ ├── frame_encode_metadata_writer.h │ ├── quality_limitation_reason_tracker.h │ ├── quality_threshold.h │ ├── receive_statistics_proxy2.h │ ├── report_block_stats.h │ ├── rtp_streams_synchronizer2.h │ ├── rtp_video_stream_receiver2.h │ ├── rtp_video_stream_receiver_frame_transformer_delegate.h │ ├── send_delay_stats.h │ ├── send_statistics_proxy.h │ ├── stats_counter.h │ ├── stream_synchronization.h │ ├── task_queue_frame_decode_scheduler.h │ ├── test │ └── mock_video_stream_encoder.h │ ├── transport_adapter.h │ ├── unique_timestamp_counter.h │ ├── video_analyzer.h │ ├── video_loopback.h │ ├── video_quality_observer2.h │ ├── video_quality_test.h │ ├── video_receive_stream2.h │ ├── video_receive_stream_timeout_tracker.h │ ├── video_send_stream.h │ ├── video_send_stream_impl.h │ ├── video_source_sink_controller.h │ ├── video_stream_decoder2.h │ ├── video_stream_decoder_impl.h │ └── video_stream_encoder.h ├── lib ├── binding.js └── libwebrtc.a ├── package.json ├── pnpm-lock.yaml ├── scripts ├── install.sh └── patch.js ├── src ├── DiscordInjector.cc ├── DiscordInjector.h ├── Hook.cc ├── Hook.h ├── Hooker.cc ├── Hooker.h ├── LogSinkImpl.cc ├── LogSinkImpl.h ├── desktop_capture_source.cc ├── desktop_capture_source.h ├── main.cc └── utils │ ├── threads.cc │ └── threads.h └── test.js /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/README.md -------------------------------------------------------------------------------- /fridaexp/frida.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/fridaexp/frida.js -------------------------------------------------------------------------------- /fridaexp/frida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/fridaexp/frida.py -------------------------------------------------------------------------------- /include/absl/algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/algorithm/algorithm.h -------------------------------------------------------------------------------- /include/absl/algorithm/container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/algorithm/container.h -------------------------------------------------------------------------------- /include/absl/base/attributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/attributes.h -------------------------------------------------------------------------------- /include/absl/base/call_once.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/call_once.h -------------------------------------------------------------------------------- /include/absl/base/casts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/casts.h -------------------------------------------------------------------------------- /include/absl/base/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/config.h -------------------------------------------------------------------------------- /include/absl/base/const_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/const_init.h -------------------------------------------------------------------------------- /include/absl/base/log_severity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/log_severity.h -------------------------------------------------------------------------------- /include/absl/base/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/macros.h -------------------------------------------------------------------------------- /include/absl/base/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/optimization.h -------------------------------------------------------------------------------- /include/absl/base/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/options.h -------------------------------------------------------------------------------- /include/absl/base/policy_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/policy_checks.h -------------------------------------------------------------------------------- /include/absl/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/base/port.h -------------------------------------------------------------------------------- /include/absl/cleanup/cleanup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/cleanup/cleanup.h -------------------------------------------------------------------------------- /include/absl/container/btree_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/container/btree_map.h -------------------------------------------------------------------------------- /include/absl/container/btree_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/container/btree_set.h -------------------------------------------------------------------------------- /include/absl/debugging/symbolize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/debugging/symbolize.h -------------------------------------------------------------------------------- /include/absl/flags/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/config.h -------------------------------------------------------------------------------- /include/absl/flags/declare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/declare.h -------------------------------------------------------------------------------- /include/absl/flags/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/flag.h -------------------------------------------------------------------------------- /include/absl/flags/internal/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/internal/flag.h -------------------------------------------------------------------------------- /include/absl/flags/marshalling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/marshalling.h -------------------------------------------------------------------------------- /include/absl/flags/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/parse.h -------------------------------------------------------------------------------- /include/absl/flags/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/reflection.h -------------------------------------------------------------------------------- /include/absl/flags/usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/usage.h -------------------------------------------------------------------------------- /include/absl/flags/usage_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/flags/usage_config.h -------------------------------------------------------------------------------- /include/absl/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/hash/hash.h -------------------------------------------------------------------------------- /include/absl/hash/hash_testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/hash/hash_testing.h -------------------------------------------------------------------------------- /include/absl/hash/internal/city.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/hash/internal/city.h -------------------------------------------------------------------------------- /include/absl/hash/internal/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/hash/internal/hash.h -------------------------------------------------------------------------------- /include/absl/memory/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/memory/memory.h -------------------------------------------------------------------------------- /include/absl/meta/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/meta/type_traits.h -------------------------------------------------------------------------------- /include/absl/numeric/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/numeric/bits.h -------------------------------------------------------------------------------- /include/absl/numeric/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/numeric/int128.h -------------------------------------------------------------------------------- /include/absl/random/bit_gen_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/random/bit_gen_ref.h -------------------------------------------------------------------------------- /include/absl/random/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/random/random.h -------------------------------------------------------------------------------- /include/absl/status/status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/status/status.h -------------------------------------------------------------------------------- /include/absl/status/statusor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/status/statusor.h -------------------------------------------------------------------------------- /include/absl/strings/ascii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/ascii.h -------------------------------------------------------------------------------- /include/absl/strings/charconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/charconv.h -------------------------------------------------------------------------------- /include/absl/strings/cord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/cord.h -------------------------------------------------------------------------------- /include/absl/strings/cord_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/cord_buffer.h -------------------------------------------------------------------------------- /include/absl/strings/escaping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/escaping.h -------------------------------------------------------------------------------- /include/absl/strings/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/match.h -------------------------------------------------------------------------------- /include/absl/strings/numbers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/numbers.h -------------------------------------------------------------------------------- /include/absl/strings/str_cat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/str_cat.h -------------------------------------------------------------------------------- /include/absl/strings/str_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/str_format.h -------------------------------------------------------------------------------- /include/absl/strings/str_join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/str_join.h -------------------------------------------------------------------------------- /include/absl/strings/str_replace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/str_replace.h -------------------------------------------------------------------------------- /include/absl/strings/str_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/str_split.h -------------------------------------------------------------------------------- /include/absl/strings/string_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/string_view.h -------------------------------------------------------------------------------- /include/absl/strings/strip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/strip.h -------------------------------------------------------------------------------- /include/absl/strings/substitute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/strings/substitute.h -------------------------------------------------------------------------------- /include/absl/time/civil_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/time/civil_time.h -------------------------------------------------------------------------------- /include/absl/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/time/clock.h -------------------------------------------------------------------------------- /include/absl/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/time/time.h -------------------------------------------------------------------------------- /include/absl/types/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/types/any.h -------------------------------------------------------------------------------- /include/absl/types/bad_any_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/types/bad_any_cast.h -------------------------------------------------------------------------------- /include/absl/types/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/types/compare.h -------------------------------------------------------------------------------- /include/absl/types/internal/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/types/internal/span.h -------------------------------------------------------------------------------- /include/absl/types/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/types/optional.h -------------------------------------------------------------------------------- /include/absl/types/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/types/span.h -------------------------------------------------------------------------------- /include/absl/types/variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/types/variant.h -------------------------------------------------------------------------------- /include/absl/utility/utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/absl/utility/utility.h -------------------------------------------------------------------------------- /include/api/adaptation/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/adaptation/resource.h -------------------------------------------------------------------------------- /include/api/array_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/array_view.h -------------------------------------------------------------------------------- /include/api/async_dns_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/async_dns_resolver.h -------------------------------------------------------------------------------- /include/api/audio/audio_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/audio/audio_frame.h -------------------------------------------------------------------------------- /include/api/audio/audio_mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/audio/audio_mixer.h -------------------------------------------------------------------------------- /include/api/audio/channel_layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/audio/channel_layout.h -------------------------------------------------------------------------------- /include/api/audio/echo_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/audio/echo_control.h -------------------------------------------------------------------------------- /include/api/audio_options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/audio_options.h -------------------------------------------------------------------------------- /include/api/call/audio_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/call/audio_sink.h -------------------------------------------------------------------------------- /include/api/call/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/call/transport.h -------------------------------------------------------------------------------- /include/api/candidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/candidate.h -------------------------------------------------------------------------------- /include/api/crypto_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/crypto_params.h -------------------------------------------------------------------------------- /include/api/fec_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/fec_controller.h -------------------------------------------------------------------------------- /include/api/field_trials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/field_trials.h -------------------------------------------------------------------------------- /include/api/field_trials_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/field_trials_view.h -------------------------------------------------------------------------------- /include/api/function_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/function_view.h -------------------------------------------------------------------------------- /include/api/jsep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/jsep.h -------------------------------------------------------------------------------- /include/api/jsep_ice_candidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/jsep_ice_candidate.h -------------------------------------------------------------------------------- /include/api/make_ref_counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/make_ref_counted.h -------------------------------------------------------------------------------- /include/api/media_stream_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/media_stream_track.h -------------------------------------------------------------------------------- /include/api/media_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/media_types.h -------------------------------------------------------------------------------- /include/api/metronome/metronome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/metronome/metronome.h -------------------------------------------------------------------------------- /include/api/neteq/neteq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/neteq/neteq.h -------------------------------------------------------------------------------- /include/api/neteq/neteq_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/neteq/neteq_factory.h -------------------------------------------------------------------------------- /include/api/neteq/tick_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/neteq/tick_timer.h -------------------------------------------------------------------------------- /include/api/notifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/notifier.h -------------------------------------------------------------------------------- /include/api/priority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/priority.h -------------------------------------------------------------------------------- /include/api/ref_counted_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/ref_counted_base.h -------------------------------------------------------------------------------- /include/api/rtc_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/rtc_error.h -------------------------------------------------------------------------------- /include/api/rtc_event_log_output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/rtc_event_log_output.h -------------------------------------------------------------------------------- /include/api/rtp_headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/rtp_headers.h -------------------------------------------------------------------------------- /include/api/rtp_packet_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/rtp_packet_info.h -------------------------------------------------------------------------------- /include/api/rtp_packet_infos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/rtp_packet_infos.h -------------------------------------------------------------------------------- /include/api/rtp_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/rtp_parameters.h -------------------------------------------------------------------------------- /include/api/rtp_sender_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/rtp_sender_interface.h -------------------------------------------------------------------------------- /include/api/scoped_refptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/scoped_refptr.h -------------------------------------------------------------------------------- /include/api/sequence_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/sequence_checker.h -------------------------------------------------------------------------------- /include/api/stats/rtc_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/stats/rtc_stats.h -------------------------------------------------------------------------------- /include/api/stats_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/stats_types.h -------------------------------------------------------------------------------- /include/api/test/audioproc_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/test/audioproc_float.h -------------------------------------------------------------------------------- /include/api/test/mock_audio_sink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/test/mock_audio_sink.h -------------------------------------------------------------------------------- /include/api/test/mock_rtpsender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/test/mock_rtpsender.h -------------------------------------------------------------------------------- /include/api/test/neteq_simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/test/neteq_simulator.h -------------------------------------------------------------------------------- /include/api/test/time_controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/test/time_controller.h -------------------------------------------------------------------------------- /include/api/transport/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/transport/enums.h -------------------------------------------------------------------------------- /include/api/transport/stun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/transport/stun.h -------------------------------------------------------------------------------- /include/api/turn_customizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/turn_customizer.h -------------------------------------------------------------------------------- /include/api/uma_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/uma_metrics.h -------------------------------------------------------------------------------- /include/api/units/data_rate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/units/data_rate.h -------------------------------------------------------------------------------- /include/api/units/data_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/units/data_size.h -------------------------------------------------------------------------------- /include/api/units/frequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/units/frequency.h -------------------------------------------------------------------------------- /include/api/units/time_delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/units/time_delta.h -------------------------------------------------------------------------------- /include/api/units/timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/units/timestamp.h -------------------------------------------------------------------------------- /include/api/video/color_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/color_space.h -------------------------------------------------------------------------------- /include/api/video/encoded_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/encoded_frame.h -------------------------------------------------------------------------------- /include/api/video/encoded_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/encoded_image.h -------------------------------------------------------------------------------- /include/api/video/frame_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/frame_buffer.h -------------------------------------------------------------------------------- /include/api/video/hdr_metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/hdr_metadata.h -------------------------------------------------------------------------------- /include/api/video/i010_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/i010_buffer.h -------------------------------------------------------------------------------- /include/api/video/i210_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/i210_buffer.h -------------------------------------------------------------------------------- /include/api/video/i420_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/i420_buffer.h -------------------------------------------------------------------------------- /include/api/video/i422_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/i422_buffer.h -------------------------------------------------------------------------------- /include/api/video/i444_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/i444_buffer.h -------------------------------------------------------------------------------- /include/api/video/nv12_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/nv12_buffer.h -------------------------------------------------------------------------------- /include/api/video/video_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/video_frame.h -------------------------------------------------------------------------------- /include/api/video/video_rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/video_rotation.h -------------------------------------------------------------------------------- /include/api/video/video_timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/video/video_timing.h -------------------------------------------------------------------------------- /include/api/voip/voip_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/voip/voip_base.h -------------------------------------------------------------------------------- /include/api/voip/voip_codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/voip/voip_codec.h -------------------------------------------------------------------------------- /include/api/voip/voip_dtmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/voip/voip_dtmf.h -------------------------------------------------------------------------------- /include/api/voip/voip_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/voip/voip_engine.h -------------------------------------------------------------------------------- /include/api/voip/voip_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/voip/voip_network.h -------------------------------------------------------------------------------- /include/api/voip/voip_statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/api/voip/voip_statistics.h -------------------------------------------------------------------------------- /include/audio/audio_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/audio_level.h -------------------------------------------------------------------------------- /include/audio/audio_send_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/audio_send_stream.h -------------------------------------------------------------------------------- /include/audio/audio_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/audio_state.h -------------------------------------------------------------------------------- /include/audio/channel_receive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/channel_receive.h -------------------------------------------------------------------------------- /include/audio/channel_send.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/channel_send.h -------------------------------------------------------------------------------- /include/audio/conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/conversion.h -------------------------------------------------------------------------------- /include/audio/null_audio_poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/null_audio_poller.h -------------------------------------------------------------------------------- /include/audio/remix_resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/remix_resample.h -------------------------------------------------------------------------------- /include/audio/voip/audio_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/voip/audio_channel.h -------------------------------------------------------------------------------- /include/audio/voip/audio_egress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/voip/audio_egress.h -------------------------------------------------------------------------------- /include/audio/voip/audio_ingress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/voip/audio_ingress.h -------------------------------------------------------------------------------- /include/audio/voip/voip_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/audio/voip/voip_core.h -------------------------------------------------------------------------------- /include/base/android/apk_assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/apk_assets.h -------------------------------------------------------------------------------- /include/base/android/build_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/build_info.h -------------------------------------------------------------------------------- /include/base/android/event_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/event_log.h -------------------------------------------------------------------------------- /include/base/android/jni_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/jni_android.h -------------------------------------------------------------------------------- /include/base/android/jni_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/jni_array.h -------------------------------------------------------------------------------- /include/base/android/jni_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/jni_string.h -------------------------------------------------------------------------------- /include/base/android/jni_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/jni_utils.h -------------------------------------------------------------------------------- /include/base/android/path_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/path_utils.h -------------------------------------------------------------------------------- /include/base/android/radio_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/radio_utils.h -------------------------------------------------------------------------------- /include/base/android/sys_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/android/sys_utils.h -------------------------------------------------------------------------------- /include/base/as_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/as_const.h -------------------------------------------------------------------------------- /include/base/at_exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/at_exit.h -------------------------------------------------------------------------------- /include/base/atomic_ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/atomic_ref_count.h -------------------------------------------------------------------------------- /include/base/atomic_sequence_num.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/atomic_sequence_num.h -------------------------------------------------------------------------------- /include/base/atomicops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/atomicops.h -------------------------------------------------------------------------------- /include/base/auto_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/auto_reset.h -------------------------------------------------------------------------------- /include/base/barrier_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/barrier_callback.h -------------------------------------------------------------------------------- /include/base/barrier_closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/barrier_closure.h -------------------------------------------------------------------------------- /include/base/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base64.h -------------------------------------------------------------------------------- /include/base/base64url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base64url.h -------------------------------------------------------------------------------- /include/base/base_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base_export.h -------------------------------------------------------------------------------- /include/base/base_paths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base_paths.h -------------------------------------------------------------------------------- /include/base/base_paths_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base_paths_android.h -------------------------------------------------------------------------------- /include/base/base_paths_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base_paths_mac.h -------------------------------------------------------------------------------- /include/base/base_paths_posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base_paths_posix.h -------------------------------------------------------------------------------- /include/base/base_paths_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base_paths_win.h -------------------------------------------------------------------------------- /include/base/base_switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/base_switches.h -------------------------------------------------------------------------------- /include/base/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/big_endian.h -------------------------------------------------------------------------------- /include/base/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/bind.h -------------------------------------------------------------------------------- /include/base/bind_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/bind_internal.h -------------------------------------------------------------------------------- /include/base/bit_cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/bit_cast.h -------------------------------------------------------------------------------- /include/base/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/bits.h -------------------------------------------------------------------------------- /include/base/build_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/build_time.h -------------------------------------------------------------------------------- /include/base/callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/callback.h -------------------------------------------------------------------------------- /include/base/callback_forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/callback_forward.h -------------------------------------------------------------------------------- /include/base/callback_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/callback_helpers.h -------------------------------------------------------------------------------- /include/base/callback_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/callback_internal.h -------------------------------------------------------------------------------- /include/base/callback_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/callback_list.h -------------------------------------------------------------------------------- /include/base/cancelable_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/cancelable_callback.h -------------------------------------------------------------------------------- /include/base/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/check.h -------------------------------------------------------------------------------- /include/base/check_is_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/check_is_test.h -------------------------------------------------------------------------------- /include/base/check_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/check_op.h -------------------------------------------------------------------------------- /include/base/command_line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/command_line.h -------------------------------------------------------------------------------- /include/base/compiler_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/compiler_specific.h -------------------------------------------------------------------------------- /include/base/component_export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/component_export.h -------------------------------------------------------------------------------- /include/base/containers/adapters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/adapters.h -------------------------------------------------------------------------------- /include/base/containers/contains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/contains.h -------------------------------------------------------------------------------- /include/base/containers/enum_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/enum_set.h -------------------------------------------------------------------------------- /include/base/containers/extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/extend.h -------------------------------------------------------------------------------- /include/base/containers/flat_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/flat_map.h -------------------------------------------------------------------------------- /include/base/containers/flat_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/flat_set.h -------------------------------------------------------------------------------- /include/base/containers/id_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/id_map.h -------------------------------------------------------------------------------- /include/base/containers/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/queue.h -------------------------------------------------------------------------------- /include/base/containers/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/span.h -------------------------------------------------------------------------------- /include/base/containers/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/stack.h -------------------------------------------------------------------------------- /include/base/containers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/containers/util.h -------------------------------------------------------------------------------- /include/base/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/cpu.h -------------------------------------------------------------------------------- /include/base/critical_closure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/critical_closure.h -------------------------------------------------------------------------------- /include/base/cxx17_backports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/cxx17_backports.h -------------------------------------------------------------------------------- /include/base/cxx20_to_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/cxx20_to_address.h -------------------------------------------------------------------------------- /include/base/dcheck_is_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/dcheck_is_on.h -------------------------------------------------------------------------------- /include/base/debug/alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/alias.h -------------------------------------------------------------------------------- /include/base/debug/crash_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/crash_logging.h -------------------------------------------------------------------------------- /include/base/debug/debugger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/debugger.h -------------------------------------------------------------------------------- /include/base/debug/dwarf_line_no.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/dwarf_line_no.h -------------------------------------------------------------------------------- /include/base/debug/elf_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/elf_reader.h -------------------------------------------------------------------------------- /include/base/debug/profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/profiler.h -------------------------------------------------------------------------------- /include/base/debug/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/stack_trace.h -------------------------------------------------------------------------------- /include/base/debug/task_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/debug/task_trace.h -------------------------------------------------------------------------------- /include/base/enterprise_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/enterprise_util.h -------------------------------------------------------------------------------- /include/base/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/environment.h -------------------------------------------------------------------------------- /include/base/export_template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/export_template.h -------------------------------------------------------------------------------- /include/base/feature_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/feature_list.h -------------------------------------------------------------------------------- /include/base/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/features.h -------------------------------------------------------------------------------- /include/base/file_version_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/file_version_info.h -------------------------------------------------------------------------------- /include/base/files/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/file.h -------------------------------------------------------------------------------- /include/base/files/file_error_or.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/file_error_or.h -------------------------------------------------------------------------------- /include/base/files/file_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/file_path.h -------------------------------------------------------------------------------- /include/base/files/file_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/file_proxy.h -------------------------------------------------------------------------------- /include/base/files/file_tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/file_tracing.h -------------------------------------------------------------------------------- /include/base/files/file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/file_util.h -------------------------------------------------------------------------------- /include/base/files/platform_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/platform_file.h -------------------------------------------------------------------------------- /include/base/files/scoped_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/files/scoped_file.h -------------------------------------------------------------------------------- /include/base/format_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/format_macros.h -------------------------------------------------------------------------------- /include/base/fuchsia/default_job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/fuchsia/default_job.h -------------------------------------------------------------------------------- /include/base/fuchsia/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/fuchsia/file_utils.h -------------------------------------------------------------------------------- /include/base/fuchsia/koid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/fuchsia/koid.h -------------------------------------------------------------------------------- /include/base/fuchsia/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/fuchsia/scheduler.h -------------------------------------------------------------------------------- /include/base/fuchsia/system_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/fuchsia/system_info.h -------------------------------------------------------------------------------- /include/base/functional/identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/functional/identity.h -------------------------------------------------------------------------------- /include/base/functional/invoke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/functional/invoke.h -------------------------------------------------------------------------------- /include/base/functional/not_fn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/functional/not_fn.h -------------------------------------------------------------------------------- /include/base/gtest_prod_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/gtest_prod_util.h -------------------------------------------------------------------------------- /include/base/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/guid.h -------------------------------------------------------------------------------- /include/base/hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/hash.h -------------------------------------------------------------------------------- /include/base/hash/legacy_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/legacy_hash.h -------------------------------------------------------------------------------- /include/base/hash/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/md5.h -------------------------------------------------------------------------------- /include/base/hash/md5_boringssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/md5_boringssl.h -------------------------------------------------------------------------------- /include/base/hash/md5_constexpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/md5_constexpr.h -------------------------------------------------------------------------------- /include/base/hash/md5_nacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/md5_nacl.h -------------------------------------------------------------------------------- /include/base/hash/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/sha1.h -------------------------------------------------------------------------------- /include/base/hash/sha1_boringssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/sha1_boringssl.h -------------------------------------------------------------------------------- /include/base/hash/sha1_nacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/hash/sha1_nacl.h -------------------------------------------------------------------------------- /include/base/i18n/break_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/break_iterator.h -------------------------------------------------------------------------------- /include/base/i18n/char_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/char_iterator.h -------------------------------------------------------------------------------- /include/base/i18n/file_util_icu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/file_util_icu.h -------------------------------------------------------------------------------- /include/base/i18n/i18n_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/i18n_constants.h -------------------------------------------------------------------------------- /include/base/i18n/icu_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/icu_util.h -------------------------------------------------------------------------------- /include/base/i18n/rtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/rtl.h -------------------------------------------------------------------------------- /include/base/i18n/string_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/string_compare.h -------------------------------------------------------------------------------- /include/base/i18n/string_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/string_search.h -------------------------------------------------------------------------------- /include/base/i18n/timezone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/timezone.h -------------------------------------------------------------------------------- /include/base/i18n/unicodestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/i18n/unicodestring.h -------------------------------------------------------------------------------- /include/base/immediate_crash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/immediate_crash.h -------------------------------------------------------------------------------- /include/base/ios/block_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ios/block_types.h -------------------------------------------------------------------------------- /include/base/ios/device_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ios/device_util.h -------------------------------------------------------------------------------- /include/base/ios/ios_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ios/ios_util.h -------------------------------------------------------------------------------- /include/base/ios/ns_error_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ios/ns_error_util.h -------------------------------------------------------------------------------- /include/base/ios/ns_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ios/ns_range.h -------------------------------------------------------------------------------- /include/base/ios/weak_nsobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ios/weak_nsobject.h -------------------------------------------------------------------------------- /include/base/json/json_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/json/json_common.h -------------------------------------------------------------------------------- /include/base/json/json_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/json/json_parser.h -------------------------------------------------------------------------------- /include/base/json/json_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/json/json_reader.h -------------------------------------------------------------------------------- /include/base/json/json_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/json/json_writer.h -------------------------------------------------------------------------------- /include/base/json/string_escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/json/string_escape.h -------------------------------------------------------------------------------- /include/base/json/values_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/json/values_util.h -------------------------------------------------------------------------------- /include/base/lazy_instance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/lazy_instance.h -------------------------------------------------------------------------------- /include/base/linux_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/linux_util.h -------------------------------------------------------------------------------- /include/base/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/location.h -------------------------------------------------------------------------------- /include/base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/logging.h -------------------------------------------------------------------------------- /include/base/logging_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/logging_win.h -------------------------------------------------------------------------------- /include/base/mac/backup_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/backup_util.h -------------------------------------------------------------------------------- /include/base/mac/bridging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/bridging.h -------------------------------------------------------------------------------- /include/base/mac/foundation_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/foundation_util.h -------------------------------------------------------------------------------- /include/base/mac/launchd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/launchd.h -------------------------------------------------------------------------------- /include/base/mac/mac_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/mac_logging.h -------------------------------------------------------------------------------- /include/base/mac/mac_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/mac_util.h -------------------------------------------------------------------------------- /include/base/mac/mach_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/mach_logging.h -------------------------------------------------------------------------------- /include/base/mac/os_crash_dumps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/os_crash_dumps.h -------------------------------------------------------------------------------- /include/base/mac/scoped_aedesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/scoped_aedesc.h -------------------------------------------------------------------------------- /include/base/mac/scoped_block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/scoped_block.h -------------------------------------------------------------------------------- /include/base/mac/scoped_ioobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/scoped_ioobject.h -------------------------------------------------------------------------------- /include/base/mac/scoped_mach_vm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/scoped_mach_vm.h -------------------------------------------------------------------------------- /include/base/mac/scoped_nsobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/scoped_nsobject.h -------------------------------------------------------------------------------- /include/base/mac/scoped_typeref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/mac/scoped_typeref.h -------------------------------------------------------------------------------- /include/base/memory/free_deleter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/free_deleter.h -------------------------------------------------------------------------------- /include/base/memory/page_size.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/page_size.h -------------------------------------------------------------------------------- /include/base/memory/ptr_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/ptr_util.h -------------------------------------------------------------------------------- /include/base/memory/raw_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/raw_ptr.h -------------------------------------------------------------------------------- /include/base/memory/raw_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/raw_ref.h -------------------------------------------------------------------------------- /include/base/memory/ref_counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/ref_counted.h -------------------------------------------------------------------------------- /include/base/memory/safe_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/safe_ref.h -------------------------------------------------------------------------------- /include/base/memory/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/singleton.h -------------------------------------------------------------------------------- /include/base/memory/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/memory/weak_ptr.h -------------------------------------------------------------------------------- /include/base/metrics/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/metrics/crc32.h -------------------------------------------------------------------------------- /include/base/metrics/field_trial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/metrics/field_trial.h -------------------------------------------------------------------------------- /include/base/metrics/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/metrics/histogram.h -------------------------------------------------------------------------------- /include/base/metrics/sample_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/metrics/sample_map.h -------------------------------------------------------------------------------- /include/base/native_library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/native_library.h -------------------------------------------------------------------------------- /include/base/nix/mime_util_xdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/nix/mime_util_xdg.h -------------------------------------------------------------------------------- /include/base/nix/xdg_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/nix/xdg_util.h -------------------------------------------------------------------------------- /include/base/no_destructor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/no_destructor.h -------------------------------------------------------------------------------- /include/base/notreached.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/notreached.h -------------------------------------------------------------------------------- /include/base/numerics/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/numerics/ranges.h -------------------------------------------------------------------------------- /include/base/numerics/safe_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/numerics/safe_math.h -------------------------------------------------------------------------------- /include/base/observer_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/observer_list.h -------------------------------------------------------------------------------- /include/base/observer_list_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/observer_list_types.h -------------------------------------------------------------------------------- /include/base/one_shot_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/one_shot_event.h -------------------------------------------------------------------------------- /include/base/os_compat_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/os_compat_android.h -------------------------------------------------------------------------------- /include/base/os_compat_nacl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/os_compat_nacl.h -------------------------------------------------------------------------------- /include/base/parameter_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/parameter_pack.h -------------------------------------------------------------------------------- /include/base/path_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/path_service.h -------------------------------------------------------------------------------- /include/base/pending_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/pending_task.h -------------------------------------------------------------------------------- /include/base/pickle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/pickle.h -------------------------------------------------------------------------------- /include/base/posix/eintr_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/posix/eintr_wrapper.h -------------------------------------------------------------------------------- /include/base/posix/safe_strerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/posix/safe_strerror.h -------------------------------------------------------------------------------- /include/base/process/kill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/process/kill.h -------------------------------------------------------------------------------- /include/base/process/launch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/process/launch.h -------------------------------------------------------------------------------- /include/base/process/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/process/memory.h -------------------------------------------------------------------------------- /include/base/process/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/process/process.h -------------------------------------------------------------------------------- /include/base/profiler/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/profiler/frame.h -------------------------------------------------------------------------------- /include/base/profiler/unwinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/profiler/unwinder.h -------------------------------------------------------------------------------- /include/base/rand_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/rand_util.h -------------------------------------------------------------------------------- /include/base/ranges/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ranges/algorithm.h -------------------------------------------------------------------------------- /include/base/ranges/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ranges/functional.h -------------------------------------------------------------------------------- /include/base/ranges/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/ranges/ranges.h -------------------------------------------------------------------------------- /include/base/rs_glue/values_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/rs_glue/values_glue.h -------------------------------------------------------------------------------- /include/base/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/run_loop.h -------------------------------------------------------------------------------- /include/base/scoped_generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/scoped_generic.h -------------------------------------------------------------------------------- /include/base/scoped_observation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/scoped_observation.h -------------------------------------------------------------------------------- /include/base/sequence_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/sequence_checker.h -------------------------------------------------------------------------------- /include/base/sequence_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/sequence_token.h -------------------------------------------------------------------------------- /include/base/stack_canary_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/stack_canary_linux.h -------------------------------------------------------------------------------- /include/base/stl_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/stl_util.h -------------------------------------------------------------------------------- /include/base/strings/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/strings/escape.h -------------------------------------------------------------------------------- /include/base/strings/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/strings/pattern.h -------------------------------------------------------------------------------- /include/base/strings/strcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/strings/strcat.h -------------------------------------------------------------------------------- /include/base/strings/strcat_win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/strings/strcat_win.h -------------------------------------------------------------------------------- /include/base/strings/string_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/strings/string_util.h -------------------------------------------------------------------------------- /include/base/supports_user_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/supports_user_data.h -------------------------------------------------------------------------------- /include/base/sync_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/sync_socket.h -------------------------------------------------------------------------------- /include/base/sys_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/sys_byteorder.h -------------------------------------------------------------------------------- /include/base/syslog_logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/syslog_logging.h -------------------------------------------------------------------------------- /include/base/system/sys_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/system/sys_info.h -------------------------------------------------------------------------------- /include/base/task/bind_post_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/bind_post_task.h -------------------------------------------------------------------------------- /include/base/task/current_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/current_thread.h -------------------------------------------------------------------------------- /include/base/task/delay_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/delay_policy.h -------------------------------------------------------------------------------- /include/base/task/post_job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/post_job.h -------------------------------------------------------------------------------- /include/base/task/task_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/task_executor.h -------------------------------------------------------------------------------- /include/base/task/task_features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/task_features.h -------------------------------------------------------------------------------- /include/base/task/task_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/task_observer.h -------------------------------------------------------------------------------- /include/base/task/task_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/task_runner.h -------------------------------------------------------------------------------- /include/base/task/task_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/task_traits.h -------------------------------------------------------------------------------- /include/base/task/thread_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/task/thread_pool.h -------------------------------------------------------------------------------- /include/base/template_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/template_util.h -------------------------------------------------------------------------------- /include/base/test/bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/bind.h -------------------------------------------------------------------------------- /include/base/test/copy_only_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/copy_only_int.h -------------------------------------------------------------------------------- /include/base/test/gtest_links.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/gtest_links.h -------------------------------------------------------------------------------- /include/base/test/gtest_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/gtest_util.h -------------------------------------------------------------------------------- /include/base/test/gtest_xml_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/gtest_xml_util.h -------------------------------------------------------------------------------- /include/base/test/icu_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/icu_test_util.h -------------------------------------------------------------------------------- /include/base/test/ios/wait_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/ios/wait_util.h -------------------------------------------------------------------------------- /include/base/test/malloc_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/malloc_wrapper.h -------------------------------------------------------------------------------- /include/base/test/mock_callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/mock_callback.h -------------------------------------------------------------------------------- /include/base/test/mock_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/mock_log.h -------------------------------------------------------------------------------- /include/base/test/move_only_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/move_only_int.h -------------------------------------------------------------------------------- /include/base/test/perf_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/perf_log.h -------------------------------------------------------------------------------- /include/base/test/scoped_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/scoped_locale.h -------------------------------------------------------------------------------- /include/base/test/spin_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/spin_wait.h -------------------------------------------------------------------------------- /include/base/test/test_file_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/test_file_util.h -------------------------------------------------------------------------------- /include/base/test/test_future.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/test_future.h -------------------------------------------------------------------------------- /include/base/test/test_io_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/test_io_thread.h -------------------------------------------------------------------------------- /include/base/test/test_suite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/test_suite.h -------------------------------------------------------------------------------- /include/base/test/test_switches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/test_switches.h -------------------------------------------------------------------------------- /include/base/test/test_timeouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/test_timeouts.h -------------------------------------------------------------------------------- /include/base/test/trace_to_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/test/trace_to_file.h -------------------------------------------------------------------------------- /include/base/thread_annotations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/thread_annotations.h -------------------------------------------------------------------------------- /include/base/threading/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/threading/thread.h -------------------------------------------------------------------------------- /include/base/threading/watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/threading/watchdog.h -------------------------------------------------------------------------------- /include/base/time/clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/time/clock.h -------------------------------------------------------------------------------- /include/base/time/default_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/time/default_clock.h -------------------------------------------------------------------------------- /include/base/time/tick_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/time/tick_clock.h -------------------------------------------------------------------------------- /include/base/time/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/time/time.h -------------------------------------------------------------------------------- /include/base/time/time_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/time/time_override.h -------------------------------------------------------------------------------- /include/base/timer/elapsed_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/timer/elapsed_timer.h -------------------------------------------------------------------------------- /include/base/timer/lap_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/timer/lap_timer.h -------------------------------------------------------------------------------- /include/base/timer/mock_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/timer/mock_timer.h -------------------------------------------------------------------------------- /include/base/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/timer/timer.h -------------------------------------------------------------------------------- /include/base/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/token.h -------------------------------------------------------------------------------- /include/base/tracing/trace_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/tracing/trace_time.h -------------------------------------------------------------------------------- /include/base/tracing/tracing_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/tracing/tracing_tls.h -------------------------------------------------------------------------------- /include/base/traits_bag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/traits_bag.h -------------------------------------------------------------------------------- /include/base/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/tuple.h -------------------------------------------------------------------------------- /include/base/types/always_false.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/types/always_false.h -------------------------------------------------------------------------------- /include/base/types/expected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/types/expected.h -------------------------------------------------------------------------------- /include/base/types/id_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/types/id_type.h -------------------------------------------------------------------------------- /include/base/types/pass_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/types/pass_key.h -------------------------------------------------------------------------------- /include/base/types/strong_alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/types/strong_alias.h -------------------------------------------------------------------------------- /include/base/types/token_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/types/token_type.h -------------------------------------------------------------------------------- /include/base/unguessable_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/unguessable_token.h -------------------------------------------------------------------------------- /include/base/value_iterators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/value_iterators.h -------------------------------------------------------------------------------- /include/base/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/values.h -------------------------------------------------------------------------------- /include/base/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/version.h -------------------------------------------------------------------------------- /include/base/vlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/vlog.h -------------------------------------------------------------------------------- /include/base/win/access_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/access_token.h -------------------------------------------------------------------------------- /include/base/win/async_operation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/async_operation.h -------------------------------------------------------------------------------- /include/base/win/atl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/atl.h -------------------------------------------------------------------------------- /include/base/win/atl_throw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/atl_throw.h -------------------------------------------------------------------------------- /include/base/win/com_init_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/com_init_util.h -------------------------------------------------------------------------------- /include/base/win/core_winrt_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/core_winrt_util.h -------------------------------------------------------------------------------- /include/base/win/current_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/current_module.h -------------------------------------------------------------------------------- /include/base/win/dispatch_stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/dispatch_stub.h -------------------------------------------------------------------------------- /include/base/win/enum_variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/enum_variant.h -------------------------------------------------------------------------------- /include/base/win/hstring_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/hstring_compare.h -------------------------------------------------------------------------------- /include/base/win/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/i18n.h -------------------------------------------------------------------------------- /include/base/win/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/map.h -------------------------------------------------------------------------------- /include/base/win/message_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/message_window.h -------------------------------------------------------------------------------- /include/base/win/nt_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/nt_status.h -------------------------------------------------------------------------------- /include/base/win/object_watcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/object_watcher.h -------------------------------------------------------------------------------- /include/base/win/patch_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/patch_util.h -------------------------------------------------------------------------------- /include/base/win/pe_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/pe_image.h -------------------------------------------------------------------------------- /include/base/win/pe_image_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/pe_image_reader.h -------------------------------------------------------------------------------- /include/base/win/propvarutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/propvarutil.h -------------------------------------------------------------------------------- /include/base/win/reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/reference.h -------------------------------------------------------------------------------- /include/base/win/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/registry.h -------------------------------------------------------------------------------- /include/base/win/resource_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/resource_util.h -------------------------------------------------------------------------------- /include/base/win/scoped_bstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_bstr.h -------------------------------------------------------------------------------- /include/base/win/scoped_co_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_co_mem.h -------------------------------------------------------------------------------- /include/base/win/scoped_devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_devinfo.h -------------------------------------------------------------------------------- /include/base/win/scoped_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_handle.h -------------------------------------------------------------------------------- /include/base/win/scoped_hdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_hdc.h -------------------------------------------------------------------------------- /include/base/win/scoped_hglobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_hglobal.h -------------------------------------------------------------------------------- /include/base/win/scoped_hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_hstring.h -------------------------------------------------------------------------------- /include/base/win/scoped_variant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/scoped_variant.h -------------------------------------------------------------------------------- /include/base/win/security_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/security_util.h -------------------------------------------------------------------------------- /include/base/win/shlwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/shlwapi.h -------------------------------------------------------------------------------- /include/base/win/shortcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/shortcut.h -------------------------------------------------------------------------------- /include/base/win/sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/sid.h -------------------------------------------------------------------------------- /include/base/win/sphelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/sphelper.h -------------------------------------------------------------------------------- /include/base/win/variant_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/variant_util.h -------------------------------------------------------------------------------- /include/base/win/variant_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/variant_vector.h -------------------------------------------------------------------------------- /include/base/win/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/vector.h -------------------------------------------------------------------------------- /include/base/win/win_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/win_util.h -------------------------------------------------------------------------------- /include/base/win/wincrypt_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/wincrypt_shim.h -------------------------------------------------------------------------------- /include/base/win/windows_full.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/windows_full.h -------------------------------------------------------------------------------- /include/base/win/windows_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/windows_types.h -------------------------------------------------------------------------------- /include/base/win/windows_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/windows_version.h -------------------------------------------------------------------------------- /include/base/win/windowsx_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/windowsx_shim.h -------------------------------------------------------------------------------- /include/base/win/wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/base/win/wmi.h -------------------------------------------------------------------------------- /include/call/audio_send_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/audio_send_stream.h -------------------------------------------------------------------------------- /include/call/audio_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/audio_sender.h -------------------------------------------------------------------------------- /include/call/audio_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/audio_state.h -------------------------------------------------------------------------------- /include/call/bitrate_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/bitrate_allocator.h -------------------------------------------------------------------------------- /include/call/call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/call.h -------------------------------------------------------------------------------- /include/call/call_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/call_config.h -------------------------------------------------------------------------------- /include/call/call_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/call_factory.h -------------------------------------------------------------------------------- /include/call/degraded_call.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/degraded_call.h -------------------------------------------------------------------------------- /include/call/fake_network_pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/fake_network_pipe.h -------------------------------------------------------------------------------- /include/call/packet_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/packet_receiver.h -------------------------------------------------------------------------------- /include/call/rampup_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/rampup_tests.h -------------------------------------------------------------------------------- /include/call/receive_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/receive_stream.h -------------------------------------------------------------------------------- /include/call/rtp_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/rtp_config.h -------------------------------------------------------------------------------- /include/call/rtp_demuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/rtp_demuxer.h -------------------------------------------------------------------------------- /include/call/rtp_payload_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/rtp_payload_params.h -------------------------------------------------------------------------------- /include/call/rtp_video_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/rtp_video_sender.h -------------------------------------------------------------------------------- /include/call/rtx_receive_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/rtx_receive_stream.h -------------------------------------------------------------------------------- /include/call/simulated_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/simulated_network.h -------------------------------------------------------------------------------- /include/call/syncable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/syncable.h -------------------------------------------------------------------------------- /include/call/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/version.h -------------------------------------------------------------------------------- /include/call/video_send_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/call/video_send_stream.h -------------------------------------------------------------------------------- /include/common_audio/fir_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/common_audio/fir_filter.h -------------------------------------------------------------------------------- /include/common_audio/ring_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/common_audio/ring_buffer.h -------------------------------------------------------------------------------- /include/common_audio/vad/vad_gmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/common_audio/vad/vad_gmm.h -------------------------------------------------------------------------------- /include/common_audio/vad/vad_sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/common_audio/vad/vad_sp.h -------------------------------------------------------------------------------- /include/common_audio/wav_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/common_audio/wav_file.h -------------------------------------------------------------------------------- /include/common_audio/wav_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/common_audio/wav_header.h -------------------------------------------------------------------------------- /include/libyuv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv.h -------------------------------------------------------------------------------- /include/libyuv/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/basic_types.h -------------------------------------------------------------------------------- /include/libyuv/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/compare.h -------------------------------------------------------------------------------- /include/libyuv/compare_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/compare_row.h -------------------------------------------------------------------------------- /include/libyuv/convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/convert.h -------------------------------------------------------------------------------- /include/libyuv/convert_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/convert_argb.h -------------------------------------------------------------------------------- /include/libyuv/convert_from.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/convert_from.h -------------------------------------------------------------------------------- /include/libyuv/convert_from_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/convert_from_argb.h -------------------------------------------------------------------------------- /include/libyuv/cpu_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/cpu_id.h -------------------------------------------------------------------------------- /include/libyuv/macros_msa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/macros_msa.h -------------------------------------------------------------------------------- /include/libyuv/mjpeg_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/mjpeg_decoder.h -------------------------------------------------------------------------------- /include/libyuv/planar_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/planar_functions.h -------------------------------------------------------------------------------- /include/libyuv/rotate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/rotate.h -------------------------------------------------------------------------------- /include/libyuv/rotate_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/rotate_argb.h -------------------------------------------------------------------------------- /include/libyuv/rotate_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/rotate_row.h -------------------------------------------------------------------------------- /include/libyuv/row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/row.h -------------------------------------------------------------------------------- /include/libyuv/scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/scale.h -------------------------------------------------------------------------------- /include/libyuv/scale_argb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/scale_argb.h -------------------------------------------------------------------------------- /include/libyuv/scale_rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/scale_rgb.h -------------------------------------------------------------------------------- /include/libyuv/scale_row.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/scale_row.h -------------------------------------------------------------------------------- /include/libyuv/scale_uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/scale_uv.h -------------------------------------------------------------------------------- /include/libyuv/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/version.h -------------------------------------------------------------------------------- /include/libyuv/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/libyuv/video_common.h -------------------------------------------------------------------------------- /include/media/base/audio_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/audio_source.h -------------------------------------------------------------------------------- /include/media/base/codec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/codec.h -------------------------------------------------------------------------------- /include/media/base/delayable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/delayable.h -------------------------------------------------------------------------------- /include/media/base/fake_rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/fake_rtp.h -------------------------------------------------------------------------------- /include/media/base/media_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/media_channel.h -------------------------------------------------------------------------------- /include/media/base/media_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/media_config.h -------------------------------------------------------------------------------- /include/media/base/media_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/media_engine.h -------------------------------------------------------------------------------- /include/media/base/rtp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/rtp_utils.h -------------------------------------------------------------------------------- /include/media/base/stream_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/stream_params.h -------------------------------------------------------------------------------- /include/media/base/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/test_utils.h -------------------------------------------------------------------------------- /include/media/base/turn_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/turn_utils.h -------------------------------------------------------------------------------- /include/media/base/video_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/video_adapter.h -------------------------------------------------------------------------------- /include/media/base/video_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/base/video_common.h -------------------------------------------------------------------------------- /include/media/engine/adm_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/engine/adm_helpers.h -------------------------------------------------------------------------------- /include/media/engine/simulcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/media/engine/simulcast.h -------------------------------------------------------------------------------- /include/net/dcsctp/common/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/net/dcsctp/common/math.h -------------------------------------------------------------------------------- /include/net/dcsctp/packet/crc32c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/net/dcsctp/packet/crc32c.h -------------------------------------------------------------------------------- /include/net/dcsctp/packet/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/net/dcsctp/packet/data.h -------------------------------------------------------------------------------- /include/net/dcsctp/public/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/net/dcsctp/public/types.h -------------------------------------------------------------------------------- /include/net/dcsctp/timer/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/net/dcsctp/timer/timer.h -------------------------------------------------------------------------------- /include/net/dcsctp/tx/send_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/net/dcsctp/tx/send_queue.h -------------------------------------------------------------------------------- /include/openssl/aead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/aead.h -------------------------------------------------------------------------------- /include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/aes.h -------------------------------------------------------------------------------- /include/openssl/arm_arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/arm_arch.h -------------------------------------------------------------------------------- /include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/asn1.h -------------------------------------------------------------------------------- /include/openssl/asn1_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/asn1_mac.h -------------------------------------------------------------------------------- /include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/asn1t.h -------------------------------------------------------------------------------- /include/openssl/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/base.h -------------------------------------------------------------------------------- /include/openssl/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/base64.h -------------------------------------------------------------------------------- /include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/bio.h -------------------------------------------------------------------------------- /include/openssl/blake2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/blake2.h -------------------------------------------------------------------------------- /include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/blowfish.h -------------------------------------------------------------------------------- /include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/bn.h -------------------------------------------------------------------------------- /include/openssl/buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/buf.h -------------------------------------------------------------------------------- /include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/buffer.h -------------------------------------------------------------------------------- /include/openssl/bytestring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/bytestring.h -------------------------------------------------------------------------------- /include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/cast.h -------------------------------------------------------------------------------- /include/openssl/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/chacha.h -------------------------------------------------------------------------------- /include/openssl/cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/cipher.h -------------------------------------------------------------------------------- /include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/cmac.h -------------------------------------------------------------------------------- /include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/conf.h -------------------------------------------------------------------------------- /include/openssl/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/cpu.h -------------------------------------------------------------------------------- /include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/crypto.h -------------------------------------------------------------------------------- /include/openssl/curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/curve25519.h -------------------------------------------------------------------------------- /include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/des.h -------------------------------------------------------------------------------- /include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/dh.h -------------------------------------------------------------------------------- /include/openssl/digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/digest.h -------------------------------------------------------------------------------- /include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/dsa.h -------------------------------------------------------------------------------- /include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/dtls1.h -------------------------------------------------------------------------------- /include/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/e_os2.h -------------------------------------------------------------------------------- /include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ec.h -------------------------------------------------------------------------------- /include/openssl/ec_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ec_key.h -------------------------------------------------------------------------------- /include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ecdh.h -------------------------------------------------------------------------------- /include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/engine.h -------------------------------------------------------------------------------- /include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/err.h -------------------------------------------------------------------------------- /include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/evp.h -------------------------------------------------------------------------------- /include/openssl/evp_errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/evp_errors.h -------------------------------------------------------------------------------- /include/openssl/ex_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ex_data.h -------------------------------------------------------------------------------- /include/openssl/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/hkdf.h -------------------------------------------------------------------------------- /include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/hmac.h -------------------------------------------------------------------------------- /include/openssl/hpke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/hpke.h -------------------------------------------------------------------------------- /include/openssl/hrss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/hrss.h -------------------------------------------------------------------------------- /include/openssl/is_boringssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/is_boringssl.h -------------------------------------------------------------------------------- /include/openssl/kdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/kdf.h -------------------------------------------------------------------------------- /include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/lhash.h -------------------------------------------------------------------------------- /include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/md4.h -------------------------------------------------------------------------------- /include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/md5.h -------------------------------------------------------------------------------- /include/openssl/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/mem.h -------------------------------------------------------------------------------- /include/openssl/nid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/nid.h -------------------------------------------------------------------------------- /include/openssl/obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/obj.h -------------------------------------------------------------------------------- /include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/objects.h -------------------------------------------------------------------------------- /include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/opensslv.h -------------------------------------------------------------------------------- /include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/pem.h -------------------------------------------------------------------------------- /include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /include/openssl/pkcs8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/pkcs8.h -------------------------------------------------------------------------------- /include/openssl/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/poly1305.h -------------------------------------------------------------------------------- /include/openssl/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/pool.h -------------------------------------------------------------------------------- /include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/rand.h -------------------------------------------------------------------------------- /include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/rc4.h -------------------------------------------------------------------------------- /include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ripemd.h -------------------------------------------------------------------------------- /include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/rsa.h -------------------------------------------------------------------------------- /include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/safestack.h -------------------------------------------------------------------------------- /include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/sha.h -------------------------------------------------------------------------------- /include/openssl/siphash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/siphash.h -------------------------------------------------------------------------------- /include/openssl/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/span.h -------------------------------------------------------------------------------- /include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/srtp.h -------------------------------------------------------------------------------- /include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ssl.h -------------------------------------------------------------------------------- /include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/ssl3.h -------------------------------------------------------------------------------- /include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/stack.h -------------------------------------------------------------------------------- /include/openssl/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/thread.h -------------------------------------------------------------------------------- /include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/tls1.h -------------------------------------------------------------------------------- /include/openssl/trust_token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/trust_token.h -------------------------------------------------------------------------------- /include/openssl/type_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/type_check.h -------------------------------------------------------------------------------- /include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/x509.h -------------------------------------------------------------------------------- /include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/openssl/x509v3.h -------------------------------------------------------------------------------- /include/p2p/base/connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/connection.h -------------------------------------------------------------------------------- /include/p2p/base/connection_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/connection_info.h -------------------------------------------------------------------------------- /include/p2p/base/dtls_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/dtls_transport.h -------------------------------------------------------------------------------- /include/p2p/base/p2p_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/p2p_constants.h -------------------------------------------------------------------------------- /include/p2p/base/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/port.h -------------------------------------------------------------------------------- /include/p2p/base/port_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/port_allocator.h -------------------------------------------------------------------------------- /include/p2p/base/port_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/port_interface.h -------------------------------------------------------------------------------- /include/p2p/base/pseudo_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/pseudo_tcp.h -------------------------------------------------------------------------------- /include/p2p/base/stun_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/stun_port.h -------------------------------------------------------------------------------- /include/p2p/base/stun_request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/stun_request.h -------------------------------------------------------------------------------- /include/p2p/base/stun_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/stun_server.h -------------------------------------------------------------------------------- /include/p2p/base/tcp_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/tcp_port.h -------------------------------------------------------------------------------- /include/p2p/base/transport_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/transport_info.h -------------------------------------------------------------------------------- /include/p2p/base/turn_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/turn_port.h -------------------------------------------------------------------------------- /include/p2p/base/turn_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/turn_server.h -------------------------------------------------------------------------------- /include/p2p/base/udp_port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/p2p/base/udp_port.h -------------------------------------------------------------------------------- /include/pc/audio_rtp_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/audio_rtp_receiver.h -------------------------------------------------------------------------------- /include/pc/audio_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/audio_track.h -------------------------------------------------------------------------------- /include/pc/channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/channel.h -------------------------------------------------------------------------------- /include/pc/channel_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/channel_interface.h -------------------------------------------------------------------------------- /include/pc/connection_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/connection_context.h -------------------------------------------------------------------------------- /include/pc/data_channel_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/data_channel_utils.h -------------------------------------------------------------------------------- /include/pc/dtls_srtp_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/dtls_srtp_transport.h -------------------------------------------------------------------------------- /include/pc/dtls_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/dtls_transport.h -------------------------------------------------------------------------------- /include/pc/dtmf_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/dtmf_sender.h -------------------------------------------------------------------------------- /include/pc/external_hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/external_hmac.h -------------------------------------------------------------------------------- /include/pc/ice_server_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/ice_server_parsing.h -------------------------------------------------------------------------------- /include/pc/ice_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/ice_transport.h -------------------------------------------------------------------------------- /include/pc/jitter_buffer_delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/jitter_buffer_delay.h -------------------------------------------------------------------------------- /include/pc/jsep_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/jsep_transport.h -------------------------------------------------------------------------------- /include/pc/local_audio_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/local_audio_source.h -------------------------------------------------------------------------------- /include/pc/media_protocol_names.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/media_protocol_names.h -------------------------------------------------------------------------------- /include/pc/media_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/media_session.h -------------------------------------------------------------------------------- /include/pc/media_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/media_stream.h -------------------------------------------------------------------------------- /include/pc/media_stream_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/media_stream_observer.h -------------------------------------------------------------------------------- /include/pc/media_stream_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/media_stream_proxy.h -------------------------------------------------------------------------------- /include/pc/peer_connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/peer_connection.h -------------------------------------------------------------------------------- /include/pc/peer_connection_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/peer_connection_proxy.h -------------------------------------------------------------------------------- /include/pc/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/proxy.h -------------------------------------------------------------------------------- /include/pc/remote_audio_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/remote_audio_source.h -------------------------------------------------------------------------------- /include/pc/rtc_stats_collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtc_stats_collector.h -------------------------------------------------------------------------------- /include/pc/rtc_stats_traversal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtc_stats_traversal.h -------------------------------------------------------------------------------- /include/pc/rtcp_mux_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtcp_mux_filter.h -------------------------------------------------------------------------------- /include/pc/rtp_media_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtp_media_utils.h -------------------------------------------------------------------------------- /include/pc/rtp_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtp_receiver.h -------------------------------------------------------------------------------- /include/pc/rtp_receiver_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtp_receiver_proxy.h -------------------------------------------------------------------------------- /include/pc/rtp_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtp_sender.h -------------------------------------------------------------------------------- /include/pc/rtp_sender_proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtp_sender_proxy.h -------------------------------------------------------------------------------- /include/pc/rtp_transceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtp_transceiver.h -------------------------------------------------------------------------------- /include/pc/rtp_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/rtp_transport.h -------------------------------------------------------------------------------- /include/pc/sctp_data_channel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/sctp_data_channel.h -------------------------------------------------------------------------------- /include/pc/sctp_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/sctp_transport.h -------------------------------------------------------------------------------- /include/pc/sctp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/sctp_utils.h -------------------------------------------------------------------------------- /include/pc/sdp_offer_answer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/sdp_offer_answer.h -------------------------------------------------------------------------------- /include/pc/sdp_serializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/sdp_serializer.h -------------------------------------------------------------------------------- /include/pc/sdp_state_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/sdp_state_provider.h -------------------------------------------------------------------------------- /include/pc/sdp_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/sdp_utils.h -------------------------------------------------------------------------------- /include/pc/session_description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/session_description.h -------------------------------------------------------------------------------- /include/pc/simulcast_description.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/simulcast_description.h -------------------------------------------------------------------------------- /include/pc/srtp_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/srtp_filter.h -------------------------------------------------------------------------------- /include/pc/srtp_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/srtp_session.h -------------------------------------------------------------------------------- /include/pc/srtp_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/srtp_transport.h -------------------------------------------------------------------------------- /include/pc/stream_collection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/stream_collection.h -------------------------------------------------------------------------------- /include/pc/test/srtp_test_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/test/srtp_test_util.h -------------------------------------------------------------------------------- /include/pc/test/test_sdp_strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/test/test_sdp_strings.h -------------------------------------------------------------------------------- /include/pc/track_media_info_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/track_media_info_map.h -------------------------------------------------------------------------------- /include/pc/transceiver_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/transceiver_list.h -------------------------------------------------------------------------------- /include/pc/transport_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/transport_stats.h -------------------------------------------------------------------------------- /include/pc/usage_pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/usage_pattern.h -------------------------------------------------------------------------------- /include/pc/used_ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/used_ids.h -------------------------------------------------------------------------------- /include/pc/video_rtp_receiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/video_rtp_receiver.h -------------------------------------------------------------------------------- /include/pc/video_track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/video_track.h -------------------------------------------------------------------------------- /include/pc/video_track_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/video_track_source.h -------------------------------------------------------------------------------- /include/pc/webrtc_sdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/pc/webrtc_sdp.h -------------------------------------------------------------------------------- /include/rtc_base/arraysize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/arraysize.h -------------------------------------------------------------------------------- /include/rtc_base/async_invoker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/async_invoker.h -------------------------------------------------------------------------------- /include/rtc_base/async_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/async_resolver.h -------------------------------------------------------------------------------- /include/rtc_base/async_socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/async_socket.h -------------------------------------------------------------------------------- /include/rtc_base/bit_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/bit_buffer.h -------------------------------------------------------------------------------- /include/rtc_base/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/buffer.h -------------------------------------------------------------------------------- /include/rtc_base/buffer_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/buffer_queue.h -------------------------------------------------------------------------------- /include/rtc_base/byte_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/byte_buffer.h -------------------------------------------------------------------------------- /include/rtc_base/byte_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/byte_order.h -------------------------------------------------------------------------------- /include/rtc_base/callback_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/callback_list.h -------------------------------------------------------------------------------- /include/rtc_base/checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/checks.h -------------------------------------------------------------------------------- /include/rtc_base/cpu_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/cpu_time.h -------------------------------------------------------------------------------- /include/rtc_base/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/crc32.h -------------------------------------------------------------------------------- /include/rtc_base/crypt_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/crypt_string.h -------------------------------------------------------------------------------- /include/rtc_base/dscp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/dscp.h -------------------------------------------------------------------------------- /include/rtc_base/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/event.h -------------------------------------------------------------------------------- /include/rtc_base/event_tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/event_tracer.h -------------------------------------------------------------------------------- /include/rtc_base/fake_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/fake_clock.h -------------------------------------------------------------------------------- /include/rtc_base/fake_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/fake_network.h -------------------------------------------------------------------------------- /include/rtc_base/gtest_prod_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/gtest_prod_util.h -------------------------------------------------------------------------------- /include/rtc_base/gunit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/gunit.h -------------------------------------------------------------------------------- /include/rtc_base/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/helpers.h -------------------------------------------------------------------------------- /include/rtc_base/http_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/http_common.h -------------------------------------------------------------------------------- /include/rtc_base/ifaddrs_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ifaddrs_android.h -------------------------------------------------------------------------------- /include/rtc_base/ignore_wundef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ignore_wundef.h -------------------------------------------------------------------------------- /include/rtc_base/ip_address.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ip_address.h -------------------------------------------------------------------------------- /include/rtc_base/location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/location.h -------------------------------------------------------------------------------- /include/rtc_base/log_sinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/log_sinks.h -------------------------------------------------------------------------------- /include/rtc_base/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/logging.h -------------------------------------------------------------------------------- /include/rtc_base/memory_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/memory_stream.h -------------------------------------------------------------------------------- /include/rtc_base/memory_usage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/memory_usage.h -------------------------------------------------------------------------------- /include/rtc_base/message_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/message_digest.h -------------------------------------------------------------------------------- /include/rtc_base/message_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/message_handler.h -------------------------------------------------------------------------------- /include/rtc_base/nat_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/nat_server.h -------------------------------------------------------------------------------- /include/rtc_base/nat_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/nat_types.h -------------------------------------------------------------------------------- /include/rtc_base/net_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/net_helper.h -------------------------------------------------------------------------------- /include/rtc_base/net_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/net_helpers.h -------------------------------------------------------------------------------- /include/rtc_base/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/network.h -------------------------------------------------------------------------------- /include/rtc_base/network_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/network_monitor.h -------------------------------------------------------------------------------- /include/rtc_base/network_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/network_route.h -------------------------------------------------------------------------------- /include/rtc_base/one_time_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/one_time_event.h -------------------------------------------------------------------------------- /include/rtc_base/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/openssl.h -------------------------------------------------------------------------------- /include/rtc_base/openssl_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/openssl_adapter.h -------------------------------------------------------------------------------- /include/rtc_base/openssl_digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/openssl_digest.h -------------------------------------------------------------------------------- /include/rtc_base/proxy_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/proxy_info.h -------------------------------------------------------------------------------- /include/rtc_base/proxy_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/proxy_server.h -------------------------------------------------------------------------------- /include/rtc_base/race_checker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/race_checker.h -------------------------------------------------------------------------------- /include/rtc_base/random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/random.h -------------------------------------------------------------------------------- /include/rtc_base/rate_limiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/rate_limiter.h -------------------------------------------------------------------------------- /include/rtc_base/rate_tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/rate_tracker.h -------------------------------------------------------------------------------- /include/rtc_base/ref_count.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ref_count.h -------------------------------------------------------------------------------- /include/rtc_base/ref_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ref_counter.h -------------------------------------------------------------------------------- /include/rtc_base/sanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/sanitizer.h -------------------------------------------------------------------------------- /include/rtc_base/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/socket.h -------------------------------------------------------------------------------- /include/rtc_base/socket_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/socket_server.h -------------------------------------------------------------------------------- /include/rtc_base/socket_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/socket_stream.h -------------------------------------------------------------------------------- /include/rtc_base/ssl_adapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ssl_adapter.h -------------------------------------------------------------------------------- /include/rtc_base/ssl_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ssl_identity.h -------------------------------------------------------------------------------- /include/rtc_base/ssl_roots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/ssl_roots.h -------------------------------------------------------------------------------- /include/rtc_base/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/stream.h -------------------------------------------------------------------------------- /include/rtc_base/string_encode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/string_encode.h -------------------------------------------------------------------------------- /include/rtc_base/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/string_utils.h -------------------------------------------------------------------------------- /include/rtc_base/strings/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/strings/json.h -------------------------------------------------------------------------------- /include/rtc_base/strong_alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/strong_alias.h -------------------------------------------------------------------------------- /include/rtc_base/swap_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/swap_queue.h -------------------------------------------------------------------------------- /include/rtc_base/system/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/system/arch.h -------------------------------------------------------------------------------- /include/rtc_base/system/assume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/system/assume.h -------------------------------------------------------------------------------- /include/rtc_base/system/inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/system/inline.h -------------------------------------------------------------------------------- /include/rtc_base/system/unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/system/unused.h -------------------------------------------------------------------------------- /include/rtc_base/system_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/system_time.h -------------------------------------------------------------------------------- /include/rtc_base/task_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/task_queue.h -------------------------------------------------------------------------------- /include/rtc_base/test_base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/test_base64.h -------------------------------------------------------------------------------- /include/rtc_base/test_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/test_client.h -------------------------------------------------------------------------------- /include/rtc_base/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/test_utils.h -------------------------------------------------------------------------------- /include/rtc_base/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/thread.h -------------------------------------------------------------------------------- /include/rtc_base/time_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/time_utils.h -------------------------------------------------------------------------------- /include/rtc_base/trace_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/trace_event.h -------------------------------------------------------------------------------- /include/rtc_base/type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/type_traits.h -------------------------------------------------------------------------------- /include/rtc_base/weak_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/weak_ptr.h -------------------------------------------------------------------------------- /include/rtc_base/win/hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/win/hstring.h -------------------------------------------------------------------------------- /include/rtc_base/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/win32.h -------------------------------------------------------------------------------- /include/rtc_base/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/win32_window.h -------------------------------------------------------------------------------- /include/rtc_base/zero_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/rtc_base/zero_memory.h -------------------------------------------------------------------------------- /include/sdk/media_constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/sdk/media_constraints.h -------------------------------------------------------------------------------- /include/test/call_config_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/call_config_utils.h -------------------------------------------------------------------------------- /include/test/call_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/call_test.h -------------------------------------------------------------------------------- /include/test/direct_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/direct_transport.h -------------------------------------------------------------------------------- /include/test/drifting_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/drifting_clock.h -------------------------------------------------------------------------------- /include/test/encoder_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/encoder_settings.h -------------------------------------------------------------------------------- /include/test/fake_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/fake_decoder.h -------------------------------------------------------------------------------- /include/test/fake_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/fake_encoder.h -------------------------------------------------------------------------------- /include/test/fake_vp8_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/fake_vp8_decoder.h -------------------------------------------------------------------------------- /include/test/fake_vp8_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/fake_vp8_encoder.h -------------------------------------------------------------------------------- /include/test/field_trial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/field_trial.h -------------------------------------------------------------------------------- /include/test/frame_forwarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/frame_forwarder.h -------------------------------------------------------------------------------- /include/test/frame_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/frame_generator.h -------------------------------------------------------------------------------- /include/test/frame_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/frame_utils.h -------------------------------------------------------------------------------- /include/test/gl/gl_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/gl/gl_renderer.h -------------------------------------------------------------------------------- /include/test/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/gmock.h -------------------------------------------------------------------------------- /include/test/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/gtest.h -------------------------------------------------------------------------------- /include/test/ios/test_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/ios/test_support.h -------------------------------------------------------------------------------- /include/test/mac_capturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/mac_capturer.h -------------------------------------------------------------------------------- /include/test/mock_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/mock_transport.h -------------------------------------------------------------------------------- /include/test/null_transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/null_transport.h -------------------------------------------------------------------------------- /include/test/pc/e2e/test_peer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/pc/e2e/test_peer.h -------------------------------------------------------------------------------- /include/test/rtp_file_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/rtp_file_reader.h -------------------------------------------------------------------------------- /include/test/rtp_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/rtp_file_writer.h -------------------------------------------------------------------------------- /include/test/rtp_rtcp_observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/rtp_rtcp_observer.h -------------------------------------------------------------------------------- /include/test/run_loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/run_loop.h -------------------------------------------------------------------------------- /include/test/run_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/run_test.h -------------------------------------------------------------------------------- /include/test/scenario/scenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/scenario/scenario.h -------------------------------------------------------------------------------- /include/test/test_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/test_flags.h -------------------------------------------------------------------------------- /include/test/test_main_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/test_main_lib.h -------------------------------------------------------------------------------- /include/test/vcm_capturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/vcm_capturer.h -------------------------------------------------------------------------------- /include/test/video_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/video_renderer.h -------------------------------------------------------------------------------- /include/test/win/d3d_renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/test/win/d3d_renderer.h -------------------------------------------------------------------------------- /include/testing/gtest_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/testing/gtest_mac.h -------------------------------------------------------------------------------- /include/testing/perf/perf_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/testing/perf/perf_test.h -------------------------------------------------------------------------------- /include/testing/platform_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/testing/platform_test.h -------------------------------------------------------------------------------- /include/video/call_stats2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/video/call_stats2.h -------------------------------------------------------------------------------- /include/video/send_delay_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/video/send_delay_stats.h -------------------------------------------------------------------------------- /include/video/stats_counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/video/stats_counter.h -------------------------------------------------------------------------------- /include/video/video_analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/video/video_analyzer.h -------------------------------------------------------------------------------- /include/video/video_loopback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/include/video/video_loopback.h -------------------------------------------------------------------------------- /lib/binding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/lib/binding.js -------------------------------------------------------------------------------- /lib/libwebrtc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/lib/libwebrtc.a -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/scripts/install.sh -------------------------------------------------------------------------------- /scripts/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/scripts/patch.js -------------------------------------------------------------------------------- /src/DiscordInjector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/DiscordInjector.cc -------------------------------------------------------------------------------- /src/DiscordInjector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/DiscordInjector.h -------------------------------------------------------------------------------- /src/Hook.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/Hook.cc -------------------------------------------------------------------------------- /src/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/Hook.h -------------------------------------------------------------------------------- /src/Hooker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/Hooker.cc -------------------------------------------------------------------------------- /src/Hooker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/Hooker.h -------------------------------------------------------------------------------- /src/LogSinkImpl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/LogSinkImpl.cc -------------------------------------------------------------------------------- /src/LogSinkImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/LogSinkImpl.h -------------------------------------------------------------------------------- /src/desktop_capture_source.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/desktop_capture_source.cc -------------------------------------------------------------------------------- /src/desktop_capture_source.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/desktop_capture_source.h -------------------------------------------------------------------------------- /src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/main.cc -------------------------------------------------------------------------------- /src/utils/threads.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/utils/threads.cc -------------------------------------------------------------------------------- /src/utils/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/src/utils/threads.h -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsfolf/Discord-Screenshare-Linux/HEAD/test.js --------------------------------------------------------------------------------