Home | History | Annotate | Download | only in codec

Lines Matching refs:fPng_ptr

61         : fPng_ptr(png_ptr)
65 // fInfo_ptr will never be non-nullptr unless fPng_ptr is.
66 if (fPng_ptr) {
68 png_destroy_read_struct(&fPng_ptr, info_pp, nullptr);
78 fPng_ptr = nullptr;
83 png_structp fPng_ptr;
99 if (!png_get_PLTE(fPng_ptr, fInfo_ptr, &palette, &numColors)) {
108 if (png_get_tRNS(fPng_ptr, fInfo_ptr, &alphas, &numColorsWithAlpha, nullptr)) {
336 , fPng_ptr(png_ptr)
348 if (fPng_ptr) {
349 // We will never have a nullptr fInfo_ptr with a non-nullptr fPng_ptr
351 png_destroy_read_struct(&fPng_ptr, &fInfo_ptr, nullptr);
352 fPng_ptr = nullptr;
367 if (setjmp(png_jmpbuf(fPng_ptr))) {
371 png_read_update_info(fPng_ptr, fInfo_ptr);
389 const uint8_t encodedColorType = png_get_color_type(fPng_ptr, fInfo_ptr);
397 png_get_valid(fPng_ptr, fInfo_ptr, PNG_INFO_tRNS));
427 // This sets fPng_ptr and fInfo_ptr to nullptr. If read_header
429 fPng_ptr and fInfo_ptr will
441 fPng_ptr = png_ptr;
474 if (setjmp(png_jmpbuf(fPng_ptr))) {
504 png_read_row(fPng_ptr, srcRow, nullptr);
520 png_read_row(fPng_ptr, srcRow, nullptr);
527 png_read_end(fPng_ptr, fInfo_ptr);