Searched defs:filter_costs (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngwrite.c1001 /* Use this to save a little code space, it doesn't free the filter_costs */
1003 png_free(png_ptr, png_ptr->filter_costs);
1203 /* Leave the filter_costs - this array is fixed size. */
1254 if (png_ptr->filter_costs == NULL)
1256 png_ptr->filter_costs = (png_uint_16p)png_malloc(png_ptr,
1266 png_ptr->filter_costs[i] = PNG_COST_FACTOR;
1292 png_const_doublep filter_costs)
1331 for (i = 0; i < PNG_FILTER_VALUE_LAST; i++) if (filter_costs[i] >= 1.0)
1334 (png_uint_16)(PNG_COST_FACTOR / filter_costs[i] + .5);
1336 png_ptr->filter_costs[
1290 png_set_filter_heuristics(png_structp png_ptr, int heuristic_method, int num_weights, png_const_doublep filter_weights, png_const_doublep filter_costs) argument
1345 png_set_filter_heuristics_fixed(png_structp png_ptr, int heuristic_method, int num_weights, png_const_fixed_point_p filter_weights, png_const_fixed_point_p filter_costs) argument
[all...]
H A Dpngstruct.h264 png_uint_16p filter_costs; /* relative filter calculation cost */ member in struct:png_struct_def

Completed in 57 milliseconds