HomeSort by relevance Sort by last modified time
    Searched defs:number_of_streams (Results 1 - 2 of 2) sorted by null

  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
simulcast_encoder_adapter.cc 181 int number_of_streams = NumberOfStreams(*inst); local
182 bool doing_simulcast = (number_of_streams > 1);
184 if (doing_simulcast && !ValidSimulcastResolutions(*inst, number_of_streams)) {
191 if (number_of_streams == 1 && inst->mode == kScreensharing) {
198 // Create |number_of_streams| of encoder instances and init them.
199 for (int i = 0; i < number_of_streams; ++i) {
206 bool highest_resolution_stream = (i == (number_of_streams - 1));
207 PopulateStreamCodec(&codec_, i, number_of_streams,
vp8_impl.cc 373 int number_of_streams = NumberOfStreams(*inst); local
374 bool doing_simulcast = (number_of_streams > 1);
376 if (doing_simulcast && !ValidSimulcastResolutions(*inst, number_of_streams)) {
387 SetupTemporalLayers(number_of_streams, num_temporal_layers, *inst);
401 picture_id_.resize(number_of_streams);
402 last_key_frame_picture_id_.resize(number_of_streams);
403 encoded_images_.resize(number_of_streams);
404 encoders_.resize(number_of_streams);
405 configurations_.resize(number_of_streams);
406 downsampling_factors_.resize(number_of_streams);
    [all...]

Completed in 126 milliseconds