Searched refs:high_bd (Results 1 – 5 of 5) sorted by relevance
/external/libaom/libaom/test/ |
D | edge_detect_test.cc | 23 static int get_pix(uint8_t *buf, int i, bool high_bd) { in get_pix() argument 24 if (high_bd) { in get_pix() 45 static uint8_t *pad_8tap_convolve(const int *data, int w, int h, bool high_bd) { in pad_8tap_convolve() argument 56 if (high_bd) { in pad_8tap_convolve() 65 if (high_bd) { in pad_8tap_convolve() 77 static void free_pad_8tap(uint8_t *padded, int width, bool high_bd) { in free_pad_8tap() argument 78 if (high_bd) { in free_pad_8tap() 85 static uint8_t *malloc_bd(int num_entries, bool high_bd) { in malloc_bd() argument 86 const int bytes_per_entry = high_bd ? sizeof(uint16_t) : sizeof(uint8_t); in malloc_bd() 89 if (high_bd) { in malloc_bd() [all …]
|
/external/libaom/libaom/examples/ |
D | noise_model.c | 322 const int high_bd = args.bit_depth > 8; in main() local 326 high_bd); in main() 335 high_bd }; in main() 375 int strides[3] = { raw.stride[0] >> high_bd, raw.stride[1] >> high_bd, in main() 376 raw.stride[2] >> high_bd }; in main()
|
/external/libaom/libaom/av1/encoder/ |
D | rdopt.h | 153 bool high_bd, int bd); 159 uint8_t *dst, bool high_bd, int bd); 167 sobel_xy sobel(const uint8_t *input, int stride, int i, int j, bool high_bd);
|
D | rdopt.c | 14048 sobel_xy sobel(const uint8_t *input, int stride, int i, int j, bool high_bd) { in sobel() argument 14051 if (high_bd) { in sobel() 14069 uint8_t *dst, bool high_bd, int bd) { in gaussian_blur() argument 14080 if (high_bd) { in gaussian_blur() 14091 bool high_bd, int bd) { in edge_probability() argument 14101 sobel_xy g = sobel(input, w, i, j, high_bd); in edge_probability() 14119 bool high_bd, int bd) { in av1_edge_exists() argument 14125 if (high_bd) { in av1_edge_exists() 14130 gaussian_blur(src, src_stride, w, h, blurred, high_bd, bd); in av1_edge_exists() 14135 EdgeInfo prob = edge_probability(blurred, w, h, high_bd, bd); in av1_edge_exists() [all …]
|
D | encodeframe.c | 486 const bool high_bd, const int bd) { in edge_info() argument 496 return av1_edge_exists(ref->buf, ref->stride, width, height, high_bd, bd); in edge_info()
|