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

1 2 3 4 5 6 7

  /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);
  /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) {
  /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) {
  /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) {
  /external/libjpeg-turbo/simd/
jcsample-sse2-64.asm 26 ; Downsample pixel values of a single component.
120 jmp short .downsample
126 .downsample:
170 ; Downsample pixel values of a single component.
267 jmp short .downsample
275 .downsample:
jcsample-sse2.asm 25 ; Downsample pixel values of a single component.
125 jmp short .downsample
132 .downsample:
180 ; Downsample pixel values of a single component.
283 jmp short .downsample
292 .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...]
  /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/glide/library/src/main/java/com/bumptech/glide/load/
ResourceDecoder.java 25 * how much to downsample Bitmaps by to avoid overly large allocations.
  /external/opencv3/doc/tutorials/imgproc/pyramids/
pyramids.markdown 9 - Use the OpenCV functions @ref cv::pyrUp and @ref cv::pyrDown to downsample or upsample a given
31 - **Gaussian pyramid:** Used to downsample images
54 - The procedure above was useful to downsample an image. What if we want to make it bigger?:
163 hence a downsample won't generate any error (\f$512 = 2^{9}\f$). The original image is shown below:
  /external/skia/src/effects/
SkTestImageFilters.cpp 49 // downsample
  /packages/apps/Camera2/src/com/android/camera/captureintent/
PictureDecoder.java 35 // Downsample the image
  /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
  /external/libopus/silk/
resampler_down2.c 35 /* Downsample by a factor 2 */
resampler_down2_3.c 38 /* Downsample by a factor 2/3, low quality */
  /frameworks/av/include/media/stagefright/
YUVCanvas.h 65 void downsample(
  /external/autotest/client/site_tests/graphics_PiglitBVT/test_scripts/other/
graphics_PiglitBVT_5.sh 92 run_test "spec/ARB_framebuffer_sRGB/blit renderbuffer linear downsample disabled" 0.0 "bin/arb_framebuffer_srgb-blit renderbuffer linear downsample disabled -fbo -auto"
93 run_test "spec/ARB_framebuffer_sRGB/blit renderbuffer linear downsample enabled" 0.0 "bin/arb_framebuffer_srgb-blit renderbuffer linear downsample enabled -fbo -auto"
102 run_test "spec/ARB_framebuffer_sRGB/blit renderbuffer linear_to_srgb downsample disabled" 0.0 "bin/arb_framebuffer_srgb-blit renderbuffer linear_to_srgb downsample disabled -fbo -auto"
103 run_test "spec/ARB_framebuffer_sRGB/blit renderbuffer linear_to_srgb downsample enabled" 0.0 "bin/arb_framebuffer_srgb-blit renderbuffer linear_to_srgb downsample enabled -fbo -auto"
112 run_test "spec/ARB_framebuffer_sRGB/blit renderbuffer srgb downsample disabled" 0.0 "bin/arb_framebuffer_srgb-blit renderbuffer srgb downsample disabled -fbo -auto
    [all...]
  /external/opencv3/modules/cudalegacy/test/
TestResize.cpp 129 ncvAssertPrintReturn(false, "Incorrect downsample test instance", false);
151 ncvAssertPrintReturn(false, "Incorrect downsample test instance", false);
  /packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
JpegImageBackendImageSaver.java 124 // Downsample and convert the JPEG payload to a reasonably-sized
154 /** Factor to downsample full-size JPEG image for use in thumbnail bitmap. */
  /external/webrtc/webrtc/common_audio/vad/
vad_filterbank.c 267 // Split at 2000 Hz and downsample.
271 // For the upper band (2000 Hz - 4000 Hz) split at 3000 Hz and downsample.
287 // For the lower band (0 Hz - 2000 Hz) split at 1000 Hz and downsample.
300 // For the lower band (0 Hz - 1000 Hz) split at 500 Hz and downsample.
312 // For the lower band (0 Hz - 500 Hz) split at 250 Hz and downsample.
  /external/webrtc/webrtc/modules/audio_processing/
three_band_filter_bank.cc 22 // This is used in the analysis stage to first downsample serial to parallel
88 void Downsample(const float* in,
146 Downsample(in, in_buffer_.size(), kNumBands - i - 1, &in_buffer_[0]);
  /external/chromium-trace/catapult/third_party/flot/
FAQ.md 14 chart anyway. If you downsample server-side, you also save bandwidth.

Completed in 813 milliseconds

1 2 3 4 5 6 7