Searched refs:temporal_layers_ (Results 1 – 3 of 3) sorted by relevance
88 : temporal_layers_(1), in RealTimeTemporalLayers()108 temporal_layers_ = in ConfigureBitrates()109 CalculateNumberOfTemporalLayers(temporal_layers_, framerate); in ConfigureBitrates()110 temporal_layers_ = std::min(temporal_layers_, max_temporal_layers_); in ConfigureBitrates()111 assert(temporal_layers_ >= 1 && temporal_layers_ <= 3); in ConfigureBitrates()113 cfg->ts_number_layers = temporal_layers_; in ConfigureBitrates()114 for (int tl = 0; tl < temporal_layers_; ++tl) { in ConfigureBitrates()116 bitrate_kbit * kVp8LayerRateAlloction[temporal_layers_ - 1][tl]; in ConfigureBitrates()119 switch (temporal_layers_) { in ConfigureBitrates()209 assert(temporal_layers_ > 0); in PopulateCodecSpecific()[all …]
166 temporal_layers_.reserve(kMaxSimulcastStreams); in VP8EncoderImpl()202 while (!temporal_layers_.empty()) { in Release()203 delete temporal_layers_.back(); in Release()204 temporal_layers_.pop_back(); in Release()291 temporal_layers_[stream_idx]->ConfigureBitrates( in SetRates()324 temporal_layers_.push_back( in SetupTemporalLayers()327 temporal_layers_.push_back( in SetupTemporalLayers()336 temporal_layers_.push_back(tl_factory.Create(layers, rand())); in SetupTemporalLayers()553 temporal_layers_[0]->ConfigureBitrates(inst->startBitrate, inst->maxBitrate, in InitEncode()564 temporal_layers_[stream_idx]->ConfigureBitrates( in InitEncode()[all …]
104 std::vector<TemporalLayers*> temporal_layers_; variable