Home
last modified time | relevance | path

Searched refs:ref_height (Results 1 – 3 of 3) sorted by relevance

/external/libaom/libaom/av1/common/
Dscale.h57 static INLINE int valid_ref_frame_size(int ref_width, int ref_height, in valid_ref_frame_size() argument
59 return 2 * this_width >= ref_width && 2 * this_height >= ref_height && in valid_ref_frame_size()
60 this_width <= 16 * ref_width && this_height <= 16 * ref_height; in valid_ref_frame_size()
/external/libvpx/libvpx/vp9/common/
Dvp9_scale.h61 static INLINE int valid_ref_frame_size(int ref_width, int ref_height, in valid_ref_frame_size() argument
63 return 2 * this_width >= ref_width && 2 * this_height >= ref_height && in valid_ref_frame_size()
64 this_width <= 16 * ref_width && this_height <= 16 * ref_height; in valid_ref_frame_size()
/external/libaom/libaom/av1/encoder/
Dglobal_motion.c788 const int ref_height = ref->y_height; in compute_global_motion_disflow_based() local
796 assert(frm_height == ref_height); in compute_global_motion_disflow_based()
827 alloc_pyramid(ref_width, ref_height, pad_size, compute_gradient); in compute_global_motion_disflow_based()
828 compute_flow_pyramids(ref_buffer, ref_width, ref_height, ref->y_stride, in compute_global_motion_disflow_based()