Home
last modified time | relevance | path

Searched refs:VPX_SS_MAX_LAYERS (Results 1 – 10 of 10) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_svc_layercontext.h123 INTERP_FILTER downsample_filter_type[VPX_SS_MAX_LAYERS];
124 int downsample_filter_phase[VPX_SS_MAX_LAYERS];
153 int update_buffer_slot[VPX_SS_MAX_LAYERS];
154 uint8_t reference_last[VPX_SS_MAX_LAYERS];
155 uint8_t reference_golden[VPX_SS_MAX_LAYERS];
156 uint8_t reference_altref[VPX_SS_MAX_LAYERS];
158 uint8_t update_last[VPX_SS_MAX_LAYERS];
159 uint8_t update_golden[VPX_SS_MAX_LAYERS];
160 uint8_t update_altref[VPX_SS_MAX_LAYERS];
164 int fb_idx_upd_tl0[VPX_SS_MAX_LAYERS];
[all …]
Dvp9_encoder.h222 int ss_target_bitrate[VPX_SS_MAX_LAYERS];
223 int ss_enable_auto_arf[VPX_SS_MAX_LAYERS];
Dvp9_encoder.c2307 FIRSTPASS_STATS *stats_copy[VPX_SS_MAX_LAYERS] = { 0 }; in vp9_create_compressor()
/external/libvpx/libvpx/vpx/
Dvp8cx.h803 int temporal_layer_id_per_spatial[VPX_SS_MAX_LAYERS]; /**< Temp layer id. */
815 int lst_fb_idx[VPX_SS_MAX_LAYERS]; /**< Last buffer index. */
816 int gld_fb_idx[VPX_SS_MAX_LAYERS]; /**< Golden buffer index. */
817 int alt_fb_idx[VPX_SS_MAX_LAYERS]; /**< Altref buffer index. */
818 int update_buffer_slot[VPX_SS_MAX_LAYERS]; /**< Update reference frames. */
820 int update_last[VPX_SS_MAX_LAYERS]; /**< Update last. */
821 int update_golden[VPX_SS_MAX_LAYERS]; /**< Update golden. */
822 int update_alt_ref[VPX_SS_MAX_LAYERS]; /**< Update altref. */
823 int reference_last[VPX_SS_MAX_LAYERS]; /**< Last as reference. */
824 int reference_golden[VPX_SS_MAX_LAYERS]; /**< Golden as reference. */
[all …]
Dvpx_encoder.h46 #define VPX_SS_MAX_LAYERS 5 macro
176 unsigned int width[VPX_SS_MAX_LAYERS]; /**< frame width */
177 unsigned int height[VPX_SS_MAX_LAYERS]; /**< frame height */
180 uint8_t spatial_layer_encoded[VPX_SS_MAX_LAYERS];
631 int ss_enable_auto_alt_ref[VPX_SS_MAX_LAYERS];
638 unsigned int ss_target_bitrate[VPX_SS_MAX_LAYERS];
/external/libvpx/libvpx/examples/
Dsvc_context.h54 int enable_auto_alt_ref[VPX_SS_MAX_LAYERS];
58 double psnr_sum[VPX_SS_MAX_LAYERS][COMPONENTS]; // total/Y/U/V
59 uint64_t sse_sum[VPX_SS_MAX_LAYERS][COMPONENTS];
60 uint32_t bytes_sum[VPX_SS_MAX_LAYERS];
Dsvc_encodeframe.c50 static const int DEFAULT_SCALE_FACTORS_NUM[VPX_SS_MAX_LAYERS] = { 4, 5, 7, 11,
53 static const int DEFAULT_SCALE_FACTORS_DEN[VPX_SS_MAX_LAYERS] = { 16, 16, 16,
56 static const int DEFAULT_SCALE_FACTORS_NUM_2x[VPX_SS_MAX_LAYERS] = { 1, 2, 4 };
58 static const int DEFAULT_SCALE_FACTORS_DEN_2x[VPX_SS_MAX_LAYERS] = { 4, 4, 4 };
364 for (i = 0; i < VPX_SS_MAX_LAYERS; ++i) { in assign_layer_bitrates()
398 svc_ctx->spatial_layers > VPX_SS_MAX_LAYERS) { in vpx_svc_init()
413 for (sl = 0; sl < VPX_SS_MAX_LAYERS; ++sl) { in vpx_svc_init()
449 if (svc_ctx->spatial_layers > VPX_SS_MAX_LAYERS) in vpx_svc_init()
450 svc_ctx->spatial_layers = VPX_SS_MAX_LAYERS; in vpx_svc_init()
Dvp9_spatial_svc_encoder.c759 VpxVideoWriter *outfile[VPX_SS_MAX_LAYERS] = { NULL }; in main()
895 for (i = 0; i < VPX_SS_MAX_LAYERS; i++) in main()
899 for (i = 0; i < VPX_SS_MAX_LAYERS; i++) in main()
/external/libvpx/libvpx/test/
Dsvc_test.cc47 for (int i = 1; i < VPX_SS_MAX_LAYERS; ++i) { in PreEncodeFrameHookSetup()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c209 RANGE_CHECK(cfg, ss_number_layers, 1, VPX_SS_MAX_LAYERS); in validate_config()
284 unsigned int n_packets_per_layer[VPX_SS_MAX_LAYERS] = { 0 }; in validate_config()