Home
last modified time | relevance | path

Searched refs:temporal_layers (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/webrtc/
Dconfig.cc43 for (size_t i = 0; i < temporal_layers.size(); ++i) { in ToString()
44 ss << temporal_layers[i]; in ToString()
45 if (i != temporal_layers.size() - 1) in ToString()
Dconfig.h108 std::vector<int> temporal_layers; member
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
Dsvc_encodeframe.c257 svc_ctx->temporal_layers = atoi(option_value); in parse_options()
302 svc_ctx->spatial_layers * svc_ctx->temporal_layers > 4)) in parse_options()
412 if (svc_ctx->temporal_layers < 1) in vpx_svc_init()
413 svc_ctx->temporal_layers = 1; in vpx_svc_init()
414 if (svc_ctx->temporal_layers > VPX_TS_MAX_LAYERS) in vpx_svc_init()
415 svc_ctx->temporal_layers = VPX_TS_MAX_LAYERS; in vpx_svc_init()
424 if (svc_ctx->temporal_layers > 1) { in vpx_svc_init()
426 for (i = 0; i < svc_ctx->temporal_layers; ++i) { in vpx_svc_init()
428 svc_ctx->temporal_layers; in vpx_svc_init()
429 enc_cfg->ts_rate_decimator[i] = 1 << (svc_ctx->temporal_layers - 1 - i); in vpx_svc_init()
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
Dsvc_test.cc742 svc_.temporal_layers = 2; in TEST_F()
747 svc_.temporal_layers = 2; in TEST_F()
760 svc_.temporal_layers = 2; in TEST_F()
765 svc_.temporal_layers = 2; in TEST_F()
781 svc_.temporal_layers = 2; in TEST_F()
786 svc_.temporal_layers = 2; in TEST_F()
805 svc_.temporal_layers = 2; in TEST_F()
810 svc_.temporal_layers = 2; in TEST_F()
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/
Dsvc_context.h35 int temporal_layers; // number of temporal layers member
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/
Dtemporal_layers.h32 virtual TemporalLayers* Create(int temporal_layers,
Ddefault_temporal_layers.cc288 int temporal_layers, in Create() argument
290 return new DefaultTemporalLayers(temporal_layers, initial_tl0_pic_idx); in Create()
Dvp8.gyp39 'temporal_layers.h',
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
Dvp9_spatial_svc_encoder.c122 svc_ctx->temporal_layers = default_temporal_layers; in parse_command_line()
163 svc_ctx->temporal_layers = arg_parse_uint(&arg); in parse_command_line()
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
Dvideo_sender_unittest.cc338 int temporal_layers) { in MakeVp8VideoCodec() argument
344 codec.codecSpecific.VP8.numberOfTemporalLayers = temporal_layers; in MakeVp8VideoCodec()
/external/chromium_org/third_party/webrtc/video/
Dvideo_send_stream.cc334 static_cast<unsigned char>(streams.back().temporal_layers.size()); in ReconfigureVideoEncoder()
368 static_cast<unsigned char>(streams[i].temporal_layers.size()); in ReconfigureVideoEncoder()
Dvideo_send_stream_tests.cc1443 encoder_config->streams[i].temporal_layers.resize( in TEST_F()
/external/chromium_org/third_party/webrtc/modules/video_coding/
DBUILD.gn123 "codecs/vp8/temporal_layers.h",
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/tools/
Dvideo_quality_measurement.cc69 DEFINE_int32(temporal_layers, 0, "The number of temporal layers to use "