Searched refs:dstH (Results 1 - 16 of 16) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/
H A Dswscale-test.c81 int srcW, int srcH, int dstW, int dstH, int flags,
145 dst[i] = av_mallocz(dstStride[i] * dstH + 16);
154 dstContext = sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat,
165 desc_dst->name, dstW, dstH,
173 dstStride[i] * dstH);
191 outContext = sws_getContext(dstW, dstH, dstFormat, w, h,
201 sws_scale(outContext, (const uint8_t * const*)dst, dstStride, 0, dstH, out, refStride);
248 const int dstH[] = { srcH - srcH / 3, srcH, srcH + srcH / 3, 0 }; local
276 for (j = 0; dstH[j] && !res; j++)
279 srcW, srcH, dstW[i], dstH[
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
302 int dstW, dstH; local
[all...]
H A Dswscale.h186 * @param dstH the height of the destination image
195 int dstW, int dstH, enum AVPixelFormat dstFormat,
322 int dstW, int dstH, enum AVPixelFormat dstFormat,
H A Dutils.c1132 int dstH = c->dstH; local
1146 unscaled = (srcW == dstW && srcH == dstH);
1193 if (dstW < srcW && dstH < srcH)
1195 else if (dstW > srcW && dstH > srcH)
1206 if (srcW < 1 || srcH < 1 || dstW < 1 || dstH < 1) {
1210 srcW, srcH, dstW, dstH);
1220 c->lumYInc = (((int64_t)srcH << 16) + (dstH >> 1)) / dstH;
1343 c->chrDstH = FF_CEIL_RSHIFT(dstH,
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 Dswscale.c343 const int dstH = c->dstH; local
412 DEBUG_BUFFERS("srcSliceY: %d srcSliceH: %d dstY: %d dstH: %d\n",
413 srcSliceY, srcSliceH, dstY, dstH);
457 for (; dstY < dstH; dstY++) {
469 const int firstLumSrcY2 = FFMAX(1 - vLumFilterSize, vLumFilterPos[FFMIN(dstY | ((1 << c->chrDstVSubSample) - 1), dstH - 1)]);
565 if (dstY >= dstH - 2) {
1051 if (c->srcXYZ && !(c->dstXYZ && c->srcW==c->dstW && c->srcH==c->dstH)) {
1097 dst2[0] += ( c->dstH - 1) * dstStride[0];
1098 dst2[1] += ((c->dstH >>
[all...]
H A Doptions.c59 { "dsth", "destination height", OFFSET(dstH), AV_OPT_TYPE_INT, { .i64 = 16 }, 1, INT_MAX, VE },
H A Dswscale_internal.h282 int dstH; ///< Height of destination luma/alpha planes. member in struct:SwsContext
H A Dswscale_unscaled.c1564 const int dstH = c->dstH; local
1584 !(flags & SWS_ACCURATE_RND) && (c->dither == SWS_DITHER_BAYER || c->dither == SWS_DITHER_AUTO) && !(dstH & 1)) {
1588 if (srcFormat == AV_PIX_FMT_YUV410P && !(dstH & 3) &&
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/
H A Dswscale-test.c81 int srcW, int srcH, int dstW, int dstH, int flags,
140 dst[i] = av_mallocz(dstStride[i] * dstH + 16);
149 dstContext = sws_getContext(srcW, srcH, srcFormat, dstW, dstH, dstFormat,
161 av_pix_fmt_descriptors[dstFormat].name, dstW, dstH,
169 dstStride[i] * dstH);
186 outContext = sws_getContext(dstW, dstH, dstFormat, w, h,
196 sws_scale(outContext, dst, dstStride, 0, dstH, out, refStride);
243 const int dstH[] = { srcH - srcH / 3, srcH, srcH + srcH / 3, 0 }; local
268 for (j = 0; dstH[j] && !res; j++)
271 srcW, srcH, dstW[i], dstH[
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
294 int dstW, dstH; local
[all...]
H A Dutils.c765 int dstH= c->dstH; local
776 unscaled = (srcW == dstW && srcH == dstH);
803 if (srcW<4 || srcH<1 || dstW<8 || dstH<1) { //FIXME check if these are enough and try to lowwer them after fixing the relevant parts of the code
805 srcW, srcH, dstW, dstH);
813 c->lumYInc= (((int64_t)srcH<<16) + (dstH>>1))/dstH;
863 c->chrDstH= -((-dstH) >> c->chrDstVSubSample);
982 srcH , dstH, filterAlign, (1<<12),
993 FF_ALLOC_OR_GOTO(c, c->vYCoeffsBank, sizeof (vector signed short)*c->vLumFilterSize*c->dstH, fai
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 Dswscale.h194 * @param dstH the height of the destination image
203 int dstW, int dstH, enum PixelFormat dstFormat,
324 int dstW, int dstH, enum PixelFormat dstFormat,
H A Doptions.c58 { "dsth", "destination height", OFFSET(dstH), AV_OPT_TYPE_INT, {.dbl = 16 }, 1, INT_MAX, VE },
H A Dswscale_unscaled.c764 const int dstH = c->dstH; local
779 !(flags & SWS_ACCURATE_RND) && !(dstH & 1)) {
1028 dst2[0] += ( c->dstH - 1) * dstStride[0];
1029 dst2[1] += ((c->dstH >> c->chrDstVSubSample) - 1) * dstStride[1];
1030 dst2[2] += ((c->dstH >> c->chrDstVSubSample) - 1) * dstStride[2];
1031 dst2[3] += ( c->dstH - 1) * dstStride[3];
H A Dswscale_internal.h233 int dstH; ///< Height of destination luma/alpha planes. member in struct:SwsContext
H A Dswscale.c2365 const int dstH= c->dstH; local
2429 DEBUG_BUFFERS("srcSliceY: %d srcSliceH: %d dstY: %d dstH: %d\n",
2430 srcSliceY, srcSliceH, dstY, dstH);
2459 for (;dstY < dstH; dstY++) {
2469 const int firstLumSrcY2= vLumFilterPos[FFMIN(dstY | ((1<<c->chrDstVSubSample) - 1), dstH-1)];
2560 if (dstY >= dstH-2) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/x86/
H A Dswscale_mmx.c104 const int dstH= c->dstH; local
130 if (dstY < dstH - 2) {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/x86/
H A Dswscale.c86 const int dstH= c->dstH; local
112 if (dstY < dstH - 2) {

Completed in 82 milliseconds