HomeSort by relevance Sort by last modified time
    Searched refs:temporal_layers_ (Results 1 - 3 of 3) sorted by null

  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
realtime_temporal_layers.cc 88 : temporal_layers_(1),
108 temporal_layers_ =
109 CalculateNumberOfTemporalLayers(temporal_layers_, framerate);
110 temporal_layers_ = std::min(temporal_layers_, max_temporal_layers_);
111 assert(temporal_layers_ >= 1 && temporal_layers_ <= 3);
113 cfg->ts_number_layers = temporal_layers_;
114 for (int tl = 0; tl < temporal_layers_; ++tl) {
116 bitrate_kbit * kVp8LayerRateAlloction[temporal_layers_ - 1][tl]
254 int temporal_layers_; member in class:webrtc::__anon50046::RealTimeTemporalLayers
    [all...]
vp8_impl.cc 166 temporal_layers_.reserve(kMaxSimulcastStreams);
202 while (!temporal_layers_.empty()) {
203 delete temporal_layers_.back();
204 temporal_layers_.pop_back();
291 temporal_layers_[stream_idx]->ConfigureBitrates(
324 temporal_layers_.push_back(
327 temporal_layers_.push_back(
336 temporal_layers_.push_back(tl_factory.Create(layers, rand()));
553 temporal_layers_[0]->ConfigureBitrates(inst->startBitrate, inst->maxBitrate,
564 temporal_layers_[stream_idx]->ConfigureBitrates
    [all...]
vp8_impl.h 104 std::vector<TemporalLayers*> temporal_layers_; member in class:webrtc::VP8EncoderImpl

Completed in 98 milliseconds