Lines Matching refs:ost

217     std::ostringstream ost;
218 ost << "AudioOptions {";
219 ost << ToStringIfSet("aec", echo_cancellation);
220 ost << ToStringIfSet("agc", auto_gain_control);
221 ost << ToStringIfSet("rx_agc", rx_auto_gain_control);
222 ost << ToStringIfSet("ns", noise_suppression);
223 ost << ToStringIfSet("hf", highpass_filter);
224 ost << ToStringIfSet("swap", stereo_swapping);
225 ost << ToStringIfSet("typing", typing_detection);
226 ost << ToStringIfSet("comfort_noise", aecm_generate_comfort_noise);
227 ost << ToStringIfSet("conference", conference_mode);
228 ost << ToStringIfSet("agc_delta", adjust_agc_delta);
229 ost << ToStringIfSet("experimental_agc", experimental_agc);
230 ost << ToStringIfSet("experimental_aec", experimental_aec);
231 ost << ToStringIfSet("aec_dump", aec_dump);
232 ost << ToStringIfSet("experimental_acm", experimental_acm);
233 ost << ToStringIfSet("tx_agc_target_dbov", tx_agc_target_dbov);
234 ost << ToStringIfSet("tx_agc_digital_compression_gain",
236 ost << ToStringIfSet("tx_agc_limiter", tx_agc_limiter);
237 ost << ToStringIfSet("rx_agc_target_dbov", rx_agc_target_dbov);
238 ost << ToStringIfSet("rx_agc_digital_compression_gain",
240 ost << ToStringIfSet("rx_agc_limiter", rx_agc_limiter);
241 ost << ToStringIfSet("recording_sample_rate", recording_sample_rate);
242 ost << ToStringIfSet("playout_sample_rate", playout_sample_rate);
243 ost << ToStringIfSet("dscp", dscp);
244 ost << "}";
245 return ost.str();
349 std::ostringstream ost;
350 ost << "VideoOptions {";
351 ost << ToStringIfSet("encoder adaption", adapt_input_to_encoder);
352 ost << ToStringIfSet("cpu adaption", adapt_input_to_cpu_usage);
353 ost << ToStringIfSet("cpu adaptation smoothing", adapt_cpu_with_smoothing);
354 ost << ToStringIfSet("adapt view switch", adapt_view_switch);
355 ost << ToStringIfSet("video adapt third", video_adapt_third);
356 ost << ToStringIfSet("noise reduction", video_noise_reduction);
357 ost << ToStringIfSet("1 layer screencast", video_one_layer_screencast);
358 ost << ToStringIfSet("high bitrate", video_high_bitrate);
359 ost << ToStringIfSet("watermark", video_watermark);
360 ost << ToStringIfSet("video temporal layer screencast",
362 ost << ToStringIfSet("video temporal layer realtime",
364 ost << ToStringIfSet("leaky bucket", video_leaky_bucket);
365 ost << ToStringIfSet("cpu overuse detection", cpu_overuse_detection);
366 ost << ToStringIfSet("conference mode", conference_mode);
367 ost << ToStringIfSet("process", process_adaptation_threshhold);
368 ost << ToStringIfSet("low", system_low_adaptation_threshhold);
369 ost << ToStringIfSet("high", system_high_adaptation_threshhold);
370 ost << ToStringIfSet("buffered mode latency", buffered_mode_latency);
371 ost << ToStringIfSet("lower min bitrate", lower_min_bitrate);
372 ost << ToStringIfSet("dscp", dscp);
373 ost << ToStringIfSet("suspend below min bitrate",
375 ost << "}";
376 return ost.str();