Searched refs:filterSize (Results 1 - 17 of 17) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/ppc/
H A Dswscale_altivec.c48 static void yuv2planeX_16_altivec(const int16_t *filter, int filterSize, argument
68 for (j = 0; j < filterSize; j++) {
91 static inline void yuv2planeX_u(const int16_t *filter, int filterSize, argument
99 for (j = 0; j < filterSize; j++)
105 static void yuv2planeX_altivec(const int16_t *filter, int filterSize, argument
112 yuv2planeX_u(filter, filterSize, src, dest, dst_u, dither, offset, 0);
115 yuv2planeX_16_altivec(filter, filterSize, src, dest + i, dither,
118 yuv2planeX_u(filter, filterSize, src, dest, dstW, dither, offset, i);
123 const int32_t *filterPos, int filterSize)
128 if (filterSize
121 hScale_altivec_real(SwsContext *c, int16_t *dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/ppc/
H A Dswscale_altivec.c97 yuv2planeX_altivec(const int16_t *filter, int filterSize, argument
108 for (j = 0; j < filterSize; j++) {
150 const int32_t *filterPos, int filterSize)
155 if (filterSize % 4) {
160 for (j=0; j<filterSize; j++) {
161 val += ((int)src[srcPos + j])*filter[filterSize*i + j];
167 switch (filterSize) {
188 // The 3 above is 2 (filterSize == 4) + 1 (sizeof(short) == 2).
224 // the 4 above is 3 (filterSize == 8) + 1 (sizeof(short) == 2)
250 // the 5 above are 4 (filterSize
148 hScale_altivec_real(SwsContext *c, int16_t *dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/
H A Dutils.c188 int filterSize; local
203 filterSize= 1;
204 FF_ALLOCZ_OR_GOTO(NULL, filter, dstW*sizeof(*filter)*filterSize, fail);
207 filter[i*filterSize]= fone;
214 filterSize= 1;
215 FF_ALLOC_OR_GOTO(NULL, filter, dstW*sizeof(*filter)*filterSize, fail);
219 int xx= (xDstInSrc - ((filterSize-1)<<15) + (1<<15))>>16;
228 filterSize= 2;
229 FF_ALLOC_OR_GOTO(NULL, filter, dstW*sizeof(*filter)*filterSize, fail);
233 int xx= (xDstInSrc - ((filterSize
[all...]
H A Dswscale_internal.h85 * @param filterSize number of vertical input lines to scale
91 typedef void (*yuv2planarX_fn)(const int16_t *filter, int filterSize,
287 * for (j = 0; j < filterSize; j++)
288 * dst[i] += src[ filterPos[i] + j ] * filter[ filterSize * i + j ];
498 * Guaranteed to contain dstW * filterSize entries.
502 * @param filterSize the number of input coefficients to be used (and
511 const int32_t *filterPos, int filterSize);
514 const int32_t *filterPos, int filterSize);
H A Dswscale.c186 yuv2planeX_16_c_template(const int16_t *filter, int filterSize, argument
201 * reasonable filterSize), and re-add that at the end. */
203 for (j = 0; j < filterSize; j++)
233 yuv2planeX_10_c_template(const int16_t *filter, int filterSize, argument
244 for (j = 0; j < filterSize; j++)
261 static void yuv2planeX_ ## bits ## BE_LE ## _c(const int16_t *filter, int filterSize, \
266 filterSize, (const typeX_t **) src, \
276 static void yuv2planeX_8_c(const int16_t *filter, int filterSize, argument
284 for (j=0; j<filterSize; j++)
1877 const int32_t *filterPos, int filterSize)
1875 hScale16To19_c(SwsContext *c, int16_t *_dst, int dstW, const uint8_t *_src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
1898 hScale16To15_c(SwsContext *c, int16_t *dst, int dstW, const uint8_t *_src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
1920 hScale8To15_c(SwsContext *c, int16_t *dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
1938 hScale8To19_c(SwsContext *c, int16_t *_dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/
H A Dutils.c304 int filterSize; local
319 filterSize = 1;
321 dstW, sizeof(*filter) * filterSize, fail);
324 filter[i * filterSize] = fone;
330 filterSize = 1;
332 dstW, sizeof(*filter) * filterSize, fail);
336 int xx = (xDstInSrc - ((filterSize - 1) << 15) + (1 << 15)) >> 16;
346 filterSize = 2;
348 dstW, sizeof(*filter) * filterSize, fail);
352 int xx = (xDstInSrc - ((filterSize
[all...]
H A Dswscale.c67 const int32_t *filterPos, int filterSize)
84 for (j = 0; j < filterSize; j++) {
85 val += src[srcPos + j] * filter[filterSize * i + j];
94 const int32_t *filterPos, int filterSize)
109 for (j = 0; j < filterSize; j++) {
110 val += src[srcPos + j] * filter[filterSize * i + j];
120 const int32_t *filterPos, int filterSize)
127 for (j = 0; j < filterSize; j++) {
128 val += ((int)src[srcPos + j]) * filter[filterSize * i + j];
136 const int32_t *filterPos, int filterSize)
65 hScale16To19_c(SwsContext *c, int16_t *_dst, int dstW, const uint8_t *_src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
92 hScale16To15_c(SwsContext *c, int16_t *dst, int dstW, const uint8_t *_src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
118 hScale8To15_c(SwsContext *c, int16_t *dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
134 hScale8To19_c(SwsContext *c, int16_t *_dst, int dstW, const uint8_t *src, const int16_t *filter, const int32_t *filterPos, int filterSize) argument
[all...]
H A Dswscale_internal.h100 * @param filterSize number of vertical input lines to scale
106 typedef void (*yuv2planarX_fn)(const int16_t *filter, int filterSize,
336 * for (j = 0; j < filterSize; j++)
337 * dst[i] += src[ filterPos[i] + j ] * filter[ filterSize * i + j ];
567 * Guaranteed to contain dstW * filterSize entries.
571 * @param filterSize the number of input coefficients to be used (and
580 const int32_t *filterPos, int filterSize);
583 const int32_t *filterPos, int filterSize);
H A Doutput.c158 yuv2planeX_16_c_template(const int16_t *filter, int filterSize, argument
174 * reasonable filterSize), and re-add that at the end. */
176 for (j = 0; j < filterSize; j++)
206 yuv2planeX_10_c_template(const int16_t *filter, int filterSize, argument
217 for (j = 0; j < filterSize; j++)
234 static void yuv2planeX_ ## bits ## BE_LE ## _c(const int16_t *filter, int filterSize, \
239 filterSize, (const typeX_t **) src, \
253 static void yuv2planeX_8_c(const int16_t *filter, int filterSize, argument
261 for (j=0; j<filterSize; j++)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libswscale/x86/
H A Dscale.asm36 ; void hscale<source_width>to<intermediate_nbits>_<filterSize>_<opt>
40 ; const int32_t *filterPos, int filterSize);
46 ; output pixel is generated from $filterSize input pixels, the position of
108 %if %3 == 4 ; filterSize == 4 scaling
163 %else ; %3 == 8, i.e. filterSize == 8 scaling
239 %else ; %3 == X, i.e. any filterSize scaling
250 movsxd fltsizeq, fltsized ; filterSize
251 lea srcendq, [srcmemq+(fltsizeq-dlt)*srcmul] ; &src[filterSize&~4]
256 lea pos0q, [srcmemq+(fltsizeq-dlt)*srcmul] ; &src[filterSize&~4]
297 cmp srcq, srcendq ; while (src += 4) < &src[filterSize]
[all...]
H A Dswscale.c200 static void yuv2yuvX_sse3(const int16_t *filter, int filterSize, argument
205 yuv2yuvX_mmxext(filter, filterSize, src, dest, dstW, dither, offset);
221 filterSize--;
232 ::"m"(filterSize)
279 const int32_t *filterPos, int filterSize)
314 void ff_yuv2planeX_ ## size ## _ ## opt(const int16_t *filter, int filterSize, \
H A Doutput.asm48 ; void yuv2planeX_<output_size>_<opt>(const int16_t *filter, int filterSize,
52 ; Scale one or $filterSize lines of source data to generate one line of output
54 ; int32_t if $output_size is 16. $filter is 12-bits. $filterSize is a multiple
H A Dswscale_template.c74 static void RENAME(yuv2yuvX)(const int16_t *filter, int filterSize, argument
79 filterSize--;
89 ::"m"(filterSize)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libswscale/x86/
H A Dscale.asm37 ; void hscale<source_width>to<intermediate_nbits>_<filterSize>_<opt>
41 ; const int32_t *filterPos, int filterSize);
47 ; output pixel is generated from $filterSize input pixels, the position of
105 %if %3 == 4 ; filterSize == 4 scaling
160 %else ; %3 == 8, i.e. filterSize == 8 scaling
236 %else ; %3 == X, i.e. any filterSize scaling
245 movsxd r6, r6d ; filterSize
246 lea r12, [r3+(r6-r6sub)*srcmul] ; &src[filterSize&~4]
251 lea r0, [r3+(r6-r6sub)*srcmul] ; &src[filterSize&~4]
295 cmp src_reg, filter2 ; while (src += 4) < &src[filterSize]
[all...]
H A Doutput.asm49 ; void yuv2planeX_<output_size>_<opt>(const int16_t *filter, int filterSize,
53 ; Scale one or $filterSize lines of source data to generate one line of output
55 ; int32_t if $output_size is 16. $filter is 12-bits. $filterSize is a multiple
H A Dswscale_mmx.c222 const int32_t *filterPos, int filterSize)
253 extern void ff_yuv2planeX_ ## size ## _ ## opt(const int16_t *filter, int filterSize, \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/Micromax/Linux/lib/
H A Djaxen-core.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/jaxen/ org/jaxen/expr/ org/jaxen/expr/Predicate ...

Completed in 203 milliseconds