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

  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoderTest.cpp 67 void downsample(size_t maxDecodedBytes, unsigned* outputWidth, unsigned* outputHeight, const char* imageFilePath) function
119 // Tests that JPEG decoder can downsample image whose width and height are multiple of 8,
127 // 1/8 downsample.
128 downsample(40 * 40 * 4, &outputWidth, &outputHeight, jpegFile);
132 // 2/8 downsample.
133 downsample(70 * 70 * 4, &outputWidth, &outputHeight, jpegFile);
137 // 3/8 downsample.
138 downsample(100 * 100 * 4, &outputWidth, &outputHeight, jpegFile);
142 // 4/8 downsample.
143 downsample(130 * 130 * 4, &outputWidth, &outputHeight, jpegFile)
    [all...]
  /external/chromium_org/third_party/libjpeg_turbo/
jcsample.c 55 /* Pointer to routine to downsample a single component */
112 * In this version we simply downsample each component independently.
120 my_downsample_ptr downsample = (my_downsample_ptr) cinfo->downsample; local
129 (*downsample->methods[ci]) (cinfo, compptr, in_ptr, out_ptr);
135 * Downsample pixel values of a single component.
183 * Downsample pixel values of a single component.
202 * Downsample pixel values of a single component.
245 * Downsample pixel values of a single component.
288 * Downsample pixel values of a single component
468 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,
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 94 JMETHOD(void, downsample, (j_compress_ptr cinfo,
jcmaster.c 449 (*cinfo->downsample->start_pass) (cinfo);
jpeglib.h 466 struct jpeg_downsampler * downsample; member in struct:jpeg_compress_struct
    [all...]
turbojpeg.c 804 (cinfo->downsample->downsample)(cinfo, tmpbuf, 0, tmpbuf2, 0);
    [all...]
  /external/jpeg/
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...]
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,
jcmaster.c 414 (*cinfo->downsample->start_pass) (cinfo);
jpeglib.h 405 struct jpeg_downsampler * downsample; member in struct:jpeg_compress_struct
    [all...]
  /external/chromium_org/third_party/opus/src/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/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/chromium_org/third_party/opus/src/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/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 62 * @see #downsample(Downsampler)
67 return downsample(Downsampler.AT_LEAST);
73 * @see #downsample(Downsampler)
78 return downsample(Downsampler.NONE);
92 private BitmapRequestBuilder<ModelType, TranscodeType> downsample(Downsampler downsampler) { method in class:BitmapRequestBuilder

Completed in 488 milliseconds