Lines Matching defs:pixdesc
46 #include "libavutil/pixdesc.h"
3545 print_int(name, !!(pixdesc->flags & AV_PIX_FMT_FLAG_##flagname)); \
3550 const AVPixFmtDescriptor *pixdesc = NULL;
3554 while (pixdesc = av_pix_fmt_desc_next(pixdesc)) {
3556 print_str("name", pixdesc->name);
3557 print_int("nb_components", pixdesc->nb_components);
3558 if ((pixdesc->nb_components >= 3) && !(pixdesc->flags & AV_PIX_FMT_FLAG_RGB)) {
3559 print_int ("log2_chroma_w", pixdesc->log2_chroma_w);
3560 print_int ("log2_chroma_h", pixdesc->log2_chroma_h);
3565 n = av_get_bits_per_pixel(pixdesc);
3579 if (do_show_pixel_format_components && (pixdesc->nb_components > 0)) {
3581 for (i = 0; i < pixdesc->nb_components; i++) {
3584 print_int("bit_depth", pixdesc->comp[i].depth);