Searched refs:prev_sf (Results 1 – 3 of 3) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | aacenc_utils.h | 233 const uint8_t *nextband, int prev_sf, int band) in ff_sfdelta_can_remove_band() argument 235 return prev_sf >= 0 in ff_sfdelta_can_remove_band() 236 && sce->sf_idx[nextband[band]] >= (prev_sf - SCALE_MAX_DIFF) in ff_sfdelta_can_remove_band() 237 && sce->sf_idx[nextband[band]] <= (prev_sf + SCALE_MAX_DIFF); in ff_sfdelta_can_remove_band() 247 const uint8_t *nextband, int prev_sf, int new_sf, int band) in ff_sfdelta_can_replace() argument 249 return new_sf >= (prev_sf - SCALE_MAX_DIFF) in ff_sfdelta_can_replace() 250 && new_sf <= (prev_sf + SCALE_MAX_DIFF) in ff_sfdelta_can_replace()
|
D | aaccoder.c | 565 int prev = -1000, prev_sf = -1; in search_for_pns() local 595 prev_sf = sce->sf_idx[w*16+g]; in search_for_pns() 621 … if ((!sce->zeroes[w*16+g] && !ff_sfdelta_can_remove_band(sce, nextband, prev_sf, w*16+g)) || in search_for_pns() 627 prev_sf = sce->sf_idx[w*16+g]; in search_for_pns() 638 prev_sf = sce->sf_idx[w*16+g]; in search_for_pns() 679 prev_sf = sce->sf_idx[w*16+g]; in search_for_pns()
|
/third_party/quickjs/ |
D | quickjs.c | 15990 JSStackFrame sf_s, *sf = &sf_s, *prev_sf; in js_call_c_function() local 16004 prev_sf = rt->current_stack_frame; in js_call_c_function() 16005 sf->prev_frame = prev_sf; in js_call_c_function() 16012 if (prev_sf) in js_call_c_function() 16013 sf->js_mode = prev_sf->js_mode & JS_MODE_MATH; in js_call_c_function()
|