Home
last modified time | relevance | path

Searched refs:MAX_LAG_BUFFERS (Results 1 – 13 of 13) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.h75 RATE_FACTOR_LEVEL rf_level[(MAX_LAG_BUFFERS * 2) + 1];
76 FRAME_UPDATE_TYPE update_type[(MAX_LAG_BUFFERS * 2) + 1];
77 unsigned char arf_src_offset[(MAX_LAG_BUFFERS * 2) + 1];
78 unsigned char arf_update_idx[(MAX_LAG_BUFFERS * 2) + 1];
79 unsigned char arf_ref_idx[(MAX_LAG_BUFFERS * 2) + 1];
80 int bit_allocation[(MAX_LAG_BUFFERS * 2) + 1];
Dvp9_lookahead.h26 #define MAX_LAG_BUFFERS 25 macro
Dvp9_svc_layercontext.h47 YV12_BUFFER_CONFIG scaled_frames[MAX_LAG_BUFFERS];
Dvp9_encoder.h314 MBGRAPH_FRAME_STATS mbgraph_stats[MAX_LAG_BUFFERS];
357 YV12_BUFFER_CONFIG *frames[MAX_LAG_BUFFERS];
Dvp9_lookahead.c57 depth = clamp(depth, 1, MAX_LAG_BUFFERS); in vp9_lookahead_init()
Dvp9_mbgraph.c380 if (n_frames > MAX_LAG_BUFFERS) in vp9_update_mbgraph_stats()
381 n_frames = MAX_LAG_BUFFERS; in vp9_update_mbgraph_stats()
Dvp9_ratectrl.c1349 if (rc->static_scene_max_gf_interval > (MAX_LAG_BUFFERS * 2)) in vp9_rc_set_gf_max_interval()
1350 rc->static_scene_max_gf_interval = MAX_LAG_BUFFERS * 2; in vp9_rc_set_gf_max_interval()
Dvp9_encoder.c199 for (i = 0; i < MAX_LAG_BUFFERS; ++i) { in dealloc_compressor_data()
203 MAX_LAG_BUFFERS * sizeof(cpi->svc.scaled_frames[0])); in dealloc_compressor_data()
/external/libvpx/libvpx/vp8/encoder/
Dlookahead.c16 #define MAX_LAG_BUFFERS (CONFIG_REALTIME_ONLY? 1 : 25) macro
73 else if(depth > MAX_LAG_BUFFERS) in vp8_lookahead_init()
74 depth = MAX_LAG_BUFFERS; in vp8_lookahead_init()
Donyx_int.h45 #define MAX_LAG_BUFFERS (CONFIG_REALTIME_ONLY? 1 : 25) macro
459 ONEPASS_FRAMESTATS one_pass_frame_stats[MAX_LAG_BUFFERS];
607 YV12_BUFFER_CONFIG *frames[MAX_LAG_BUFFERS];
Dratectrl.c473 …int frames_to_scan = (cpi->max_gf_interval <= MAX_LAG_BUFFERS) ? cpi->max_gf_interval : MAX_LAG_BU… in calc_gf_params()
Donyx_if.c1767 else if (cpi->oxcf.lag_in_frames > MAX_LAG_BUFFERS) in vp8_change_config()
1768 cpi->oxcf.lag_in_frames = MAX_LAG_BUFFERS; in vp8_change_config()
1890 for (i = 0; i < MAX_LAG_BUFFERS; i++) in vp8_create_compressor()
3524 cpi->one_pass_frame_index = cm->current_video_frame % MAX_LAG_BUFFERS; in encode_frame_to_data_rate()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c162 RANGE_CHECK_HI(cfg, g_lag_in_frames, MAX_LAG_BUFFERS); in validate_config()