Reland: Rename VideoQualityTestFixtureInterface::Params.pipe into config.
Also make it optional and use default value, if optional is not specified. It is done also for next refactoring, that will introduce ability to override network simulation layer. Bug: webrtc:9630 Change-Id: I2f9b84770e428a7738b47bcf2da1002697c0f313 Reviewed-on: https://webrtc-review.googlesource.com/96580 Reviewed-by: Patrik Höglund <phoglund@webrtc.org> Reviewed-by: Erik Språng <sprang@webrtc.org> Commit-Queue: Artem Titov <titovartem@webrtc.org> Cr-Commit-Position: refs/heads/master@{#24472}
This commit is contained in:
@ -80,7 +80,13 @@ class VideoQualityTestFixtureInterface {
|
||||
std::string graph_data_output_filename;
|
||||
std::string graph_title;
|
||||
} analyzer;
|
||||
// Deprecated. DO NOT USE. Use config instead. This is not pipe actually,
|
||||
// it is just configuration, that will be passed to default implementation
|
||||
// of simulation layer.
|
||||
DefaultNetworkSimulationConfig pipe;
|
||||
// Config for default simulation implementation. May be nullopt in that
|
||||
// case, a default config will be used.
|
||||
absl::optional<DefaultNetworkSimulationConfig> config;
|
||||
struct SS { // Spatial scalability.
|
||||
std::vector<VideoStream> streams; // If empty, one stream is assumed.
|
||||
size_t selected_stream;
|
||||
|
||||
Reference in New Issue
Block a user