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.h97 LAYER_CONTEXT layer_context[VPX_MAX_LAYERS];
103 int ext_frame_flags[VPX_MAX_LAYERS];
104 int lst_fb_idx[VPX_MAX_LAYERS];
105 int gld_fb_idx[VPX_MAX_LAYERS];
106 int alt_fb_idx[VPX_MAX_LAYERS];
127 int mi_stride[VPX_MAX_LAYERS];
128 int mi_rows[VPX_MAX_LAYERS];
129 int mi_cols[VPX_MAX_LAYERS];
137 int last_layer_dropped[VPX_MAX_LAYERS];
138 int drop_spatial_layer[VPX_MAX_LAYERS];
[all …]
Dvp9_encoder.h221 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.cc260 int64_t bits_in_buffer_model_tmp[VPX_MAX_LAYERS]; in PreEncodeFrameHook()
506 int64_t bits_total_[VPX_MAX_LAYERS];
508 double file_datarate_[VPX_MAX_LAYERS];
/external/libvpx/libvpx/examples/
Dvp9_spatial_svc_encoder.c420 int layer_input_frames[VPX_MAX_LAYERS];
422 int layer_tot_enc_frames[VPX_MAX_LAYERS];
424 int layer_enc_frames[VPX_MAX_LAYERS];
426 double layer_framerate[VPX_MAX_LAYERS];
428 double layer_pfb[VPX_MAX_LAYERS];
430 double layer_avg_frame_size[VPX_MAX_LAYERS];
432 double layer_avg_rate_mismatch[VPX_MAX_LAYERS];
434 double layer_encoding_bitrate[VPX_MAX_LAYERS];
Dsvc_encodeframe.c309 float alloc_ratio[VPX_MAX_LAYERS] = { 0 }; in assign_layer_bitrates()
353 float alloc_ratio[VPX_MAX_LAYERS] = { 0 }; in assign_layer_bitrates()
456 if (svc_ctx->temporal_layers * svc_ctx->spatial_layers > VPX_MAX_LAYERS) { in vpx_svc_init()
461 (int)VPX_MAX_LAYERS); in vpx_svc_init()
Dsvc_context.h55 int bitrates[VPX_MAX_LAYERS];
Dvpx_temporal_svc_encoder.c84 int layer_target_bitrate[VPX_MAX_LAYERS];
/external/webrtc/webrtc/modules/video_coding/codecs/vp9/
Dvp9_impl.cc141 float rate_ratio[VPX_MAX_LAYERS] = {0}; in SetSvcRates()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c223 if (cfg->ss_number_layers * cfg->ts_number_layers > VPX_MAX_LAYERS) in validate_config()