Searched refs:ref_width (Results 1 – 4 of 4) sorted by relevance
/external/libaom/libaom/av1/common/ |
D | scale.h | 55 static INLINE int valid_ref_frame_size(int ref_width, int ref_height, in valid_ref_frame_size() argument 57 return 2 * this_width >= ref_width && 2 * this_height >= ref_height && in valid_ref_frame_size() 58 this_width <= 16 * ref_width && this_height <= 16 * ref_height; in valid_ref_frame_size()
|
/external/libvpx/libvpx/vp9/common/ |
D | vp9_scale.h | 61 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/zucchini/ |
D | zucchini_gen.cc | 181 size_t ref_width = src_refs.width(); in GenerateReferencesDelta() local 199 DCHECK_LE(dst_ref->location + ref_width, equiv.dst_end()); in GenerateReferencesDelta() 207 dst_ref->location + ref_width <= equiv.dst_end(); in GenerateReferencesDelta()
|
/external/libaom/libaom/av1/encoder/ |
D | global_motion.c | 914 const int ref_width = ref->y_width; in compute_global_motion_disflow_based() local 920 assert(frm_width == ref_width); in compute_global_motion_disflow_based() 947 alloc_pyramid(ref_width, ref_height, pad_size, compute_gradient); in compute_global_motion_disflow_based() 948 compute_flow_pyramids(ref_buffer, ref_width, ref_height, ref->y_stride, in compute_global_motion_disflow_based()
|