Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_svc_layercontext.h75 LAYER_CONTEXT layer_context[VPX_MAX_LAYERS];
81 int ext_frame_flags[VPX_MAX_LAYERS];
82 int ext_lst_fb_idx[VPX_MAX_LAYERS];
83 int ext_gld_fb_idx[VPX_MAX_LAYERS];
84 int ext_alt_fb_idx[VPX_MAX_LAYERS];
Dvp9_encoder.h195 int layer_target_bitrate[VPX_MAX_LAYERS];
/external/libvpx/libvpx/vpx/
Dvpx_encoder.h46 #define VPX_MAX_LAYERS 12 // 3 temporal + 4 spatial layers are allowed. macro
49 #define MAX_LAYERS VPX_MAX_LAYERS // 3 temporal + 4 spatial layers allowed.
742 unsigned int layer_target_bitrate[VPX_MAX_LAYERS];
759 int max_quantizers[VPX_MAX_LAYERS]; /**< Max Q for each layer */
760 int min_quantizers[VPX_MAX_LAYERS]; /**< Min Q for each layer */
761 int scaling_factor_num[VPX_MAX_LAYERS]; /**< Scaling factor-numerator */
762 int scaling_factor_den[VPX_MAX_LAYERS]; /**< Scaling factor-denominator */
/external/libvpx/libvpx/examples/
Dvp9_spatial_svc_encoder.c372 int layer_input_frames[VPX_MAX_LAYERS];
374 int layer_tot_enc_frames[VPX_MAX_LAYERS];
376 int layer_enc_frames[VPX_MAX_LAYERS];
378 double layer_framerate[VPX_MAX_LAYERS];
380 double layer_pfb[VPX_MAX_LAYERS];
382 double layer_avg_frame_size[VPX_MAX_LAYERS];
384 double layer_avg_rate_mismatch[VPX_MAX_LAYERS];
386 double layer_encoding_bitrate[VPX_MAX_LAYERS];
Dvpx_temporal_svc_encoder.c73 int layer_target_bitrate[VPX_MAX_LAYERS];
/external/libvpx/libvpx/vpx/src/
Dsvc_encodeframe.c321 float alloc_ratio[VPX_MAX_LAYERS] = {0}; in assign_layer_bitrates()
363 float alloc_ratio[VPX_MAX_LAYERS] = {0}; in assign_layer_bitrates()
448 if (svc_ctx->temporal_layers * svc_ctx->spatial_layers > VPX_MAX_LAYERS) { in vpx_svc_init()
453 (int) VPX_MAX_LAYERS); in vpx_svc_init()
/external/libvpx/libvpx/test/
Ddatarate_test.cc857 float alloc_ratio[VPX_MAX_LAYERS] = {0}; in assign_layer_bitrates()
/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.c198 if (cfg->ss_number_layers * cfg->ts_number_layers > VPX_MAX_LAYERS) in validate_config()