Searched refs:scalebits (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/pwc/
H A Dpwc-dec23.c321 pdec->scalebits = SCALEBITS - shift;
344 static void copy_image_block_Y(const int *src, unsigned char *dst, unsigned int bytes_per_line, unsigned int scalebits) argument
351 *d++ = cm[c[0] >> scalebits];
352 *d++ = cm[c[1] >> scalebits];
353 *d++ = cm[c[2] >> scalebits];
354 *d++ = cm[c[3] >> scalebits];
357 *d++ = cm[c[4] >> scalebits];
358 *d++ = cm[c[5] >> scalebits];
359 *d++ = cm[c[6] >> scalebits];
360 *d++ = cm[c[7] >> scalebits];
398 copy_image_block_CrCb(const int *src, unsigned char *dst, unsigned int bytes_per_line, unsigned int scalebits) argument
456 copy_image_block_Green(const int *src, unsigned char *dst, unsigned int bytes_per_line, unsigned int scalebits) argument
506 copy_image_block_RedBlue(const int *src, unsigned char *dst, unsigned int bytes_per_line, unsigned int scalebits) argument
[all...]
H A Dpwc-dec23.h32 unsigned int scalebits; member in struct:pwc_dec23_private
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavfilter/
H A Dunsharp.h62 int scalebits; ///< bits to shift pixel member in struct:UnsharpFilterParam
H A Dvf_unsharp.c64 const int scalebits = fp->scalebits; local
94 res = (int32_t)*srx + ((((int32_t) * srx - (int32_t)((tmp1 + halfscale) >> scalebits)) * amount) >> 16);
131 fp->scalebits = (fp->steps_x + fp->steps_y) * 2;
132 fp->halfscale = 1 << (fp->scalebits - 1);
H A Dunsharp_opencl_kernel.h41 int scalebits,
99 int res = temp + (((temp - (int)((sum + halfscale) >> scalebits)) * amount) >> 16);
109 int scalebits,
180 int res = temp + (((temp - (int)((sum + halfscale) >> scalebits)) * amount) >> 16);
H A Dunsharp_opencl.c189 FF_OPENCL_PARAM_INFO(unsharp->luma.scalebits),
206 FF_OPENCL_PARAM_INFO(unsharp->chroma.scalebits),
244 FF_OPENCL_PARAM_INFO(unsharp->luma.scalebits),
245 FF_OPENCL_PARAM_INFO(unsharp->chroma.scalebits),
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/flac-1.2.1/src/plugin_common/
H A Ddither.c59 unsigned scalebits; local
75 scalebits = source_bps - target_bps;
76 mask = (1L << scalebits) - 1;
105 return output >> scalebits;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavfilter/
H A Dvf_unsharp.c56 int scalebits; ///< bits to shift pixel member in struct:FilterParam
109 res = (int32_t)*srx + ((((int32_t) * srx - (int32_t)((tmp1 + fp->halfscale) >> fp->scalebits)) * fp->amount) >> 16);
128 fp->scalebits = (fp->steps_x + fp->steps_y) * 2;
129 fp->halfscale = 1 << (fp->scalebits - 1);

Completed in 57 milliseconds