Home | History | Annotate | Download | only in libpng-1.2.46

Lines Matching refs:do_filter

523    if (!(png_ptr->do_filter))
527 png_ptr->do_filter = PNG_FILTER_NONE;
529 png_ptr->do_filter = PNG_ALL_FILTERS;
533 if (png_ptr->do_filter != PNG_FILTER_NONE)
1791 if (png_ptr->do_filter & PNG_FILTER_SUB)
1799 if (png_ptr->do_filter & (PNG_FILTER_AVG | PNG_FILTER_UP | PNG_FILTER_PAETH))
1805 if (png_ptr->do_filter & PNG_FILTER_UP)
1812 if (png_ptr->do_filter & PNG_FILTER_AVG)
1819 if (png_ptr->do_filter & PNG_FILTER_PAETH)
2151 png_byte filter_to_do = png_ptr->do_filter;