HomeSort by relevance Sort by last modified time
    Searched refs:downsample (Results 1 - 25 of 30) sorted by null

1 2

  /external/opencv3/3rdparty/libjpeg/
jcsample.c 53 /* Pointer to routine to downsample a single component */
119 * In this version we simply downsample each component independently.
127 my_downsample_ptr downsample = (my_downsample_ptr) cinfo->downsample; local
136 (out_row_group_index * downsample->rowgroup_height[ci]);
137 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
143 * Downsample pixel values of a single component.
153 my_downsample_ptr downsample = (my_downsample_ptr) cinfo->downsample; local
160 h_expand = downsample->h_expand[compptr->component_index]
480 my_downsample_ptr downsample; local
    [all...]
jcprepct.c 57 * until we have enough to do a downsample step.
66 int next_buf_stop; /* downsample when we reach this index */
163 (*cinfo->downsample->downsample) (cinfo,
245 /* If we've gotten enough data, downsample a row group. */
247 (*cinfo->downsample->downsample) (cinfo,
337 if (cinfo->downsample->need_context_rows) {
jpegint.h 94 JMETHOD(void, downsample, (j_compress_ptr cinfo,
  /external/libjpeg-turbo/
jcsample.c 57 /* Pointer to routine to downsample a single component */
115 * In this version we simply downsample each component independently.
123 my_downsample_ptr downsample = (my_downsample_ptr) cinfo->downsample; local
132 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
138 * Downsample pixel values of a single component.
186 * Downsample pixel values of a single component.
205 * Downsample pixel values of a single component.
248 * Downsample pixel values of a single component.
291 * Downsample pixel values of a single component
471 my_downsample_ptr downsample; local
    [all...]
jcprepct.c 59 * until we have enough to do a downsample step.
68 int next_buf_stop; /* downsample when we reach this index */
165 (*cinfo->downsample->downsample) (cinfo,
245 /* If we've gotten enough data, downsample a row group. */
247 (*cinfo->downsample->downsample) (cinfo,
336 if (cinfo->downsample->need_context_rows) {
jpegint.h 106 void (*downsample) (j_compress_ptr cinfo, JSAMPIMAGE input_buf, member in struct:jpeg_downsampler
jcmaster.c 449 (*cinfo->downsample->start_pass) (cinfo);
jpeglib.h 461 struct jpeg_downsampler * downsample; member in struct:jpeg_compress_struct
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jcsample.c 53 /* Pointer to routine to downsample a single component */
110 * In this version we simply downsample each component independently.
118 my_downsample_ptr downsample = (my_downsample_ptr) cinfo->downsample; local
127 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
133 * Downsample pixel values of a single component.
181 * Downsample pixel values of a single component.
200 * Downsample pixel values of a single component.
243 * Downsample pixel values of a single component.
286 * Downsample pixel values of a single component
466 my_downsample_ptr downsample; local
    [all...]
fpdfapi_jcprepct.c 57 * until we have enough to do a downsample step.
66 int next_buf_stop; /* downsample when we reach this index */
163 (*cinfo->downsample->downsample) (cinfo,
243 /* If we've gotten enough data, downsample a row group. */
245 (*cinfo->downsample->downsample) (cinfo,
334 if (cinfo->downsample->need_context_rows) {
jpegint.h 93 JMETHOD(void, downsample, (j_compress_ptr cinfo,
  /frameworks/av/include/media/stagefright/
YUVCanvas.h 65 void downsample(
  /external/libopus/src/
opus_compare.c 184 int downsample; local
201 downsample=1;
209 downsample=48000/rate;
216 yfreqs=NFREQS/downsample;
238 if(xlength!=ylength*downsample){
240 (unsigned long)xlength,(unsigned long)ylength*downsample);
258 TEST_WIN_SIZE/downsample,TEST_WIN_STEP/downsample,downsample);
  /external/libopus/celt/
celt_decoder.c 70 int downsample; member in struct:OpusCustomDecoder
137 st->downsample = resampling_factor(sampling_rate);
138 if (st->downsample==0)
158 st->downsample = 1;
193 void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, const opus_val16 *coef, celt_sig *mem, celt_sig * OPUS_RESTRICT scratch)
201 Nd = N/downsample;
225 if (downsample>1)
250 y[j*C] = SCALEOUT(SIG2WORD16(scratch[j*downsample]));
346 int downsample; local
370 downsample = st->downsample
    [all...]
celt.h 208 void deemphasis(celt_sig *in[], opus_val16 *pcm, int N, int C, int downsample, const opus_val16 *coef, celt_sig *mem, celt_sig * OPUS_RESTRICT scratch);
  /external/glide/library/src/main/java/com/bumptech/glide/
BitmapRequestBuilder.java 68 * @see #downsample(Downsampler)
73 return downsample(Downsampler.AT_LEAST);
79 * @see #downsample(Downsampler)
84 return downsample(Downsampler.NONE);
91 * @see #downsample(com.bumptech.glide.load.resource.bitmap.Downsampler)
96 return downsample(Downsampler.AT_MOST);
110 private BitmapRequestBuilder<ModelType, TranscodeType> downsample(Downsampler downsampler) { method in class:BitmapRequestBuilder
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterDownsample.java 28 private static final String SERIALIZATION_NAME = "DOWNSAMPLE";
33 mName = "Downsample";
39 representation.setName("Downsample");
48 representation.setTextId(R.string.downsample);
  /packages/apps/Camera2/src/com/android/camera/
TextureViewHelper.java 416 public Bitmap getPreviewBitmap(int downsample) {
418 int width = (int) textureArea.width() / downsample;
419 int height = (int) textureArea.height() / downsample;
  /frameworks/av/media/libstagefright/yuv/
YUVCanvas.cpp 84 void YUVCanvas::downsample( function in class:android::YUVCanvas
  /external/chromium-trace/catapult/third_party/flot/
FAQ.md 14 chart anyway. If you downsample server-side, you also save bandwidth.
PLUGINS.md 130 downsample: {
  /external/opencv3/modules/photo/src/
align.cpp 219 void downsample(Mat& src, Mat& dst) function in class:cv::AlignMTBImpl
242 downsample(pyr[level], pyr[level + 1]);
  /hardware/intel/common/libmix/mix_audio/src/
intel_sst_ioctl.h 111 __u8 downsample; /* 1 = Downsampling ON, 0 = Downsampling OFF */ member in struct:snd_aac_params
sst_proxy.c 216 AAC_DUMP(downsample); /* 1 = Downsampling ON, 0 = Downsampling OFF */
  /external/opencv3/modules/imgproc/test/
test_filter.cpp 1027 CV_PyramidBaseTest( bool downsample );
1032 bool downsample;
1040 downsample = _downsample;
1042 kernel = (kernel1d.t()*kernel1d)*((downsample ? 1 : 4)/256.);
1075 if( downsample )
    [all...]

Completed in 548 milliseconds

1 2