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

1 2

  /system/media/wilhelm/tests/sandbox/
configbq.c 30 SLuint8 bitsPerSample;
101 format->milliHz / 1000, format->bitsPerSample);
111 format_pcm.bitsPerSample = format->bitsPerSample;
112 format_pcm.containerSize = format->bitsPerSample;
150 float seconds = (((i * 8) / (format->bitsPerSample * format->numChannels)) * 1000.0) /
155 if (8 == format->bitsPerSample) {
159 assert(16 == format->bitsPerSample);
169 if (8 == format->bitsPerSample) {
172 assert(16 == format->bitsPerSample);
    [all...]
playbq.c 42 SLuint32 bitsPerSample = 16;
86 if (bitsPerSample == 8) {
130 bitsPerSample = 8;
244 format_pcm.bitsPerSample = bitsPerSample;
245 format_pcm.containerSize = format_pcm.bitsPerSample;
332 if (bitsPerSample == 8) {
srcsink.c 46 format_pcm.bitsPerSample = 16;
135 format_pcm.bitsPerSample = 17;
140 format_pcm.bitsPerSample = 24;
145 format_pcm.bitsPerSample = 16;
intbufq.c 115 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
  /external/webkit/Source/WebKit/mac/Carbon/
CarbonUtils.m 34 extern CGImageRef _NSCreateImageRef( unsigned char *const bitmapData[5], int pixelsWide, int pixelsHigh, int bitsPerSample, int samplesPerPixel, int bitsPerPixel, int bytesPerRow, BOOL isPlanar, BOOL hasAlpha, NSString *colorSpaceName, CGColorSpaceRef customColorSpace, id sourceObj);
124 [rep bitsPerSample], [rep samplesPerPixel], [rep bitsPerPixel],
  /frameworks/base/core/java/android/speech/srec/
WaveHeader.java 30 * <li> bitsPerSample - usually 16 for PCM, 8 for ALAW, or 8 for ULAW.
70 * @param bitsPerSample usually 16 for PCM, 8 for ULAW or 8 for ALAW.
73 public WaveHeader(short format, short numChannels, int sampleRate, short bitsPerSample, int numBytes) {
77 mBitsPerSample = bitsPerSample;
148 * @param bitsPerSample number of bits per sample,
152 public WaveHeader setBitsPerSample(short bitsPerSample) {
153 mBitsPerSample = bitsPerSample;
272 "WaveHeader format=%d numChannels=%d sampleRate=%d bitsPerSample=%d numBytes=%d",
  /external/qemu/distrib/sdl-1.2.12/src/audio/ums/
SDL_umsaudio.c 231 long bitsPerSample;
262 bitsPerSample = 8;
269 bitsPerSample = 8;
276 bitsPerSample = 16;
283 bitsPerSample = 16;
290 bitsPerSample = 16;
297 bitsPerSample = 16;
325 this->hidden->bytesPerSample = (bitsPerSample / 8) * spec->channels;
335 rc = UADSetBitsPerSample(this, bitsPerSample );
  /frameworks/base/core/java/android/speech/tts/
FileSynthesisCallback.java 208 short bitsPerSample = (short) (sampleSizeInBytes * 8);
224 header.putShort(bitsPerSample);
  /frameworks/base/media/libstagefright/
WAVExtractor.cpp 53 int32_t bitsPerSample,
253 int32_t bitsPerSample,
260 mBitsPerSample(bitsPerSample),
  /cts/tests/tests/nativemedia/src/
SLObjectCreationTest.cpp 161 formatPcmSnk.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
212 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
  /system/media/wilhelm/src/
data.c 399 switch (pDataFormat->mPCM.bitsPerSample) {
414 SL_LOGE("%s: bitsPerSample=%u", name, pDataFormat->mPCM.bitsPerSample);
419 if (pDataFormat->mPCM.containerSize < pDataFormat->mPCM.bitsPerSample) {
421 } else if (pDataFormat->mPCM.containerSize != pDataFormat->mPCM.bitsPerSample) {
425 SL_LOGE("%s: containerSize=%u, bitsPerSample=%u", name,
427 (unsigned) pDataFormat->mPCM.bitsPerSample);
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_tiff.cpp 710 int bitsPerSample = 8; // TODO support 16 bit
770 bitsPerSample = m_strm.GetPos();
790 TIFF_TYPE_SHORT, channels, bitsPerSample );
  /external/qemu/distrib/sdl-1.2.12/src/video/quartz/
SDL_QuartzWM.m 51 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: w pixelsHigh: h bitsPerSample: 1 samplesPerPixel: 2 hasAlpha: YES isPlanar: YES colorSpaceName: NSDeviceBlackColorSpace bytesPerRow: (w+7)/8 bitsPerPixel: 0 ] autorelease ];
429 imgrep = [ [ [ NSBitmapImageRep alloc ] initWithBitmapDataPlanes: NULL pixelsWide: icon->w pixelsHigh: icon->h bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES isPlanar: NO colorSpaceName: NSDeviceRGBColorSpace bytesPerRow: 4*icon->w bitsPerPixel: 32 ] autorelease ];
  /system/media/wilhelm/tests/examples/
slesTestRecBuffQueue.cpp 207 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
slesTestSawtoothBufferQueue.cpp 172 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
slesTestDecodeToBuffQueue.cpp 350 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
slesTestFeedback.cpp 304 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
  /external/sonivox/arm-wt-22k/lib_src/
eas_mdls.c 223 EAS_U16 bitsPerSample;
    [all...]
  /external/quake/quake/src/WinQuake/
snd_android.cpp 159 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
  /system/media/wilhelm/tests/automated/
BufferQueue_test.cpp 123 pcm.bitsPerSample = SL_PCMSAMPLEFORMAT_FIXED_16;
  /system/media/wilhelm/src/android/
AudioPlayer_to_android.cpp     [all...]
  /external/webkit/Source/WebCore/platform/chromium/
ThemeChromiumMac.mm 113 bitsPerSample:8
  /development/ndk/platforms/android-14/include/OMXAL/
OpenMAXAL.h 385 XAuint32 bitsPerSample;
    [all...]
  /development/ndk/platforms/android-14/include/SLES/
OpenSLES.h 360 SLuint32 bitsPerSample;
    [all...]
  /development/ndk/platforms/android-9/include/SLES/
OpenSLES.h 360 SLuint32 bitsPerSample;
    [all...]

Completed in 632 milliseconds

1 2