Lines Matching refs:dstFormat
693 av_get_pix_fmt_name(c->srcFormat), av_get_pix_fmt_name(c->dstFormat));
695 switch (c->dstFormat) {
778 const int isRgb = c->dstFormat == AV_PIX_FMT_RGB32 ||
779 c->dstFormat == AV_PIX_FMT_RGB32_1 ||
780 c->dstFormat == AV_PIX_FMT_BGR24 ||
781 c->dstFormat == AV_PIX_FMT_RGB565BE ||
782 c->dstFormat == AV_PIX_FMT_RGB565LE ||
783 c->dstFormat == AV_PIX_FMT_RGB555BE ||
784 c->dstFormat == AV_PIX_FMT_RGB555LE ||
785 c->dstFormat == AV_PIX_FMT_RGB444BE ||
786 c->dstFormat == AV_PIX_FMT_RGB444LE ||
787 c->dstFormat == AV_PIX_FMT_X2RGB10BE ||
788 c->dstFormat == AV_PIX_FMT_X2RGB10LE ||
789 c->dstFormat == AV_PIX_FMT_RGB8 ||
790 c->dstFormat == AV_PIX_FMT_RGB4 ||
791 c->dstFormat == AV_PIX_FMT_RGB4_BYTE ||
792 c->dstFormat == AV_PIX_FMT_MONOBLACK;
793 const int isNotNe = c->dstFormat == AV_PIX_FMT_NE(RGB565LE, RGB565BE) ||
794 c->dstFormat == AV_PIX_FMT_NE(RGB555LE, RGB555BE) ||
795 c->dstFormat == AV_PIX_FMT_NE(RGB444LE, RGB444BE) ||
796 c->dstFormat == AV_PIX_FMT_NE(BGR565LE, BGR565BE) ||
797 c->dstFormat == AV_PIX_FMT_NE(BGR555LE, BGR555BE) ||
798 c->dstFormat == AV_PIX_FMT_NE(BGR444LE, BGR444BE) ||
799 c->dstFormat == AV_PIX_FMT_NE(X2RGB10LE, X2RGB10BE) ||
800 c->dstFormat == AV_PIX_FMT_NE(X2BGR10LE, X2BGR10BE);
1000 base = (c->dstFormat == AV_PIX_FMT_RGB32_1 ||
1001 c->dstFormat == AV_PIX_FMT_BGR32_1) ? 8 : 0;
1025 if(!isPlanar(c->dstFormat) || bpp <= 24)