OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:spatial_layers
(Results
1 - 9
of
9
) sorted by null
/external/libvpx/libvpx/vpx/src/
svc_encodeframe.c
163
int num_layers = svc_ctx->
spatial_layers
;
165
num_layers = svc_ctx->
spatial_layers
* svc_ctx->temporal_layers;
224
svc_ctx->
spatial_layers
= atoi(option_value);
261
for (i = 0; i < svc_ctx->
spatial_layers
; ++i) {
270
(svc_ctx->
spatial_layers
> 3 ||
271
svc_ctx->
spatial_layers
* svc_ctx->temporal_layers > 4))
274
for (i = 0; i < svc_ctx->
spatial_layers
; ++i)
276
if (alt_ref_enabled > REF_FRAMES - svc_ctx->
spatial_layers
) {
280
REF_FRAMES - svc_ctx->
spatial_layers
, alt_ref_enabled);
306
for (sl = 0; sl < svc_ctx->
spatial_layers
; ++sl)
[
all
...]
/external/libvpx/libvpx/vpx/
svc_context.h
34
int
spatial_layers
; // number of spatial layers
member in struct:__anon24624
/external/libvpx/libvpx/test/
svc_test.cc
110
svc_.
spatial_layers
= layers;
172
svc_.
spatial_layers
= layers;
329
svc_.
spatial_layers
= 6; // too many layers
333
svc_.
spatial_layers
= 0; // use default layers
335
EXPECT_EQ(VPX_SS_DEFAULT_LAYERS, svc_.
spatial_layers
);
339
svc_.
spatial_layers
= 2;
357
EXPECT_EQ(3, svc_.
spatial_layers
);
365
EXPECT_EQ(2, svc_.
spatial_layers
);
369
svc_.
spatial_layers
= 2;
392
svc_.
spatial_layers
= 2
[
all
...]
datarate_test.cc
[
all
...]
/external/webrtc/webrtc/
config.h
111
std::vector<SpatialLayer>
spatial_layers
;
member in struct:webrtc::VideoEncoderConfig
/external/webrtc/webrtc/video/
video_quality_test.h
68
std::vector<SpatialLayer>
spatial_layers
;
member in struct:webrtc::VideoQualityTest::Params::__anon37538
video_quality_test.cc
664
RTC_CHECK(params_.ss.
spatial_layers
.empty() ||
665
params_.ss.
spatial_layers
.size() ==
763
RTC_CHECK(params->ss.
spatial_layers
.empty());
774
params->ss.
spatial_layers
.push_back(layer);
818
video_encoder_config_.
spatial_layers
= params_.ss.
spatial_layers
;
[
all
...]
video_send_stream.cc
383
RTC_DCHECK(config.
spatial_layers
.empty() ||
384
config.
spatial_layers
.size() ==
388
for (size_t i = 0; i < config.
spatial_layers
.size(); ++i)
389
video_codec.spatialLayers[i] = config.
spatial_layers
[i];
/external/libvpx/libvpx/examples/
vp9_spatial_svc_encoder.c
185
svc_ctx->
spatial_layers
= default_spatial_layers;
231
svc_ctx->
spatial_layers
= arg_parse_uint(&arg);
379
app_input->frames_to_skip, svc_ctx->
spatial_layers
, enc_cfg->g_w,
737
svc_ctx.
spatial_layers
, frame_cnt == 0,
[
all
...]
Completed in 160 milliseconds