Lines Matching defs:psrc
1643 PNGDecContext *psrc = src->priv_data;
1653 pdst->width = psrc->width;
1654 pdst->height = psrc->height;
1655 pdst->bit_depth = psrc->bit_depth;
1656 pdst->color_type = psrc->color_type;
1657 pdst->compression_type = psrc->compression_type;
1658 pdst->interlace_type = psrc->interlace_type;
1659 pdst->filter_type = psrc->filter_type;
1660 pdst->has_trns = psrc->has_trns;
1661 memcpy(pdst->transparent_color_be, psrc->transparent_color_be, sizeof(pdst->transparent_color_be));
1663 memcpy(pdst->palette, psrc->palette, sizeof(pdst->palette));
1665 pdst->hdr_state |= psrc->hdr_state;
1668 src_frame = psrc->dispose_op == APNG_DISPOSE_OP_PREVIOUS ?
1669 &psrc->last_picture : &psrc->picture;