Home
last modified time | relevance | path

Searched refs:StreamConfig (Results 1 – 25 of 72) sorted by relevance

123

/external/webrtc/logging/rtc_event_log/
Drtc_stream_config.cc16 StreamConfig::StreamConfig() {} in StreamConfig() function in webrtc::rtclog::StreamConfig
18 StreamConfig::~StreamConfig() {} in ~StreamConfig()
20 StreamConfig::StreamConfig(const StreamConfig& other) = default;
22 bool StreamConfig::operator==(const StreamConfig& other) const { in operator ==()
29 bool StreamConfig::operator!=(const StreamConfig& other) const { in operator !=()
33 StreamConfig::Codec::Codec(const std::string& payload_name, in Codec()
40 bool StreamConfig::Codec::operator==(const Codec& other) const { in operator ==()
Drtc_stream_config.h25 struct StreamConfig { struct
26 StreamConfig();
27 StreamConfig(const StreamConfig& other);
28 ~StreamConfig();
30 bool operator==(const StreamConfig& other) const;
31 bool operator!=(const StreamConfig& other) const;
/external/webrtc/modules/audio_processing/include/
Daudio_processing.h48 class StreamConfig; variable
534 const StreamConfig& input_config,
535 const StreamConfig& output_config,
546 const StreamConfig& input_config,
547 const StreamConfig& output_config,
554 const StreamConfig& input_config,
555 const StreamConfig& output_config,
561 const StreamConfig& input_config,
562 const StreamConfig& output_config,
569 const StreamConfig& reverse_config) = 0;
[all …]
Dmock_audio_processing.h106 const StreamConfig& input_config,
107 const StreamConfig& output_config,
113 const StreamConfig& input_config,
114 const StreamConfig& output_config,
120 const StreamConfig& input_config,
121 const StreamConfig& output_config,
126 (const float* const* data, const StreamConfig& reverse_config),
131 const StreamConfig& input_config,
132 const StreamConfig& output_config,
Daudio_frame_proxies.cc23 StreamConfig input_config(frame->sample_rate_hz_, frame->num_channels_, in ProcessAudioFrame()
25 StreamConfig output_config(frame->sample_rate_hz_, frame->num_channels_, in ProcessAudioFrame()
60 StreamConfig input_config(frame->sample_rate_hz_, frame->num_channels_, in ProcessReverseAudioFrame()
62 StreamConfig output_config(frame->sample_rate_hz_, frame->num_channels_, in ProcessReverseAudioFrame()
/external/webrtc/modules/audio_processing/
Daudio_processing_impl.h90 const StreamConfig& input_config,
91 const StreamConfig& output_config,
94 const StreamConfig& input_config,
95 const StreamConfig& output_config,
109 const StreamConfig& input_config,
110 const StreamConfig& output_config,
113 const StreamConfig& reverse_config) override;
115 const StreamConfig& input_config,
116 const StreamConfig& output_config,
244 int MaybeInitializeCapture(const StreamConfig& input_config,
[all …]
Daudio_processing_unittest.cc563 StreamConfig(frame_.sample_rate_hz, frame_.num_channels), in ProcessStreamChooser()
564 StreamConfig(frame_.sample_rate_hz, frame_.num_channels), in ProcessStreamChooser()
569 StreamConfig(frame_.sample_rate_hz, frame_.num_channels), in ProcessStreamChooser()
570 StreamConfig(output_sample_rate_hz_, num_output_channels_), in ProcessStreamChooser()
578 StreamConfig(revframe_.sample_rate_hz, revframe_.num_channels), in AnalyzeReverseStreamChooser()
579 StreamConfig(revframe_.sample_rate_hz, revframe_.num_channels), in AnalyzeReverseStreamChooser()
584 StreamConfig(revframe_.sample_rate_hz, revframe_.num_channels)); in AnalyzeReverseStreamChooser()
638 StreamConfig(reverse_frame->sample_rate_hz, in ProcessDelayVerificationTest()
640 StreamConfig(reverse_frame->sample_rate_hz, in ProcessDelayVerificationTest()
646 StreamConfig(process_frame->sample_rate_hz, in ProcessDelayVerificationTest()
[all …]
Dhigh_pass_filter_unittest.cc27 const StreamConfig& stream_config, in ProcessOneFrameAsAudioBuffer()
45 const StreamConfig& stream_config, in ProcessOneFrameAsVector()
78 const StreamConfig stream_config(16000, num_channels, false); in RunBitexactnessTest()
134 const StreamConfig stream_config_stereo(16000, 2, false); in TEST()
135 const StreamConfig stream_config_mono(16000, 1, false); in TEST()
150 const StreamConfig stream_config_stereo(16000, 2, false); in TEST()
151 const StreamConfig stream_config_mono(16000, 1, false); in TEST()
Daudio_processing_impl_unittest.cc145 StreamConfig config(16000, 1, /*has_keyboard=*/false); in TEST()
153 config = StreamConfig(32000, 1, /*has_keyboard=*/false); in TEST()
159 config = StreamConfig(32000, 2, /*has_keyboard=*/false); in TEST()
167 config = StreamConfig(16000, 2, /*has_keyboard=*/false); in TEST()
186 StreamConfig config(kSampleRateHz, kNumChannels, /*has_keyboard=*/false); in TEST()
228 StreamConfig config(kSampleRateHz, kNumChannels, /*has_keyboard=*/false); in TEST()
272 StreamConfig stream_config(kSampleRateHz, kNumChannels, in TEST()
315 StreamConfig stream_config(kSampleRateHz, kNumChannels, in TEST()
383 StreamConfig stream_config(kSampleRateHz, kNumChannels, in TEST()
440 StreamConfig stream_config(/*sample_rate_hz=*/kSampleRateHz, in TEST()
[all …]
Daudio_buffer.h112 const StreamConfig& stream_config);
114 const StreamConfig& stream_config);
117 void CopyTo(const StreamConfig& stream_config,
119 void CopyTo(const StreamConfig& stream_config, float* const* stacked_data);
/external/webrtc/modules/audio_processing/test/
Dsimulator_buffers.h39 StreamConfig* config,
49 StreamConfig render_input_config;
50 StreamConfig capture_input_config;
51 StreamConfig render_output_config;
52 StreamConfig capture_output_config;
Ddebug_dump_replayer.h43 StreamConfig GetOutputConfig() const; in RTC_POP_IGNORING_WUNDEF()
67 StreamConfig input_config_; in RTC_POP_IGNORING_WUNDEF()
68 StreamConfig reverse_config_; in RTC_POP_IGNORING_WUNDEF()
69 StreamConfig output_config_; in RTC_POP_IGNORING_WUNDEF()
Daudio_buffer_tools.cc18 void SetupFrame(const StreamConfig& stream_config, in SetupFrame()
29 void CopyVectorToAudioBuffer(const StreamConfig& stream_config, in CopyVectorToAudioBuffer()
44 void ExtractVectorFromAudioBuffer(const StreamConfig& stream_config, in ExtractVectorFromAudioBuffer()
Daudio_processing_simulator.h42 config = StreamConfig(sample_rate_hz, num_channels, /*has_keyboard=*/false); in SetFormat()
74 StreamConfig config;
196 StreamConfig in_config_;
197 StreamConfig out_config_;
198 StreamConfig reverse_in_config_;
199 StreamConfig reverse_out_config_;
Daudio_buffer_tools.h24 void CopyVectorToAudioBuffer(const StreamConfig& stream_config,
29 void ExtractVectorFromAudioBuffer(const StreamConfig& stream_config,
Ddebug_dump_replayer.cc24 const StreamConfig& config) { in MaybeResetBuffer()
94 StreamConfig DebugDumpReplayer::GetOutputConfig() const { in GetOutputConfig()
106 input_config_ = StreamConfig(msg.sample_rate(), msg.num_input_channels()); in OnInitEvent()
108 StreamConfig(msg.output_sample_rate(), msg.num_output_channels()); in OnInitEvent()
110 StreamConfig(msg.reverse_sample_rate(), msg.num_reverse_channels()); in OnInitEvent()
/external/webrtc/logging/rtc_event_log/events/
Drtc_event_audio_receive_stream_config.h21 struct StreamConfig;
27 std::unique_ptr<rtclog::StreamConfig> config);
36 const rtclog::StreamConfig& config() const { return *config_; } in config()
42 const std::unique_ptr<const rtclog::StreamConfig> config_;
Drtc_event_audio_send_stream_config.h21 struct StreamConfig;
27 std::unique_ptr<rtclog::StreamConfig> config);
36 const rtclog::StreamConfig& config() const { return *config_; } in config()
41 const std::unique_ptr<const rtclog::StreamConfig> config_;
Drtc_event_video_receive_stream_config.h24 std::unique_ptr<rtclog::StreamConfig> config);
33 const rtclog::StreamConfig& config() const { return *config_; } in config()
39 const std::unique_ptr<const rtclog::StreamConfig> config_;
Drtc_event_video_send_stream_config.h24 std::unique_ptr<rtclog::StreamConfig> config);
33 const rtclog::StreamConfig& config() const { return *config_; } in config()
38 const std::unique_ptr<const rtclog::StreamConfig> config_;
Drtc_event_video_receive_stream_config.cc21 std::unique_ptr<rtclog::StreamConfig> config) in RtcEventVideoReceiveStreamConfig()
29 config_(std::make_unique<rtclog::StreamConfig>(*other.config_)) {} in RtcEventVideoReceiveStreamConfig()
Drtc_event_video_send_stream_config.cc20 std::unique_ptr<rtclog::StreamConfig> config) in RtcEventVideoSendStreamConfig()
26 config_(std::make_unique<rtclog::StreamConfig>(*other.config_)) {} in RtcEventVideoSendStreamConfig()
Drtc_event_audio_receive_stream_config.cc22 std::unique_ptr<rtclog::StreamConfig> config) in RtcEventAudioReceiveStreamConfig()
30 config_(std::make_unique<rtclog::StreamConfig>(*other.config_)) {} in RtcEventAudioReceiveStreamConfig()
Drtc_event_audio_send_stream_config.cc22 std::unique_ptr<rtclog::StreamConfig> config) in RtcEventAudioSendStreamConfig()
30 config_(std::make_unique<rtclog::StreamConfig>(*other.config_)) {} in RtcEventAudioSendStreamConfig()
/external/webrtc/test/fuzzers/
Daudio_processing_fuzzer_helper.cc122 ptr_to_float_frames, StreamConfig(input_rate, num_channels), in FuzzAudioProcessing()
123 StreamConfig(output_rate, num_channels), ptr_to_float_frames); in FuzzAudioProcessing()
126 ptr_to_float_frames, StreamConfig(input_rate, num_channels), in FuzzAudioProcessing()
127 StreamConfig(output_rate, num_channels), ptr_to_float_frames); in FuzzAudioProcessing()

123