Lines Matching defs:pix_desc
958 const AVPixFmtDescriptor *pix_desc = NULL;
974 while ((pix_desc = av_pix_fmt_desc_next(pix_desc))) {
975 enum AVPixelFormat av_unused pix_fmt = av_pix_fmt_desc_get_id(pix_desc);
979 pix_desc->flags & AV_PIX_FMT_FLAG_HWACCEL ? 'H' : '.',
980 pix_desc->flags & AV_PIX_FMT_FLAG_PAL ? 'P' : '.',
981 pix_desc->flags & AV_PIX_FMT_FLAG_BITSTREAM ? 'B' : '.',
982 pix_desc->name,
983 pix_desc->nb_components,
984 av_get_bits_per_pixel(pix_desc),
985 pix_desc->comp[0].depth);
987 for (unsigned i = 1; i < pix_desc->nb_components; i++)
988 printf("-%d", pix_desc->comp[i].depth);