Lines Matching refs:nextband
199 static inline void ff_init_nextband_map(const SingleChannelElement *sce, uint8_t *nextband) in ff_init_nextband_map() argument
205 nextband[g] = g; in ff_init_nextband_map()
211 prevband = nextband[prevband] = w*16+g; in ff_init_nextband_map()
214 nextband[prevband] = prevband; /* terminate */ in ff_init_nextband_map()
221 static inline void ff_nextband_remove(uint8_t *nextband, int prevband, int band) in ff_nextband_remove() argument
223 nextband[prevband] = nextband[band]; in ff_nextband_remove()
233 const uint8_t *nextband, int prev_sf, int band) in ff_sfdelta_can_remove_band() argument
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
251 && sce->sf_idx[nextband[band]] >= (new_sf - SCALE_MAX_DIFF) in ff_sfdelta_can_replace()
252 && sce->sf_idx[nextband[band]] <= (new_sf + SCALE_MAX_DIFF); in ff_sfdelta_can_replace()