Searched refs:data (Results 1 - 25 of 1729) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h504 XAuint32 data; member in struct:XAEngineOption_
1302 XAuint8 data[1]; member in struct:XAMetadataInfo_
2440 XAuint64 data
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h258 /** URI-based data locator definition where locatorType must be SL_DATALOCATOR_URI*/
264 /** Address-based data locator definition where locatorType must be SL_DATALOCATOR_ADDRESS*/
278 /** IODevice-based data locator definition where locatorType must be SL_DATALOCATOR_IODEVICE*/
286 /** OutputMix-based data locator definition where locatorType must be SL_DATALOCATOR_OUTPUTMIX*/
293 /** BufferQueue-based data locator definition where locatorType must be SL_DATALOCATOR_BUFFERQUEUE*/
299 /** MidiBufferQueue-based data locator definition where locatorType must be SL_DATALOCATOR_MIDIBUFFERQUEUE*/
312 /** MIME-type-based data format definition where formatType must be SL_DATAFORMAT_MIME*/
319 /* Byte order of a block of 16- or 32-bit data */
355 /** PCM-type-based data format definition where formatType must be SL_DATAFORMAT_PCM*/
708 /* Meta data extractio
756 SLuint8 data[1]; member in struct:SLMetadataInfo_
2748 SLuint32 data; member in struct:SLEngineOption_
[all...]
/frameworks/wilhelm/src/
H A DAndroid.mk72 data.c \
H A Dentry.c65 threadSafe = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize
68 lossOfControlGlobal = SL_BOOLEAN_FALSE != (SLboolean) option->data; // normalize
71 SL_LOGE("unknown engine option: feature=%u data=%u",
72 option->feature, option->data);
/frameworks/wilhelm/src/android/
H A DAacBqToPcmCbRenderer.cpp33 * @param data pointer to the compressed audio data
34 * @param offset offset in bytes relative to data of where the frame is supposed to start
35 * @param size the size in bytes of the data block starting at data
39 static size_t getAdtsFrameSize(const uint8_t *data, off64_t offset, size_t size) { argument
48 const uint8_t *syncword = data + offset;
54 const uint8_t protectionAbsent = data[offset+1] & 0x1;
56 const uint8_t* header = data + offset + 3;
77 * @param data pointe
84 validateBufferStartEndOnFrameBoundaries(void* data, size_t size) argument
[all...]
H A DAudioPlayer_to_android.cpp106 // Callback associated with a AudioToCbRenderer of an SL ES AudioPlayer that gets its data
107 // from a URI or FD, to write the decoded audio data to a buffer queue
108 static size_t adecoder_writeToBufferQueue(const uint8_t *data, size_t size, CAudioPlayer* ap) { argument
118 // push decoded data to the buffer queue
129 // room to consume the whole or rest of the decoded data in one shot
131 // consume data but no callback to the BufferQueue interface here
132 memcpy(pDest, data, size);
135 // push as much as possible of the decoded data into the buffer queue
147 // consume data
148 memcpy(pDest, data, sizeConsume
[all...]
H A DBufferQueueSource.cpp35 SL_ANDROIDBUFFERQUEUEEVENT_PROCESSED // item data
57 ssize_t BufferQueueSource::readAt(off64_t offset, void *data, size_t size) { argument
58 SL_LOGD("BufferQueueSource::readAt(offset=%lld, data=%p, size=%d)", offset, data, size);
83 // (either because there was a command with no data, or all the data has been consumed)
86 // consume events when starting to read data from a buffer for the first time
90 // EOS has no associated data
122 // consume data: copy to given destination
124 memcpy(data, pSr
[all...]
H A DBufferQueueSource.h23 // to the item key (SLuint32), the item size (SLuint32), and the item data (mask on SLuint32)
28 // a Stagefright DataSource that pulls data from an AndroidBufferQueue
40 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
47 // the Android Buffer Queue from which data is consumed
H A Dandroid_AudioToCbRenderer.cpp69 (const uint8_t *)mDecodeBuffer->data()
76 // decoded data is not being consumed, skip this buffer
H A Dandroid_Effect.cpp207 *(int32_t *)p->data = param;
209 *((int32_t *)p->data + 1) = param2;
216 memcpy(pValue, p->data + p->psize, p->vsize);
233 *(int32_t *)p->data = param;
235 *((int32_t *)p->data + 1) = param2;
238 memcpy(p->data + p->psize, pValue, p->vsize);
582 *(int32_t *)p->data = param;
584 memcpy(p->data + p->psize, pValue, p->vsize);
602 *(int32_t *)p->data = param;
608 memcpy(pValue, p->data
[all...]
H A Dandroid_GenericPlayer.cpp285 void GenericPlayer::notify(const char* event, int data, bool async) { argument
286 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
289 msg->setInt32(event, (int32_t)data);
H A Dandroid_defs.h24 // audio player, playing from a URI or FD data source
26 // audio player, playing PCM buffers in a buffer queue data source
28 // audio player, playing transport stream packets in an Android buffer queue data source
30 // audio player, decoding from a URI or FD data source to a buffer queue data sink in PCM format
32 // audio video player, playing transport stream packets in an Android buffer queue data source
34 // audio video player, playing from a URI or FD data source
36 // audio recorder, recording from an input device data source, streamed into a
37 // PCM buffer queue data sink
39 // audio player, decoding from an Android buffer queue with ADTS data,
[all...]
/frameworks/wilhelm/src/android/include/
H A DAacBqToPcmCbRenderer.h27 // Class to receive AAC ADTS data through an Android Buffer Queue, decode it and output
30 // of the data source creation, but all other behavior remains the same (e.g. PCM format metadata)
41 // This is for instance used whenever ADTS data is being enqueued through an
42 // SL / XA AndroidBufferQueue interface so only parseable ADTS data goes in
44 static SLresult validateBufferStartEndOnFrameBoundaries(void* data, size_t size);
/frameworks/wilhelm/src/android/util/
H A DAacAdtsExtractor.cpp98 // difference with framework's AAC Extractor: we have already validated the data
99 // upon enqueueing, so no need to sniff the data:
138 // but in this case we were told the total size of the data source and so an EOS
284 ssize_t readSize = mDataSource->readAt(mOffset + ADTS_HEADER_LENGTH, buffer->data(),
/frameworks/wilhelm/src/itf/
H A DIMIDIMessage.c22 static SLresult IMIDIMessage_SendMessage(SLMIDIMessageItf self, const SLuint8 *data, argument
27 if (NULL == data) {
/frameworks/wilhelm/tests/examples/
H A DslesTestDecodeAac.cpp23 OpenSL ES test slesTestDecodeAac: decodes a file containing AAC ADTS data
26 Enqueueing initial empty buffers to receive decoded PCM data 0 1
27 Enqueueing initial full buffers of encoded ADTS data 0 1
35 Project / Import raw data
80 /* Local storage for decoded PCM audio data */
83 /* destination for decoded data */
95 * are SLuint32, but it is saved in the data field of a SLMetadataInfo, hence the larger size.
117 SLboolean createRaw = SL_BOOLEAN_TRUE; // whether to create a .raw file containing PCM data
172 printf("PrefetchEventCallback: Error while prefetching data, exiting\n");
196 SLint8* pDataBase; // Base address of local audio data storag
[all...]
H A DslesTestDecodeToBuffQueue.cpp26 Project / Import raw data
60 /* Local storage for decoded audio data */
63 /* destination for decoded data */
73 * are SLuint32, but it is saved in the data field of a SLMetadataInfo, hence the larger size.
114 SLint8* pDataBase; // Base address of local audio data storage
115 SLint8* pData; // Current address of local audio data storage
139 fprintf(stdout, "PrefetchEventCallback: Error while prefetching data, exiting\n");
187 /* Save the decoded data */
194 /* Increase data pointer by buffer size */
252 fprintf(stdout, "sample rate = %dHz, ", *((SLuint32*)pcmMetaData->data));
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dengine.c88 options[0].data = 0;
106 options[0].data = (SLuint32) SL_BOOLEAN_TRUE;
108 options[1].data = (SLuint32) SL_BOOLEAN_FALSE;
H A Dxaplay.c39 char data[MPEG2TS_PACKET_SIZE]; member in struct:__anon1838
112 printf("PrefetchEventCallback: Error while prefetching data, exiting\n");
165 // enqueue the .ts data directly from mapped memory, so ignore the empty buffer pBufferData
199 // pure data with no items
205 // enqueue the optional data and optional items; there is always at least one or the other
230 case 0: // FIXME There's a private declaration '#define XA_DOMAINTYPE_CONTAINER 0' in src/data.h
300 fprintf(stderr, " -a Use Android buffer queue to supply data, default is URI\n");
579 // wait for prefetch status callback to indicate either sufficient data or error
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DGuidedStepFragment.java1217 return found && typedValue.type == TypedValue.TYPE_INT_BOOLEAN && typedValue.data != 0;
H A DGuidedStepSupportFragment.java1219 return found && typedValue.type == TypedValue.TYPE_INT_BOOLEAN && typedValue.data != 0;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DControlBarPresenter.java36 * The data type expected by this presenter.
55 BoundData data);
63 BoundData data);
248 BoundData data = (BoundData) item;
249 if (vh.mAdapter != data.adapter) {
250 vh.mAdapter = data.adapter;
255 vh.mPresenter = data.presenter;
256 vh.mData = data;
54 onControlSelected(Presenter.ViewHolder controlViewHolder, Object item, BoundData data) argument
62 onControlClicked(Presenter.ViewHolder controlViewHolder, Object item, BoundData data) argument
H A DPlaybackControlsPresenter.java43 * The data type expected by this presenter.
294 BoundData data = (BoundData) item;
297 if (vh.mMoreActionsAdapter != data.secondaryActionsAdapter) {
298 vh.mMoreActionsAdapter = data.secondaryActionsAdapter;
H A DPlaybackControlsRow.java603 return outValue.data;
614 TypedArray array = context.getTheme().obtainStyledAttributes(outValue.data,
H A DPlaybackControlsRowPresenter.java166 ControlBarPresenter.BoundData data) {
167 ViewHolder vh = ((BoundData) data).mRowViewHolder;
180 ControlBarPresenter.BoundData data) {
181 ViewHolder vh = ((BoundData) data).mRowViewHolder;

Completed in 1133 milliseconds

1234567891011>>