Lines Matching refs:pd
99 const AVPixFmtDescriptor *pd; in is_native_endian() local
102 pd = av_pix_fmt_desc_get(pixfmt); in is_native_endian()
103 return pd && (!!HAVE_BIGENDIAN == !!(pd->flags & AV_PIX_FMT_FLAG_BE)); in is_native_endian()
110 const AVPixFmtDescriptor *pd; in match_pixfmt() local
112 for (pd = av_pix_fmt_desc_next(NULL); pd; pd = av_pix_fmt_desc_next(pd)) { in match_pixfmt()
117 pixfmt = av_pix_fmt_desc_get_id(pd); in match_pixfmt()
119 if (pd->flags & (AV_PIX_FMT_FLAG_BAYER | AV_PIX_FMT_FLAG_ALPHA | in match_pixfmt()
123 if (pd->log2_chroma_w != vsf->subSamplingW || in match_pixfmt()
124 pd->log2_chroma_h != vsf->subSamplingH) in match_pixfmt()
128 if (is_rgb != !!(pd->flags & AV_PIX_FMT_FLAG_RGB)) in match_pixfmt()
137 if (vsf->sampleType != ((pd->flags & AV_PIX_FMT_FLAG_FLOAT) ? stFloat : stInteger)) in match_pixfmt()
143 if (strncmp(pd->name, "xyz", 3) == 0) in match_pixfmt()
151 for (i = 0; i < pd->nb_components; i++) { in match_pixfmt()
152 const AVComponentDescriptor *c = &pd->comp[i]; in match_pixfmt()