Home
last modified time | relevance | path

Searched refs:bit_depth (Results 1 – 25 of 269) sorted by relevance

1234567891011

/external/pdfium/third_party/libpng16/
Dpngwtran.c25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) in png_do_pack() argument
29 if (row_info->bit_depth == 8 && in png_do_pack()
32 switch ((int)bit_depth) in png_do_pack()
155 row_info->bit_depth = (png_byte)bit_depth; in png_do_pack()
156 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels); in png_do_pack()
173 png_const_color_8p bit_depth) in png_do_shift() argument
184 shift_start[channels] = row_info->bit_depth - bit_depth->red; in png_do_shift()
185 shift_dec[channels] = bit_depth->red; in png_do_shift()
188 shift_start[channels] = row_info->bit_depth - bit_depth->green; in png_do_shift()
189 shift_dec[channels] = bit_depth->green; in png_do_shift()
[all …]
Dpngtrans.c42 if (png_ptr->bit_depth == 16) in png_set_swap()
57 if (png_ptr->bit_depth < 8) in png_set_packing()
77 if (png_ptr->bit_depth < 8) in png_set_packswap()
162 if (png_ptr->bit_depth >= 8) in png_set_filler()
283 row_info->bit_depth == 8) in png_do_invert()
298 row_info->bit_depth == 16) in png_do_invert()
323 if (row_info->bit_depth == 16) in png_do_swap()
459 if (row_info->bit_depth < 8) in png_do_packswap()
466 if (row_info->bit_depth == 1) in png_do_packswap()
469 else if (row_info->bit_depth == 2) in png_do_packswap()
[all …]
/external/libpng/
Dpngwtran.c25 png_do_pack(png_row_infop row_info, png_bytep row, png_uint_32 bit_depth) in png_do_pack() argument
29 if (row_info->bit_depth == 8 && in png_do_pack()
32 switch ((int)bit_depth) in png_do_pack()
155 row_info->bit_depth = (png_byte)bit_depth; in png_do_pack()
156 row_info->pixel_depth = (png_byte)(bit_depth * row_info->channels); in png_do_pack()
173 png_const_color_8p bit_depth) in png_do_shift() argument
184 shift_start[channels] = row_info->bit_depth - bit_depth->red; in png_do_shift()
185 shift_dec[channels] = bit_depth->red; in png_do_shift()
188 shift_start[channels] = row_info->bit_depth - bit_depth->green; in png_do_shift()
189 shift_dec[channels] = bit_depth->green; in png_do_shift()
[all …]
Dpngtrans.c42 if (png_ptr->bit_depth == 16) in png_set_swap()
57 if (png_ptr->bit_depth < 8) in png_set_packing()
77 if (png_ptr->bit_depth < 8) in png_set_packswap()
162 if (png_ptr->bit_depth >= 8) in png_set_filler()
283 row_info->bit_depth == 8) in png_do_invert()
298 row_info->bit_depth == 16) in png_do_invert()
323 if (row_info->bit_depth == 16) in png_do_swap()
459 if (row_info->bit_depth < 8) in png_do_packswap()
466 if (row_info->bit_depth == 1) in png_do_packswap()
469 else if (row_info->bit_depth == 2) in png_do_packswap()
[all …]
/external/libpng/contrib/examples/
Dpngpixel.c35 unsigned int bit_depth, unsigned int channels) in component() argument
42 png_uint_32 bit_offset_hi = bit_depth * ((x >> 6) * channels); in component()
43 png_uint_32 bit_offset_lo = bit_depth * ((x & 0x3f) * channels + c); in component()
53 switch (bit_depth) in component()
64 fprintf(stderr, "pngpixel: invalid bit depth %u\n", bit_depth); in component()
76 unsigned int bit_depth = png_get_bit_depth(png_ptr, info_ptr); in print_pixel() local
81 printf("GRAY %u\n", component(row, x, 0, bit_depth, 1)); in print_pixel()
90 int index = component(row, x, 0, bit_depth, 1); in print_pixel()
119 printf("RGB %u %u %u\n", component(row, x, 0, bit_depth, 3), in print_pixel()
120 component(row, x, 1, bit_depth, 3), in print_pixel()
[all …]
/external/libaom/libaom/av1/encoder/
Dpalette.c44 static int delta_encode_cost(const int *colors, int num, int bit_depth, in delta_encode_cost() argument
47 int bits_cost = bit_depth; in delta_encode_cost()
52 const int min_bits = bit_depth - 3; in delta_encode_cost()
60 assert(bits_per_delta <= bit_depth); in delta_encode_cost()
61 int range = (1 << bit_depth) - colors[0] - min_val; in delta_encode_cost()
99 int bit_depth, int *zero_count, in av1_get_palette_delta_bits_v() argument
102 const int max_val = 1 << bit_depth; in av1_get_palette_delta_bits_v()
104 *min_bits = bit_depth - 4; in av1_get_palette_delta_bits_v()
119 int bit_depth) { in av1_palette_color_cost_y() argument
127 n_cache + delta_encode_cost(out_cache_colors, n_out_cache, bit_depth, 1); in av1_palette_color_cost_y()
[all …]
Dratectrl.c52 #define ASSIGN_MINQ_TABLE(bit_depth, name) \ argument
54 switch (bit_depth) { \
107 aom_bit_depth_t bit_depth) { in get_minq_index() argument
114 return av1_find_qindex(minqtarget, bit_depth, 0, QINDEX_RANGE - 1); in get_minq_index()
119 aom_bit_depth_t bit_depth) { in init_minq_luts() argument
122 const double maxq = av1_convert_qindex_to_q(i, bit_depth); in init_minq_luts()
123 kf_low_m[i] = get_minq_index(maxq, 0.000001, -0.0004, 0.150, bit_depth); in init_minq_luts()
124 kf_high_m[i] = get_minq_index(maxq, 0.0000021, -0.00125, 0.45, bit_depth); in init_minq_luts()
125 arfgf_low[i] = get_minq_index(maxq, 0.0000015, -0.0009, 0.30, bit_depth); in init_minq_luts()
126 arfgf_high[i] = get_minq_index(maxq, 0.0000021, -0.00125, 0.55, bit_depth); in init_minq_luts()
[all …]
Dtune_vmaf.c28 double amount, int bit_depth) { in highbd_unsharp_rect() argument
29 const int max_value = (1 << bit_depth) - 1; in highbd_unsharp_rect()
62 const int bit_depth = cpi->td.mb.e_mbd.bd; in unsharp() local
63 if (bit_depth > 8) { in unsharp()
68 amount, bit_depth); in unsharp()
80 static AOM_INLINE void gaussian_blur(const int bit_depth, in gaussian_blur() argument
90 ConvolveParams conv_params = get_conv_params(0, 0, bit_depth); in gaussian_blur()
106 if (bit_depth > 8) { in gaussian_blur()
110 &filter, &filter, 0, 0, &conv_params, bit_depth); in gaussian_blur()
129 const int bit_depth = cpi->td.mb.e_mbd.bd; in frame_average_variance() local
[all …]
/external/libpng/contrib/libtests/
Dmakepng.c201 pixel_depth_of_type(int color_type, int bit_depth) in pixel_depth_of_type() argument
203 return channels_of_type(color_type) * bit_depth; in pixel_depth_of_type()
207 image_size_of_type(int color_type, int bit_depth, unsigned int *colors, in image_size_of_type() argument
215 int pixel_depth = pixel_depth_of_type(color_type, bit_depth); in image_size_of_type()
249 generate_palette(png_colorp palette, png_bytep trans, int bit_depth, in generate_palette() argument
289 if (bit_depth == 1) in generate_palette()
298 unsigned int size = 1U << (bit_depth/2); /* 2, 4 or 16 */ in generate_palette()
329 set_value(png_bytep row, size_t rowbytes, png_uint_32 x, unsigned int bit_depth, in set_value() argument
332 unsigned int mask = (1U << bit_depth)-1; in set_value()
334 x *= bit_depth; /* Maximum x is 4*1024, maximum bit_depth is 16 */ in set_value()
[all …]
/external/libhevc/common/
Dihevc_iquant_recon.c125 WORD32 log2_trans_size, bit_depth; in ihevc_iquant_recon_4x4_ttype1() local
128 bit_depth = 8 + 0; in ihevc_iquant_recon_4x4_ttype1()
129 shift_iq = bit_depth + log2_trans_size - 5; in ihevc_iquant_recon_4x4_ttype1()
237 WORD32 log2_trans_size, bit_depth; in ihevc_iquant_recon_4x4() local
240 bit_depth = 8 + 0; in ihevc_iquant_recon_4x4()
241 shift_iq = bit_depth + log2_trans_size - 5; in ihevc_iquant_recon_4x4()
348 WORD32 log2_trans_size, bit_depth; in ihevc_iquant_recon_8x8() local
351 bit_depth = 8 + 0; in ihevc_iquant_recon_8x8()
352 shift_iq = bit_depth + log2_trans_size - 5; in ihevc_iquant_recon_8x8()
460 WORD32 log2_trans_size, bit_depth; in ihevc_iquant_recon_16x16() local
[all …]
Dihevc_hbd_deblk_edge_filter.c113 UWORD8 bit_depth) in ihevc_hbd_deblk_luma_vert() argument
137 beta = gai4_ihevc_beta_table[beta_indx] * (1 << (bit_depth - 8)); in ihevc_hbd_deblk_luma_vert()
138 tc = gai4_ihevc_tc_table[tc_indx] * (1 << (bit_depth - 8)); in ihevc_hbd_deblk_luma_vert()
251 tmp_p0 = CLIP3(pu2_src[-1] + delta, 0, ((1 << bit_depth) - 1)); in ihevc_hbd_deblk_luma_vert()
252 tmp_q0 = CLIP3(pu2_src[0] - delta, 0, ((1 << bit_depth) - 1)); in ihevc_hbd_deblk_luma_vert()
259 tmp_p1 = CLIP3(pu2_src[-2] + delta_p, 0, ((1 << bit_depth) - 1)); in ihevc_hbd_deblk_luma_vert()
268 tmp_q1 = CLIP3(pu2_src[1] + delta_q, 0, ((1 << bit_depth) - 1)); in ihevc_hbd_deblk_luma_vert()
348 UWORD8 bit_depth) in ihevc_hbd_deblk_luma_horz() argument
372 beta = gai4_ihevc_beta_table[beta_indx] * (1 << (bit_depth - 8)); in ihevc_hbd_deblk_luma_horz()
373 tc = gai4_ihevc_tc_table[tc_indx] * (1 << (bit_depth - 8)); in ihevc_hbd_deblk_luma_horz()
[all …]
Dihevc_trans_macros.h41 …WORD32 bit_depth,transform_shift; …
46bit_depth = 8; …
47 …transform_shift = MAX_TR_DYNAMIC_RANGE - bit_depth - log2_trans_size; …
62 #define QUANT_HBD(out, inp, quant_coeff, qp_div, log2_trans_size, q_add, bit_depth) \ argument
72 …transform_shift = MAX_TR_DYNAMIC_RANGE - bit_depth - log2_trans_size; …
91 …WORD32 bit_depth,transform_shift; …
96bit_depth = 8; …
97 …transform_shift = MAX_TR_DYNAMIC_RANGE - bit_depth - log2_trans_size; …
112 #define QUANT_NO_WEIGHTMAT_HBD(out, inp, quant_coeff, qp_div, log2_trans_size, q_add, bit_depth) \ argument
122 …transform_shift = MAX_TR_DYNAMIC_RANGE - bit_depth - log2_trans_size; …
Dihevc_chroma_iquant_recon.c131 WORD32 log2_trans_size, bit_depth; in ihevc_chroma_iquant_recon_4x4() local
134 bit_depth = 8 + 0; in ihevc_chroma_iquant_recon_4x4()
135 shift_iq = bit_depth + log2_trans_size - 5; in ihevc_chroma_iquant_recon_4x4()
243 WORD32 log2_trans_size, bit_depth; in ihevc_chroma_iquant_recon_8x8() local
246 bit_depth = 8 + 0; in ihevc_chroma_iquant_recon_8x8()
247 shift_iq = bit_depth + log2_trans_size - 5; in ihevc_chroma_iquant_recon_8x8()
356 WORD32 log2_trans_size, bit_depth; in ihevc_chroma_iquant_recon_16x16() local
359 bit_depth = 8 + 0; in ihevc_chroma_iquant_recon_16x16()
360 shift_iq = bit_depth + log2_trans_size - 5; in ihevc_chroma_iquant_recon_16x16()
Dihevc_sao.c202 WORD32 bit_depth; in ihevc_sao_edge_offset_class0() local
205 bit_depth = BIT_DEPTH_LUMA; in ihevc_sao_edge_offset_class0()
248 … pu1_src[col] = CLIP3(pu1_src[col] + pi1_sao_offset[edge_idx], 0, (1 << bit_depth) - 1); in ihevc_sao_edge_offset_class0()
286 WORD32 bit_depth; in ihevc_sao_edge_offset_class0_chroma() local
289 bit_depth = BIT_DEPTH_CHROMA; in ihevc_sao_edge_offset_class0_chroma()
347 … pu1_src[col] = CLIP3(pu1_src[col] + pi1_sao_offset[edge_idx], 0, (1 << bit_depth) - 1); in ihevc_sao_edge_offset_class0_chroma()
382 WORD32 bit_depth; in ihevc_sao_edge_offset_class1() local
386 bit_depth = BIT_DEPTH_LUMA; in ihevc_sao_edge_offset_class1()
440 … pu1_src[col] = CLIP3(pu1_src[col] + pi1_sao_offset[edge_idx], 0, (1 << bit_depth) - 1); in ihevc_sao_edge_offset_class1()
476 WORD32 bit_depth; in ihevc_sao_edge_offset_class1_chroma() local
[all …]
Dihevc_intra_pred.h169 UWORD8 bit_depth);
179 UWORD8 bit_depth);
189 UWORD8 bit_depth);
199 UWORD8 bit_depth);
209 UWORD8 bit_depth);
219 UWORD8 bit_depth);
229 UWORD8 bit_depth);
239 UWORD8 bit_depth);
248 UWORD8 bit_depth);
259 UWORD8 bit_depth);
[all …]
/external/libpng/contrib/pngminus/
Dpnm2png.c184 volatile int bit_depth = 0; in pnm2png() local
214 bit_depth = 1; in pnm2png()
237 bit_depth = 1; in pnm2png()
239 bit_depth = 2; in pnm2png()
241 bit_depth = 4; in pnm2png()
243 bit_depth = 8; in pnm2png()
245 bit_depth = 16; in pnm2png()
263 bit_depth = 1; in pnm2png()
265 bit_depth = 2; in pnm2png()
267 bit_depth = 4; in pnm2png()
[all …]
Dpng2pnm.c176 int bit_depth; in png2pnm() local
222 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, in png2pnm()
231 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) in png2pnm()
239 if (bit_depth == 16) in png2pnm()
256 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, in png2pnm()
260 if (bit_depth == 16) in png2pnm()
334 fprintf (pnm_file, "%ld\n", ((1L << (int) bit_depth) - 1L)); in png2pnm()
341 fprintf (pnm_file, "%ld\n", ((1L << (int) bit_depth) - 1L)); in png2pnm()
352 fprintf (alpha_file, "%ld\n", ((1L << (int) bit_depth) - 1L)); in png2pnm()
370 if (bit_depth == 16) in png2pnm()
[all …]
/external/libaom/libaom/common/
Dy4menc.c18 static const char *monochrome_colorspace(unsigned int bit_depth) { in monochrome_colorspace() argument
19 switch (bit_depth) { in monochrome_colorspace()
49 static const char *colorspace(unsigned int bit_depth, in colorspace() argument
52 switch (bit_depth) { in colorspace()
86 unsigned int bit_depth) { in y4m_write_file_header() argument
87 const char *color = monochrome ? monochrome_colorspace(bit_depth) in y4m_write_file_header()
88 : colorspace(bit_depth, csp, fmt); in y4m_write_file_header()
/external/libaom/libaom/test/
Dy4m_test.cc32 unsigned int bit_depth; member
80 void HeaderChecks(unsigned int bit_depth, aom_img_fmt_t fmt) { in HeaderChecks() argument
86 ASSERT_EQ(y4m_.bit_depth, bit_depth); in HeaderChecks()
89 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3 / 2); in HeaderChecks()
94 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 2); in HeaderChecks()
99 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3); in HeaderChecks()
120 HeaderChecks(t.bit_depth, t.format); in TEST_P()
153 y4m_.bit_depth); in WriteY4mAndReadBack()
174 HeaderChecks(t.bit_depth, t.format); in TEST_P()
Dfunction_equivalence_test.h40 FuncParam(T ref = NULL, T tst = NULL, int bit_depth = 0)
41 : ref_func(ref), tst_func(tst), bit_depth(bit_depth) {} in ref_func()
44 int bit_depth; member
49 return os << "bit_depth:" << p.bit_depth
/external/libvpx/libvpx/test/
Dy4m_test.cc31 unsigned int bit_depth; member
92 void HeaderChecks(unsigned int bit_depth, vpx_img_fmt_t fmt) { in HeaderChecks() argument
98 ASSERT_EQ(y4m_.bit_depth, bit_depth); in HeaderChecks()
101 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3 / 2); in HeaderChecks()
106 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 2); in HeaderChecks()
111 ASSERT_EQ(y4m_.bps, (int)y4m_.bit_depth * 3); in HeaderChecks()
132 HeaderChecks(t.bit_depth, t.format); in TEST_P()
164 y4m_.vpx_fmt, y4m_.bit_depth); in WriteY4mAndReadBack()
185 HeaderChecks(t.bit_depth, t.format); in TEST_P()
/external/libaom/libaom/aom_dsp/
Dgrain_synthesis.c409 int bit_depth = params->bit_depth; in generate_luma_grain_block() local
410 int gauss_sec_shift = 12 - bit_depth + params->grain_scale_shift; in generate_luma_grain_block()
447 int bit_depth = params->bit_depth; in generate_chroma_grain_blocks() local
448 int gauss_sec_shift = 12 - bit_depth + params->grain_scale_shift; in generate_chroma_grain_blocks()
561 static int scale_LUT(int *scaling_lut, int index, int bit_depth) { in scale_LUT() argument
562 int x = index >> (bit_depth - 8); in scale_LUT()
564 if (!(bit_depth - 8) || x == 255) in scale_LUT()
568 (index & ((1 << (bit_depth - 8)) - 1)) + in scale_LUT()
569 (1 << (bit_depth - 9))) >> in scale_LUT()
570 (bit_depth - 8)); in scale_LUT()
[all …]
Dvmaf.c26 int bit_depth; member
47 if (frames->bit_depth > 8) { in read_frame()
48 const float scale_factor = 1.0f / (float)(1 << (frames->bit_depth - 8)); in read_frame()
96 const YV12_BUFFER_CONFIG *distorted, const int bit_depth, in aom_calc_vmaf() argument
101 FrameData frames = { source, distorted, 0, bit_depth }; in aom_calc_vmaf()
102 char *fmt = bit_depth == 10 ? "yuv420p10le" : "yuv420p"; in aom_calc_vmaf()
122 int frame_width, int frame_height, int bit_depth, double *vmaf) { in aom_calc_vmaf_multi_frame() argument
125 char *fmt = bit_depth == 10 ? "yuv420p10le" : "yuv420p"; in aom_calc_vmaf_multi_frame()
/external/libvpx/libvpx/vp9/common/
Dvp9_quant_common.c164 int16_t vp9_dc_quant(int qindex, int delta, vpx_bit_depth_t bit_depth) { in vp9_dc_quant() argument
166 switch (bit_depth) { in vp9_dc_quant()
175 (void)bit_depth; in vp9_dc_quant()
180 int16_t vp9_ac_quant(int qindex, int delta, vpx_bit_depth_t bit_depth) { in vp9_ac_quant() argument
182 switch (bit_depth) { in vp9_ac_quant()
191 (void)bit_depth; in vp9_ac_quant()
/external/libvpx/libvpx/tools/
Dtiny_ssim.c102 int bit_depth; member
108 int h, int bit_depth) { in open_input_file() argument
112 input->bit_depth = bit_depth; in open_input_file()
124 input->bit_depth = input->y4m.bit_depth; in open_input_file()
135 if (bit_depth > 8) { in open_input_file()
317 int bit_depth = 8; in main() local
344 sscanf(argv[6], "%d", &bit_depth); in main()
347 if (open_input_file(argv[1], &in[0], w, h, bit_depth) < 0) { in main()
356 bit_depth = in[0].bit_depth; in main()
358 if (bit_depth == 10) peak = 1023.0; in main()
[all …]

1234567891011