HomeSort by relevance Sort by last modified time
    Searched defs:CHANNELS (Results 1 - 7 of 7) sorted by null

  /frameworks/av/services/audioflinger/
AudioResamplerFirProcessNeon.h 61 const int CHANNELS = 1; // template specialization does not preserve params
63 sP -= CHANNELS*((STRIDE>>1)-1);
113 const int CHANNELS = 2; // template specialization does not preserve params
115 sP -= CHANNELS*((STRIDE>>1)-1);
174 const int CHANNELS = 1; // template specialization does not preserve params
176 sP -= CHANNELS*((STRIDE>>1)-1);
244 const int CHANNELS = 2; // template specialization does not preserve params
246 sP -= CHANNELS*((STRIDE>>1)-1);
317 const int CHANNELS = 1; // template specialization does not preserve params
319 sP -= CHANNELS*((STRIDE>>1)-1)
    [all...]
  /external/chromium_org/third_party/opus/src/tests/
test_opus_padding.c 39 #define CHANNELS 2
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out));
61 decoder = opus_decoder_create(48000, CHANNELS, &error);
  /external/libopus/tests/
test_opus_padding.c 39 #define CHANNELS 2
49 opus_int16 *out = malloc(FRAMESIZE*CHANNELS*sizeof(*out));
61 decoder = opus_decoder_create(48000, CHANNELS, &error);
  /external/chromium_org/third_party/opus/src/doc/
trivial_example.c 41 #define CHANNELS 2
54 opus_int16 in[FRAME_SIZE*CHANNELS];
55 opus_int16 out[MAX_FRAME_SIZE*CHANNELS];
71 encoder = opus_encoder_create(SAMPLE_RATE, CHANNELS, APPLICATION, &err);
97 decoder = opus_decoder_create(SAMPLE_RATE, CHANNELS, &err);
114 unsigned char pcm_bytes[MAX_FRAME_SIZE*CHANNELS*2];
118 fread(pcm_bytes, sizeof(short)*CHANNELS, FRAME_SIZE, fin);
122 for (i=0;i<CHANNELS*FRAME_SIZE;i++)
146 for(i=0;i<CHANNELS*frame_size;i++)
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout)
    [all...]
  /external/libopus/doc/
trivial_example.c 41 #define CHANNELS 2
54 opus_int16 in[FRAME_SIZE*CHANNELS];
55 opus_int16 out[MAX_FRAME_SIZE*CHANNELS];
71 encoder = opus_encoder_create(SAMPLE_RATE, CHANNELS, APPLICATION, &err);
97 decoder = opus_decoder_create(SAMPLE_RATE, CHANNELS, &err);
114 unsigned char pcm_bytes[MAX_FRAME_SIZE*CHANNELS*2];
118 fread(pcm_bytes, sizeof(short)*CHANNELS, FRAME_SIZE, fin);
122 for (i=0;i<CHANNELS*FRAME_SIZE;i++)
146 for(i=0;i<CHANNELS*frame_size;i++)
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout)
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
AllocationTest.java 286 * <p>The color channels must be in the following order:
312 final int CHANNELS = 3; // yuv
315 assertTrue("YUV pixel must be at least 3 bytes large", CHANNELS <= yuvData.length);
317 float[] rgb = new float[CHANNELS];
334 for (int i = 0; i < CHANNELS; ++i) {
    [all...]
ImageReaderTest.java 428 final int CHANNELS = 3; // yuv
    [all...]

Completed in 205 milliseconds