Searched refs:dstFormat (Results 1 - 25 of 34) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/
H A Dswscale_unscaled.c128 if (c->dstFormat == PIX_FMT_NV12)
306 const enum PixelFormat dstFormat = c->dstFormat; local
314 switch (dstFormat) {
323 switch (dstFormat) {
335 sws_format_name(srcFormat), sws_format_name(dstFormat));
359 const enum PixelFormat dstFormat = c->dstFormat; local
369 if (IS_NOT_NE(srcId, srcFormat) || IS_NOT_NE(dstId, dstFormat))
372 #define CONV_IS(src, dst) (srcFormat == PIX_FMT_##src && dstFormat
438 const enum PixelFormat dstFormat = c->dstFormat; local
762 const enum PixelFormat dstFormat = c->dstFormat; local
[all...]
H A Dswscale-test.c80 enum PixelFormat srcFormat, enum PixelFormat dstFormat,
131 av_image_fill_linesizes(dstStride, dstFormat, dstW);
149 dstContext = sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat,
154 av_pix_fmt_descriptors[dstFormat].name);
161 av_pix_fmt_descriptors[dstFormat].name, dstW, dstH,
186 outContext = sws_getContext(dstW, dstH, dstFormat, w, h,
191 av_pix_fmt_descriptors[dstFormat].name,
199 if (hasChroma(srcFormat) && hasChroma(dstFormat)) {
206 if (isALPHA(srcFormat) && isALPHA(dstFormat))
244 enum PixelFormat srcFormat, dstFormat; local
79 doTest(uint8_t *ref[4], int refStride[4], int w, int h, enum PixelFormat srcFormat, enum PixelFormat dstFormat, int srcW, int srcH, int dstW, int dstH, int flags, struct Results *r) argument
292 enum PixelFormat dstFormat; local
338 enum PixelFormat dstFormat = PIX_FMT_NONE; local
[all...]
H A Dutils.c705 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; local
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]);
1106 sws_getContext(int srcW, int srcH, enum PixelFormat srcFormat, int dstW, int dstH, enum PixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param) argument
1490 sws_getCachedContext(struct SwsContext *context, int srcW, int srcH, enum PixelFormat srcFormat, int dstW, int dstH, enum PixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param) argument
[all...]
H A Dyuv2rgb.c524 av_log(c, AV_LOG_WARNING, "No accelerated colorspace conversion found from %s to %s.\n", sws_format_name(c->srcFormat), sws_format_name(c->dstFormat));
526 switch (c->dstFormat) {
593 const int isRgb = c->dstFormat==PIX_FMT_RGB32
594 || c->dstFormat==PIX_FMT_RGB32_1
595 || c->dstFormat==PIX_FMT_BGR24
596 || c->dstFormat==PIX_FMT_RGB565BE
597 || c->dstFormat==PIX_FMT_RGB565LE
598 || c->dstFormat==PIX_FMT_RGB555BE
599 || c->dstFormat==PIX_FMT_RGB555LE
600 || c->dstFormat
[all...]
H A Dswscale.h195 * @param dstFormat the destination image format
203 int dstW, int dstH, enum PixelFormat dstFormat,
324 int dstW, int dstH, enum PixelFormat dstFormat,
H A Doptions.c60 { "dst_format", "destination format", OFFSET(dstFormat), AV_OPT_TYPE_INT, {.dbl = DEFAULT }, 0, PIX_FMT_NB-1, VE },
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/
H A Dswscale_unscaled.c169 if (c->dstFormat == AV_PIX_FMT_NV12)
372 const enum AVPixelFormat dstFormat = c->dstFormat; local
380 switch (dstFormat) {
389 switch (dstFormat) {
401 av_get_pix_fmt_name(srcFormat), av_get_pix_fmt_name(dstFormat));
556 const AVPixFmtDescriptor *dst_format = av_pix_fmt_desc_get(c->dstFormat);
727 const AVPixFmtDescriptor *dst_format = av_pix_fmt_desc_get(c->dstFormat);
744 switch (c->dstFormat) {
838 av_get_pix_fmt_name(c->dstFormat));
1151 const enum AVPixelFormat dstFormat = c->dstFormat; local
1255 const enum AVPixelFormat dstFormat = c->dstFormat; local
1562 const enum AVPixelFormat dstFormat = c->dstFormat; local
[all...]
H A Dswscale-test.c80 enum AVPixelFormat srcFormat, enum AVPixelFormat dstFormat,
86 const AVPixFmtDescriptor *desc_dst = av_pix_fmt_desc_get(dstFormat);
135 av_image_fill_linesizes(dstStride, dstFormat, dstW);
154 dstContext = sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat,
191 outContext = sws_getContext(dstW, dstH, dstFormat, w, h,
204 if (hasChroma(srcFormat) && hasChroma(dstFormat)) {
211 if (isALPHA(srcFormat) && isALPHA(dstFormat))
249 enum AVPixelFormat srcFormat, dstFormat; local
260 for (dstFormat = dstFormat_in != AV_PIX_FMT_NONE ? dstFormat_in : 0;
261 dstFormat < AV_PIX_FMT_N
79 doTest(uint8_t *ref[4], int refStride[4], int w, int h, enum AVPixelFormat srcFormat, enum AVPixelFormat dstFormat, int srcW, int srcH, int dstW, int dstH, int flags, struct Results *r) argument
300 enum AVPixelFormat dstFormat; local
347 enum AVPixelFormat dstFormat = AV_PIX_FMT_NONE; local
[all...]
H A Dutils.c991 desc_dst = av_pix_fmt_desc_get(c->dstFormat);
994 if(!isYUV(c->dstFormat) && !isGray(c->dstFormat))
1012 if ((isYUV(c->dstFormat) || isGray(c->dstFormat)) && (isYUV(c->srcFormat) || isGray(c->srcFormat)))
1018 if (!isYUV(c->dstFormat) && !isGray(c->dstFormat)) {
1101 c->dst0Alpha |= handle_0alpha(&c->dstFormat);
1103 c->dstXYZ |= handle_xyz(&c->dstFormat);
1136 enum AVPixelFormat dstFormat local
1663 sws_getContext(int srcW, int srcH, enum AVPixelFormat srcFormat, int dstW, int dstH, enum AVPixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param) argument
2075 sws_getCachedContext(struct SwsContext *context, int srcW, int srcH, enum AVPixelFormat srcFormat, int dstW, int dstH, enum AVPixelFormat dstFormat, int flags, SwsFilter *srcFilter, SwsFilter *dstFilter, const double *param) argument
[all...]
H A Dyuv2rgb.c614 av_get_pix_fmt_name(c->srcFormat), av_get_pix_fmt_name(c->dstFormat));
616 switch (c->dstFormat) {
699 const int isRgb = c->dstFormat == AV_PIX_FMT_RGB32 ||
700 c->dstFormat == AV_PIX_FMT_RGB32_1 ||
701 c->dstFormat == AV_PIX_FMT_BGR24 ||
702 c->dstFormat == AV_PIX_FMT_RGB565BE ||
703 c->dstFormat == AV_PIX_FMT_RGB565LE ||
704 c->dstFormat == AV_PIX_FMT_RGB555BE ||
705 c->dstFormat == AV_PIX_FMT_RGB555LE ||
706 c->dstFormat
[all...]
H A Dswscale.c348 const enum AVPixelFormat dstFormat = c->dstFormat; local
582 if (isPlanarYUV(dstFormat) ||
583 (isGray(dstFormat) && !isALPHA(dstFormat))) { // YV12 like
611 if (!((dstY & chrSkipMask) || isGray(dstFormat))) {
679 if (isPlanar(dstFormat) && isALPHA(dstFormat) && !alpPixBuf) {
683 if (is16BPS(dstFormat) || isNBPS(dstFormat)) {
[all...]
H A Dswscale.h187 * @param dstFormat the destination image format
195 int dstW, int dstH, enum AVPixelFormat dstFormat,
322 int dstW, int dstH, enum AVPixelFormat dstFormat,
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/x86/
H A Dyuv2rgb.c79 switch (c->dstFormat) {
89 switch (c->dstFormat) {
H A Dswscale.c107 if (c->dstFormat == AV_PIX_FMT_RGB555 || c->dstFormat == AV_PIX_FMT_BGR555)
426 case 10: if (!isBE(c->dstFormat)) vscalefn = ff_yuv2planeX_10_ ## opt; break; \
427 case 9: if (!isBE(c->dstFormat)) vscalefn = ff_yuv2planeX_9_ ## opt; break; \
432 case 16: if (!isBE(c->dstFormat)) vscalefn = ff_yuv2plane1_16_ ## opt1; break; \
433 case 10: if (!isBE(c->dstFormat) && opt2chk) vscalefn = ff_yuv2plane1_10_ ## opt2; break; \
434 case 9: if (!isBE(c->dstFormat) && opt2chk) vscalefn = ff_yuv2plane1_9_ ## opt2; break; \
544 if (!isBE(c->dstFormat)) c->yuv2planeX = ff_yuv2planeX_16_sse4,
546 if (c->dstBpc == 16 && !isBE(c->dstFormat))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/x86/
H A Dyuv2rgb_mmx.c77 switch (c->dstFormat) {
85 switch (c->dstFormat) {
H A Dswscale_mmx.c125 if (c->dstFormat == PIX_FMT_RGB555 || c->dstFormat == PIX_FMT_BGR555)
341 case 10: if (!isBE(c->dstFormat)) vscalefn = ff_yuv2planeX_10_ ## opt; break; \
342 case 9: if (!isBE(c->dstFormat)) vscalefn = ff_yuv2planeX_9_ ## opt; break; \
347 case 16: if (!isBE(c->dstFormat)) vscalefn = ff_yuv2plane1_16_ ## opt1; break; \
348 case 10: if (!isBE(c->dstFormat) && opt2chk) vscalefn = ff_yuv2plane1_10_ ## opt2; break; \
349 case 9: if (!isBE(c->dstFormat) && opt2chk) vscalefn = ff_yuv2plane1_9_ ## opt2; break; \
431 if (!isBE(c->dstFormat)) c->yuv2planeX = ff_yuv2planeX_16_sse4);
432 if (c->dstBpc == 16 && !isBE(c->dstFormat))
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/bfin/
H A Dswscale_bfin.c81 if (c->dstFormat == PIX_FMT_YUV420P && c->srcFormat == PIX_FMT_UYVY422) {
85 if (c->dstFormat == PIX_FMT_YUV420P && c->srcFormat == PIX_FMT_YUYV422) {
H A Dyuv2rgb_bfin.c188 switch(c->dstFormat) {
200 sws_format_name (c->dstFormat));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/sparc/
H A Dyuv2rgb_vis.c203 if (c->dstFormat == PIX_FMT_RGB32 && c->srcFormat == PIX_FMT_YUV422P && (c->dstW & 7)==0) {
207 else if (c->dstFormat == PIX_FMT_RGB32 && c->srcFormat == PIX_FMT_YUV420P && (c->dstW & 7)==0) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/arm/
H A Dswscale_unscaled.c67 && c->dstFormat == AV_PIX_FMT_NV12
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/ppc/
H A Dyuv2yuv_altivec.c195 enum AVPixelFormat dstFormat = c->dstFormat; local
198 if (dstFormat == AV_PIX_FMT_YUYV422)
200 else if (dstFormat == AV_PIX_FMT_UYVY422)
H A Dswscale_altivec.c293 enum AVPixelFormat dstFormat = c->dstFormat; local
301 if (!is16BPS(dstFormat) && !is9_OR_10BPS(dstFormat) &&
302 dstFormat != AV_PIX_FMT_NV12 && dstFormat != AV_PIX_FMT_NV21 &&
307 /* The following list of supported dstFormat values should
310 switch (c->dstFormat) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/mlib/
H A Dyuv2rgb_mlib.c82 switch(c->dstFormat) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/ppc/
H A Dyuv2yuv_altivec.c183 enum PixelFormat dstFormat = c->dstFormat; local
186 if (dstFormat == PIX_FMT_YUYV422)
188 else if (dstFormat == PIX_FMT_UYVY422)
H A Dswscale_altivec.c329 enum PixelFormat dstFormat = c->dstFormat; local
337 if (!is16BPS(dstFormat) && !is9_OR_10BPS(dstFormat) &&
338 dstFormat != PIX_FMT_NV12 && dstFormat != PIX_FMT_NV21 &&
343 /* The following list of supported dstFormat values should
346 switch (c->dstFormat) {

Completed in 102 milliseconds

12