Home
last modified time | relevance | path

Searched refs:VPX_MAX_LAYERS (Results 1 – 12 of 12) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_svc_layercontext.h96 LAYER_CONTEXT layer_context[VPX_MAX_LAYERS];
102 int ext_frame_flags[VPX_MAX_LAYERS];
103 int lst_fb_idx[VPX_MAX_LAYERS];
104 int gld_fb_idx[VPX_MAX_LAYERS];
105 int alt_fb_idx[VPX_MAX_LAYERS];
126 int mi_stride[VPX_MAX_LAYERS];
127 int mi_rows[VPX_MAX_LAYERS];
128 int mi_cols[VPX_MAX_LAYERS];
136 int last_layer_dropped[VPX_MAX_LAYERS];
137 int drop_spatial_layer[VPX_MAX_LAYERS];
[all …]
Dvp9_encoder.h229 int layer_target_bitrate[VPX_MAX_LAYERS];
/external/libvpx/libvpx/vpx/
Dvpx_encoder.h43 #define VPX_MAX_LAYERS 12 // 3 temporal + 4 spatial layers are allowed. macro
684 unsigned int layer_target_bitrate[VPX_MAX_LAYERS];
702 int max_quantizers[VPX_MAX_LAYERS]; /**< Max Q for each layer */
703 int min_quantizers[VPX_MAX_LAYERS]; /**< Min Q for each layer */
704 int scaling_factor_num[VPX_MAX_LAYERS]; /**< Scaling factor-numerator */
705 int scaling_factor_den[VPX_MAX_LAYERS]; /**< Scaling factor-denominator */
706 int speed_per_layer[VPX_MAX_LAYERS]; /**< Speed setting for each sl */
/external/libvpx/libvpx/test/
Dsvc_test.h33 sizeof(bits_in_buffer_model_[0]) * VPX_MAX_LAYERS); in OnePassCbrSvc()
35 sizeof(layer_target_avg_bandwidth_[0]) * VPX_MAX_LAYERS); in OnePassCbrSvc()
56 int64_t bits_in_buffer_model_[VPX_MAX_LAYERS];
57 int layer_target_avg_bandwidth_[VPX_MAX_LAYERS];
Dsvc_test.cc42 for (int i = 0; i < VPX_MAX_LAYERS; ++i) { in PreEncodeFrameHookSetup()
93 float alloc_ratio[VPX_MAX_LAYERS] = { 0 }; in AssignLayerBitrates()
Dsvc_datarate_test.cc273 int64_t bits_in_buffer_model_tmp[VPX_MAX_LAYERS]; in PreEncodeFrameHook()
519 int64_t bits_total_[VPX_MAX_LAYERS];
521 double file_datarate_[VPX_MAX_LAYERS];
/external/libvpx/libvpx/examples/
Dvp9_spatial_svc_encoder.c436 int layer_input_frames[VPX_MAX_LAYERS];
438 int layer_tot_enc_frames[VPX_MAX_LAYERS];
440 int layer_enc_frames[VPX_MAX_LAYERS];
442 double layer_framerate[VPX_MAX_LAYERS];
444 double layer_pfb[VPX_MAX_LAYERS];
446 double layer_avg_frame_size[VPX_MAX_LAYERS];
448 double layer_avg_rate_mismatch[VPX_MAX_LAYERS];
450 double layer_encoding_bitrate[VPX_MAX_LAYERS];
Dsvc_context.h55 int bitrates[VPX_MAX_LAYERS];
Dsvc_encodeframe.c311 float alloc_ratio[VPX_MAX_LAYERS] = { 0 }; in assign_layer_bitrates()
355 float alloc_ratio[VPX_MAX_LAYERS] = { 0 }; in assign_layer_bitrates()
458 if (svc_ctx->temporal_layers * svc_ctx->spatial_layers > VPX_MAX_LAYERS) { in vpx_svc_init()
462 svc_ctx->spatial_layers * svc_ctx->temporal_layers, VPX_MAX_LAYERS); in vpx_svc_init()
Dvpx_temporal_svc_encoder.c85 int layer_target_bitrate[VPX_MAX_LAYERS];
/external/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc353 float rate_ratio[VPX_MAX_LAYERS] = {0}; in SetSvcRates()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c248 if (cfg->ss_number_layers * cfg->ts_number_layers > VPX_MAX_LAYERS) in validate_config()