Home
last modified time | relevance | path

Searched refs:ME_MAP_MV_BITS (Results 1 - 2 of 2) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dmotion_est_template.c98 key = (my - 1) * (1 << ME_MAP_MV_BITS) + (mx) + map_generation; in hpel_motion_search()
100 key = (my + 1) * (1 << ME_MAP_MV_BITS) + (mx) + map_generation; in hpel_motion_search()
102 key = (my) * (1 << ME_MAP_MV_BITS) + (mx + 1) + map_generation; in hpel_motion_search()
104 key = (my) * (1 << ME_MAP_MV_BITS) + (mx - 1) + map_generation; in hpel_motion_search()
303 (my - 1) * (1 << ME_MAP_MV_BITS) + (mx - 1) + map_generation) { in qpel_motion_search()
363 const unsigned key = ((unsigned)(y)<<ME_MAP_MV_BITS) + (x) + map_generation;\
389 const unsigned key = ((unsigned)(y)<<ME_MAP_MV_BITS) + (x) + map_generation;\
431 const unsigned key = ((unsigned)best[1]<<ME_MAP_MV_BITS) + best[0] + map_generation; in small_diamond_search()
655 const unsigned key = ((ay)<<ME_MAP_MV_BITS) + (ax) + map_generation;\
700 become larger due to MVs overflowing their ME_MAP_MV_BITS bit in sab_diamond_search()
711 minima[j].x= key & ((1<<ME_MAP_MV_BITS)-1); key>>=ME_MAP_MV_BITS; sab_diamond_search() local
[all...]
H A Dmotion_est.c47 #define ME_MAP_MV_BITS 11 macro
56 c->map_generation+= 1<<(ME_MAP_MV_BITS*2); in update_map_generation()
58 c->map_generation= 1<<(ME_MAP_MV_BITS*2); in update_map_generation()

Completed in 7 milliseconds