Home
last modified time | relevance | path

Searched refs:num_temporal_layers (Results 1 – 18 of 18) sorted by relevance

/external/libvpx/libvpx/examples/
Dvp8_multi_resolution_encoder.c166 static void set_temporal_layer_pattern(int num_temporal_layers, in set_temporal_layer_pattern() argument
169 assert(num_temporal_layers <= MAX_NUM_TEMPORAL_LAYERS); in set_temporal_layer_pattern()
170 switch (num_temporal_layers) { in set_temporal_layer_pattern()
340 unsigned int num_temporal_layers[NUM_ENCODERS] = { 3, 3, 3 }; in main() local
379 num_temporal_layers[i] = in main()
381 if (num_temporal_layers[i] < 1 || num_temporal_layers[i] > 3) in main()
383 num_temporal_layers); in main()
483 set_temporal_layer_pattern(num_temporal_layers[i], &cfg[i], in main()
573 flag_periodicity = periodicity_to_num_layers[num_temporal_layers[i] - 1]; in main()
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
Dscreenshare_layers.cc48 ScreenshareLayers::ScreenshareLayers(int num_temporal_layers, in ScreenshareLayers() argument
50 : number_of_temporal_layers_(num_temporal_layers), in ScreenshareLayers()
60 assert(num_temporal_layers > 0); in ScreenshareLayers()
61 assert(num_temporal_layers <= 2); in ScreenshareLayers()
Dtemporal_layers.h65 virtual TemporalLayers* Create(int num_temporal_layers,
Dvp8_impl.cc315 int num_temporal_layers, in SetupTemporalLayers() argument
325 new ScreenshareLayers(num_temporal_layers, rand())); in SetupTemporalLayers()
328 tl_factory.Create(num_temporal_layers, rand())); in SetupTemporalLayers()
380 int num_temporal_layers = in InitEncode() local
385 if (num_temporal_layers < 1) in InitEncode()
386 num_temporal_layers = 1; in InitEncode()
387 SetupTemporalLayers(number_of_streams, num_temporal_layers, *inst); in InitEncode()
Dscreenshare_layers.h33 ScreenshareLayers(int num_temporal_layers, uint8_t initial_tl0_pic_idx);
Dvp8_impl.h65 int num_temporal_layers,
Dsimulcast_encoder_adapter.cc104 virtual webrtc::TemporalLayers* Create(int num_temporal_layers, in Create()
106 return new webrtc::ScreenshareLayers(num_temporal_layers, rand()); in Create()
Dsimulcast_unittest.h290 int num_temporal_layers) { in ConfigureStream() argument
297 stream->numberOfTemporalLayers = num_temporal_layers; in ConfigureStream()
/external/webrtc/webrtc/modules/video_coding/
Dmedia_optimization.h48 int num_temporal_layers,
128 int num_temporal_layers,
/external/webrtc/webrtc/modules/video_coding/codecs/test/
Dvideoprocessor_integrationtest.cc42 int num_temporal_layers; member
427 num_temporal_layers_ = process.num_temporal_layers; in ProcessFramesAndVerify()
535 int num_temporal_layers, in SetCodecParameters() argument
543 process_settings->num_temporal_layers = num_temporal_layers, in SetCodecParameters()
/external/webrtc/webrtc/video/
Dvideo_quality_test.cc641 params_.common.num_temporal_layers - 1); in CheckParams()
650 RTC_CHECK_LT(params_.common.selected_tl, params_.common.num_temporal_layers); in CheckParams()
657 params_.common.num_temporal_layers - 1); in CheckParams()
712 if (params.common.num_temporal_layers == 2) in DefaultVideoStream()
755 RTC_CHECK_LE(params->common.num_temporal_layers, 2); in FillScalabilitySettings()
842 static_cast<unsigned char>(params_.common.num_temporal_layers); in SetupScreenshare()
849 static_cast<unsigned char>(params_.common.num_temporal_layers); in SetupScreenshare()
Dvideo_quality_test.h37 int num_temporal_layers; member
Dvideo_loopback.cc59 DEFINE_int32(num_temporal_layers,
Dscreenshare_loopback.cc59 DEFINE_int32(num_temporal_layers, 2, "Number of temporal layers to use.");
Dvideo_send_stream_tests.cc62 void TestVp9NonFlexMode(uint8_t num_temporal_layers,
2161 void VideoSendStreamTest::TestVp9NonFlexMode(uint8_t num_temporal_layers, in TestVp9NonFlexMode() argument
2169 NonFlexibleMode(uint8_t num_temporal_layers, uint8_t num_spatial_layers) in TestVp9NonFlexMode() argument
2170 : num_temporal_layers_(num_temporal_layers), in TestVp9NonFlexMode()
2172 l_field_(num_temporal_layers > 1 || num_spatial_layers > 1) {} in TestVp9NonFlexMode()
2206 } test(num_temporal_layers, num_spatial_layers); in TestVp9NonFlexMode()
/external/mesa3d/src/gallium/drivers/radeon/
Dradeon_vcn_enc.h166 uint32_t num_temporal_layers; member
Dradeon_vcn_enc_1_2.c237 enc->enc_pic.layer_ctrl.num_temporal_layers = 1; in radeon_enc_layer_control()
241 RADEON_ENC_CS(enc->enc_pic.layer_ctrl.num_temporal_layers); in radeon_enc_layer_control()
/external/libvpx/libvpx/test/
Dsvc_datarate_test.cc141 void CheckLayerRateTargeting(int num_spatial_layers, int num_temporal_layers, in CheckLayerRateTargeting() argument
145 for (int tl = 0; tl < num_temporal_layers; ++tl) { in CheckLayerRateTargeting()
146 const int layer = sl * num_temporal_layers + tl; in CheckLayerRateTargeting()