/external/sonic/doc/ |
post | 5 ../samples/sonic.wav 6 ../samples/soundstretch.wav" 18 rm ../samples/*.wav index.html
|
/frameworks/av/media/libstagefright/codecs/aacdec/ |
SoftAAC2.h | 89 bool outputDelayRingBufferPutSamples(INT_PCM *samples, int numSamples); 90 int32_t outputDelayRingBufferGetSamples(INT_PCM *samples, int numSamples);
|
/frameworks/av/media/libstagefright/codecs/flac/enc/ |
SoftFlacEncoder.h | 81 size_t bytes, unsigned samples, unsigned current_frame, void *client_data); 85 size_t bytes, unsigned samples, unsigned current_frame); 87 // FLAC takes samples aligned on 32bit boundaries, use this buffer for the conversion
|
/frameworks/av/services/audioflinger/ |
AudioResamplerSinc.h | 55 int32_t* out, uint32_t phase, const int16_t *samples, uint32_t vRL); 61 int32_t lerp, const int16_t* samples);
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/ |
ContrastRatioFilterTest.java | 17 package androidx.media.filterfw.samples.simplecamera; 24 import androidx.media.filterfw.samples.simplecamera.ContrastRatioFilter;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
SampleSelectionPage.java | 109 // Update samples list if the SDK target has changed (or if it hasn't yet 140 if (mValues.samples != null && mValues.samples.size() > 0) { 141 Object[] samples = mValues.samples.toArray(); local 142 mTableViewer.setInput(samples); 145 selectSample(mValues.samples.get(0).getSecond()); 237 // Ensure that when creating samples, the Finish button isn't enabled until 248 if (mValues.samples == null || mValues.samples.size() == 0) [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/ |
ListSubListTester.java | 112 subList.add(samples.e3); 113 expectAdded(0, samples.e3); 120 subList.set(0, samples.e3); 122 expected.set(0, samples.e3); 130 getList().set(0, samples.e3); 133 Collections.singletonList(samples.e3), subList); 140 subList.remove(samples.e2); 150 subList.add(0, samples.e3); 151 expectAdded(2, samples.e3); 158 subList.set(0, samples.e3) [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListSubListTester.java | 116 subList.add(samples.e3); 117 expectAdded(0, samples.e3); 124 subList.set(0, samples.e3); 126 expected.set(0, samples.e3); 134 getList().set(0, samples.e3); 137 Collections.singletonList(samples.e3), subList); 144 subList.remove(samples.e2); 154 subList.add(0, samples.e3); 155 expectAdded(2, samples.e3); 162 subList.set(0, samples.e3) [all...] |
MapEqualsTester.java | 50 Entry<K, V> e3 = getSubjectGenerator().samples().e3; 62 entries.add(entry(null, samples.e3.getValue())); 73 entries.add(entry(null, samples.e3.getValue())); 86 entries.add(entry(samples.e3.getKey(), null)); 97 entries.add(entry(samples.e3.getKey(), null));
|
/external/flac/libFLAC/ |
ogg_encoder_aspect.c | 111 FLAC__StreamEncoderWriteStatus FLAC__ogg_encoder_aspect_write_callback_wrapper(FLAC__OggEncoderAspect *aspect, const FLAC__byte buffer[], size_t bytes, unsigned samples, unsigned current_frame, FLAC__bool is_last_block, FLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data) 114 * This depends on the behavior of FLAC__StreamEncoder that 'samples' 117 const FLAC__bool is_metadata = (samples == 0); 137 packet.granulepos = aspect->samples_written + samples; 185 * FLAC__ASSERT(total_samples_estimate == 0 || total_samples_estimate == aspect->samples_written + samples); 194 /*@@@ can't figure out a way to pass a useful number for 'samples' to the write_callback, so we'll just pass 0 */ 212 else if(is_metadata && current_frame == 0 && samples == 0 && bytes == 4 && 0 == memcmp(buffer, FLAC__STREAM_SYNC_STRING, sizeof(FLAC__STREAM_SYNC_STRING))) { 224 aspect->samples_written += samples;
|
md5.c | 274 static void format_input_(FLAC__multibyte *mbuf, const FLAC__int32 * const signal[], unsigned channels, unsigned samples, unsigned bytes_per_sample) 290 for (sample = 0; sample < samples; sample++) 295 for (sample = 0; sample < samples; sample++) { 302 for (sample = 0; sample < samples; sample++) { 311 for (sample = 0; sample < samples; sample++) { 322 for (sample = 0; sample < samples; sample++) { 336 for (sample = 0; sample < samples; sample++) 341 for (sample = 0; sample < samples; sample++) { 348 for (sample = 0; sample < samples; sample++) { 357 for (sample = 0; sample < samples; sample++) [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
AbstractContainerTester.java | 39 protected SampleElements<E> samples; field in class:AbstractContainerTester 44 samples = this.getSubjectGenerator().samples(); 240 return MinimalCollection.of(samples.e3, samples.e4);
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Dome.java | 79 * The number of samples along the radial. 101 * The number of samples along the radial. 125 * The number of samples along the radial. 151 * Get the number of samples radially around the main axis of the dome. 176 * @param radialSamples the new number of radial samples of the dome. 305 for (int samples = 0; samples < radialSamples; samples++, index += 3) { 307 ib.put((short) (bottomPlaneStart + samples)); 308 ib.put((short) (bottomPlaneStart + samples + 1)) [all...] |
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
AACTrackImpl.java | 77 private List<ByteBuffer> samples; field in class:AACTrackImpl 100 samples = new LinkedList<ByteBuffer>(); 106 double duration = samples.size() / packetsPerSecond; 110 for (int i = 0; i < samples.size(); i++) { 111 int size = samples.get(i).capacity(); 204 return samples; 275 samples.add(ByteBuffer.wrap(data));
|
Amf0Track.java | 53 LinkedList<ByteBuffer> samples = new LinkedList<ByteBuffer>(); local 55 samples.add(ByteBuffer.wrap(bytes)); 57 return samples; 91 // AMF0 tracks do not have Sync Samples
|
/external/ceres-solver/internal/ceres/ |
polynomial.cc | 332 Vector FindInterpolatingPolynomial(const vector<FunctionSample>& samples) { 333 const int num_samples = samples.size(); 336 if (samples[i].value_is_valid) { 339 if (samples[i].gradient_is_valid) { 351 const FunctionSample& sample = samples[i]; 372 void MinimizeInterpolatingPolynomial(const vector<FunctionSample>& samples, 377 const Vector polynomial = FindInterpolatingPolynomial(samples); 379 for (int i = 0; i < samples.size(); ++i) { 380 const FunctionSample& sample = samples[i];
|
/external/libvpx/libvpx/ |
rate_hist.c | 31 int samples; member in struct:rate_hist 42 // Determine the number of samples in the buffer. Use the file's framerate 45 hist->samples = cfg->rc_buf_sz * 5 / 4 * fps->num / fps->den / 1000; 48 if (hist->samples == 0) 49 hist->samples = 1; 54 hist->pts = calloc(hist->samples, sizeof(*hist->pts)); 55 hist->sz = calloc(hist->samples, sizeof(*hist->sz)); 84 int idx = hist->frames++ % hist->samples; 94 for (i = hist->frames; i > 0 && hist->frames - i < hist->samples; i--) { 95 const int i_idx = (i - 1) % hist->samples; [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/ |
rate_hist.c | 31 int samples; member in struct:rate_hist 42 // Determine the number of samples in the buffer. Use the file's framerate 45 hist->samples = cfg->rc_buf_sz * 5 / 4 * fps->num / fps->den / 1000; 48 if (hist->samples == 0) 49 hist->samples = 1; 54 hist->pts = calloc(hist->samples, sizeof(*hist->pts)); 55 hist->sz = calloc(hist->samples, sizeof(*hist->sz)); 84 int idx = hist->frames++ % hist->samples; 94 for (i = hist->frames; i > 0 && hist->frames - i < hist->samples; i--) { 95 const int i_idx = (i - 1) % hist->samples; [all...] |
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/ |
AppNavHomeActivity.java | 34 * Home activity for app navigation code samples. 58 ArrayList<SampleInfo> samples = new ArrayList<SampleInfo>(); local 70 samples.add(sample); 73 return samples;
|
/development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/ |
AppNavHomeActivity.java | 34 * Home activity for app navigation code samples. 58 ArrayList<SampleInfo> samples = new ArrayList<SampleInfo>(); local 70 samples.add(sample); 73 return samples;
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
MultisetTestSuiteBuilder.java | 172 public SampleElements<E> samples() { method in class:MultisetTestSuiteBuilder.ElementSetGenerator 173 return gen.samples(); 205 public SampleElements<Multiset.Entry<E>> samples() { method in class:MultisetTestSuiteBuilder.EntrySetGenerator 206 SampleElements<E> samples = gen.samples(); local 208 Multisets.immutableEntry(samples.e0, 3), 209 Multisets.immutableEntry(samples.e1, 4), 210 Multisets.immutableEntry(samples.e2, 1), 211 Multisets.immutableEntry(samples.e3, 5), 212 Multisets.immutableEntry(samples.e4, 2)) 264 public SampleElements<E> samples() { method in class:MultisetTestSuiteBuilder.ReserializedMultisetGenerator [all...] |
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/ |
TestBNF.java | 229 String[] samples = {"a'b'c d #abc\r e", "'a '123 321", local 231 for (int i = 0; i < samples.length; ++i) { 232 t.setSource(samples[i]);
|
/external/libvorbis/lib/ |
vorbisfile.c | 454 /* less than zero? This is a stream with samples trimmed off 724 int i,samples; local 746 samples=vorbis_synthesis_pcmout(&vf->vd,NULL); 748 granulepos-=samples; 1652 long samples=vorbis_synthesis_pcmout(&vf->vd,NULL); local 1853 long samples; local 2009 long samples=vorbis_synthesis_pcmout(&vf->vd,&pcm); local 2109 int samples=vorbis_synthesis_pcmout(vd,&pcm); local 2126 int samples=vorbis_synthesis_lapout(&vf->vd,&pcm); local [all...] |
/development/samples/SupportPercentDemos/ |
Android.mk | 17 # Build the samples. 22 LOCAL_MODULE_TAGS := samples
|
/external/aac/libPCMutils/include/ |
limiter.h | 166 * gain_delay: delay [samples] with which the gains in pGain shall be applied * 168 * samples: input/output buffer containing interleaved samples * 170 * nSamples: number of samples per channel * 174 INT_PCM* samples, 184 * returns: exact delay caused by the limiter in samples *
|