• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/

Lines Matching defs:dstFormat

705     if (isYUV(c->dstFormat) || isGray(c->dstFormat)) return -1;
707 c->dstFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[c->dstFormat]);
722 if (isYUV(c->dstFormat) || isGray(c->dstFormat)) return -1;
769 enum PixelFormat dstFormat= c->dstFormat;
782 if (!sws_isSupportedOutput(dstFormat)) {
783 av_log(c, AV_LOG_ERROR, "%s is not supported as output pixel format\n", sws_format_name(dstFormat));
814 c->dstFormatBpp = av_get_bits_per_pixel(&av_pix_fmt_descriptors[dstFormat]);
828 getSubSampleFactors(&c->chrDstHSubSample, &c->chrDstVSubSample, dstFormat);
832 isAnyRGB(dstFormat) &&
833 dstFormat != PIX_FMT_RGBA &&
834 dstFormat != PIX_FMT_ARGB &&
835 dstFormat != PIX_FMT_BGRA &&
836 dstFormat != PIX_FMT_ABGR &&
837 dstFormat != PIX_FMT_RGB24 &&
838 dstFormat != PIX_FMT_BGR24) {
841 sws_format_name(dstFormat));
845 if (isAnyRGB(dstFormat) && !(flags&SWS_FULL_CHR_H_INT)) c->chrDstHSubSample=1;
866 if (unscaled && !usesHFilter && !usesVFilter && (c->srcRange == c->dstRange || isAnyRGB(dstFormat))) {
872 sws_format_name(srcFormat), sws_format_name(dstFormat));
880 c->dstBpc = 1 + av_pix_fmt_descriptors[dstFormat].comp[0].depth_minus1;
1033 if (CONFIG_SWSCALE_ALPHA && isALPHA(c->srcFormat) && isALPHA(c->dstFormat))
1078 dstFormat == PIX_FMT_BGR555 || dstFormat == PIX_FMT_BGR565 ||
1079 dstFormat == PIX_FMT_RGB444BE || dstFormat == PIX_FMT_RGB444LE ||
1080 dstFormat == PIX_FMT_BGR444BE || dstFormat == PIX_FMT_BGR444LE ? "dithered " : "",
1084 sws_format_name(dstFormat));
1107 int dstW, int dstH, enum PixelFormat dstFormat, int flags,
1121 c->dstRange = handle_jpeg(&dstFormat);
1123 c->dstFormat= dstFormat;
1492 int dstW, int dstH, enum PixelFormat dstFormat, int flags,
1506 context->dstFormat != dstFormat ||
1523 context->dstRange = handle_jpeg(&dstFormat);
1524 context->dstFormat = dstFormat;