Lines Matching refs:dstFormat
65 enum AVPixelFormat dstFormat = AV_PIX_FMT_NONE;
160 dstFormat = pix_fmts[i];
199 res = av_image_fill_linesizes(dstStride, dstFormat, w);
214 // srcFormat -> dstFormat
216 dstFormat, SWS_BILINEAR, NULL, NULL, NULL);
218 fprintf(stderr, "Failed to get %s -> %s\n", av_get_pix_fmt_name(inFormat), av_get_pix_fmt_name(dstFormat) );
230 // dstFormat -> srcFormat
231 sws = sws_getContext(w, h, dstFormat, w, h,
234 fprintf(stderr, "Failed to get %s -> %s\n", av_get_pix_fmt_name(dstFormat), av_get_pix_fmt_name(inFormat) );
280 fprintf(stdout, "%s -> %s -> %s\n", av_get_pix_fmt_name(inFormat), av_get_pix_fmt_name(dstFormat), av_get_pix_fmt_name(inFormat) );