Searched defs:id (Results 1 - 25 of 563) sorted by path

1234567891011>>

/frameworks/av/include/media/
H A DAudioEffect.h289 int32_t id() const { return mId; } function in class:android::AudioEffect
/frameworks/av/include/media/stagefright/foundation/
H A DAHandler.h33 ALooper::handler_id id() const { function in struct:android::AHandler
47 void setID(ALooper::handler_id id) { argument
48 mID = id;
/frameworks/av/media/common_time/
H A DICommonClock.cpp167 virtual status_t getTimelineID(uint64_t* id) { argument
174 *id = static_cast<uint64_t>(reply.readInt64());
336 uint64_t id; local
337 status_t status = getTimelineID(&id);
340 reply->writeInt64(static_cast<int64_t>(id));
H A DICommonTimeConfig.cpp124 virtual status_t getMasterElectionGroupId(uint64_t *id) { argument
134 *id = static_cast<uint64_t>(reply.readInt64());
141 virtual status_t setMasterElectionGroupId(uint64_t id) { argument
144 data.writeInt64(id);
385 uint64_t id; local
386 status_t status = getMasterElectionGroupId(&id);
389 reply->writeInt64(id);
396 uint64_t id = static_cast<uint64_t>(data.readInt64()); local
397 status_t status = setMasterElectionGroupId(id);
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp102 int id; // audio session ID member in struct:preproc_session_s
758 session->id = 0;
1120 sSessions[i].id = sessionId;
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp786 int id)
790 return aps->registerEffect(desc, io, strategy, session, id);
793 status_t AudioSystem::unregisterEffect(int id) argument
797 return aps->unregisterEffect(id);
800 status_t AudioSystem::setEffectEnabled(int id, bool enabled) argument
804 return aps->setEffectEnabled(id, enabled);
782 registerEffect(const effect_descriptor_t *desc, audio_io_handle_t io, uint32_t strategy, int session, int id) argument
H A DIAudioFlinger.cpp613 audio_unique_id_t id = AUDIO_SESSION_ALLOCATE; local
615 id = reply.readInt32();
617 return id;
704 int *id,
730 if (id != NULL) {
731 *id = tmp;
1249 int id; local
1253 &status, &id, &enabled);
1255 reply->writeInt32(id);
697 createEffect( effect_descriptor_t *pDesc, const sp<IEffectClient>& client, int32_t priority, audio_io_handle_t output, int sessionId, status_t *status, int *id, int *enabled) argument
H A DIAudioPolicyService.cpp409 int id)
417 data.writeInt32(id);
422 virtual status_t unregisterEffect(int id) argument
426 data.writeInt32(id);
431 virtual status_t setEffectEnabled(int id, bool enabled) argument
435 data.writeInt32(id);
973 int id = data.readInt32(); local
978 id)));
984 int id = data.readInt32(); local
985 reply->writeInt32(static_cast <int32_t>(unregisterEffect(id)));
405 registerEffect(const effect_descriptor_t *desc, audio_io_handle_t io, uint32_t strategy, int session, int id) argument
991 int id = data.readInt32(); local
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerStreamListener.cpp32 ALooper::handler_id id)
34 mTargetID(id),
30 NuPlayerStreamListener( const sp<IStreamSource> &source, ALooper::handler_id id) argument
/frameworks/av/media/libstagefright/
H A DACodec.cpp454 msg->setTarget(id());
459 sp<AMessage> msg = new AMessage(kWhatSetParameters, id());
466 msg->setTarget(id());
472 msg->setTarget(id());
477 (new AMessage(kWhatCreateInputSurface, id()))->post();
481 (new AMessage(kWhatSignalEndOfInputStream, id()))->post();
485 (new AMessage(kWhatStart, id()))->post();
490 (new AMessage(kWhatFlush, id()))->post();
494 (new AMessage(kWhatResume, id()))->post();
498 sp<AMessage> msg = new AMessage(kWhatShutdown, id());
4064 addBuffer( IOMX::buffer_id id, const sp<ABuffer> &buffer) argument
[all...]
H A DMPEG4Extractor.cpp683 uint8_t id; local
692 if (mDataSource->readAt(data_offset, &id, 1) < 1) {
698 while (sinf && (sinf->IPMPDescriptorID != id)) {
1053 // tenc box contains 1 byte version, 3 byte flags, 3 byte default algorithm id, one byte
2146 int32_t id; local
2151 id = U32_AT(&buffer[20]);
2156 id = U32_AT(&buffer[12]);
2162 mLastTrack->meta->setInt32(kKeyTrackID, id);
H A DMPEG4Writer.cpp974 int32_t id = 1; local
976 it != mTracks.end(); ++it, ++id) {
2866 mOwner->writeInt32(mTrackId); // track id starts with 1
H A DTimedEventQueue.cpp150 TimedEventQueue::event_id *id = local
153 if (event->eventID() != *id) {
157 *id = 0;
162 bool TimedEventQueue::cancelEvent(event_id id) { argument
163 if (id == 0) {
167 cancelEvents(&MatchesEventID, &id, true /* stopAfterFirstMatch */);
169 // if MatchesEventID found a match, it will have set id to 0
172 return id == 0;
283 // The event w/ this id may have been cancelled while we're
303 event_id id, boo
302 removeEventFromQueue_l( event_id id, bool *wakeLocked) argument
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dsp_dec.cpp141 id = pointer to an array whose contents are of type char
186 char *id)
214 s->complexityCounter = getCounterId(id);
246 Word8 * id)
249 OSCL_UNUSED_ARG(id);
245 GSMInitDecode(void **state_data, Word8 * id) argument
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dsp_enc.cpp113 id = pointer to an array whose contents are of type char
156 char *id)
173 s->complexityCounter = getCounterId(id);
217 Word8 *id)
221 OSCL_UNUSED_ARG(id);
215 GSMInitEncode(void **state_data, Flag dtx, Word8 *id) argument
/frameworks/av/media/libstagefright/codecs/avc/common/include/
H A Davcapi_common.h137 uint32 id; member in struct:tagAVCFrameIO
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_storage.c131 u32 id; local
139 id = pSeqParamSet->seqParameterSetId;
141 /* seq parameter set with id not used before -> allocate memory */
142 if (pStorage->sps[id] == NULL)
144 ALLOCATE(pStorage->sps[id], 1, seqParamSet_t);
145 if (pStorage->sps[id] == NULL)
148 /* sequence parameter set with id equal to id of active sps */
149 else if (id == pStorage->activeSpsId)
159 FREE(pStorage->sps[id]
214 u32 id; local
[all...]
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp120 char id[3]; member in struct:android::id3_header
133 if (memcmp(header.id, "ID3", 3)) {
394 ID3::Iterator::Iterator(const ID3 &parent, const char *id) argument
400 if (id) {
401 mID = strdup(id);
428 void ID3::Iterator::getID(String8 *id) const {
429 id->setTo("");
436 id->setTo((const char *)&mParent.mData[mOffset], 3);
438 id->setTo((const char *)&mParent.mData[mOffset], 4);
444 id
473 getString(String8 *id, String8 *comment) const argument
483 getstring(String8 *id, bool otherdata) const argument
647 char id[4]; local
703 char id[5]; local
750 String8 id; local
[all...]
H A Dtestid3.cpp83 String8 id; local
84 it.getID(&id);
86 CHECK(id.length() > 0);
87 if (id[0] == 'T') {
91 printf(" found text frame '%s': %s\n", id.string(), text.string());
93 printf(" found frame '%s'.\n", id.string());
/frameworks/av/media/libstagefright/include/
H A DTimedEventQueue.h53 void setEventID(event_id id) { argument
54 mEventID = id;
103 bool cancelEvent(event_id id);
148 sp<Event> removeEventFromQueue_l(event_id id, bool *wakeLocked);
/frameworks/av/media/libstagefright/omx/
H A DGraphicBufferSource.cpp157 new AMessage(kWhatRepeatLastFrame, mReflector->id());
185 mLooper->unregisterHandler(mReflector->id());
284 int id = codecBuffer.mBuf; local
285 if (mBufferSlot[id] != NULL &&
286 mBufferSlot[id]->handle == codecBuffer.mGraphicBuffer->handle) {
288 cbi, id, mBufferSlot[id]->handle);
290 if (id == mLatestSubmittedBufferId) {
293 mConsumer->releaseBuffer(id, codecBuffer.mFrameNumber,
516 sp<AMessage> msg = new AMessage(kWhatRepeatLastFrame, mReflector->id());
[all...]
H A DOMXNodeInstance.cpp1322 void OMXNodeInstance::addActiveBuffer(OMX_U32 portIndex, OMX::buffer_id id) { argument
1325 active.mID = id;
1334 OMX_U32 portIndex, OMX::buffer_id id) {
1337 && mActiveBuffers[i].mID == id) {
1347 CLOGW("Attempt to remove an active buffer [%#x] we know nothing about...", id);
1333 removeActiveBuffer( OMX_U32 portIndex, OMX::buffer_id id) argument
/frameworks/av/media/libstagefright/rtsp/
H A DARTPConnection.cpp85 sp<AMessage> msg = new AMessage(kWhatAddStream, id());
96 sp<AMessage> msg = new AMessage(kWhatRemoveStream, id());
236 sp<AMessage> msg = new AMessage(kWhatPollStreams, id());
588 uint32_t id = u32at(&data[4]); local
590 sp<ARTPSource> source = findSource(s, id);
606 uint32_t id = u32at(&data[4]); local
612 id,
617 sp<ARTPSource> source = findSource(s, id);
642 sp<AMessage> msg = new AMessage(kWhatInjectPacket, id());
H A DARTPSource.cpp41 uint32_t id,
44 : mID(id),
40 ARTPSource( uint32_t id, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify) argument
/frameworks/av/media/libstagefright/webm/
H A DWebmElement.cpp76 WebmElement::WebmElement(uint64_t id, uint64_t size) argument
77 : mId(id), mSize(size) {
135 WebmUnsigned::WebmUnsigned(uint64_t id, uint64_t value) argument
136 : WebmElement(id, sizeOf(value)), mValue(value) {
145 WebmFloat::WebmFloat(uint64_t id, double value) argument
146 : WebmElement(id, sizeof(double)), mValue(value) {
149 WebmFloat::WebmFloat(uint64_t id, float value) argument
150 : WebmElement(id, sizeof(float)), mValue(value) {
169 WebmBinary::WebmBinary(uint64_t id, const sp<ABuffer> &ref) argument
170 : WebmElement(id, re
179 WebmString(uint64_t id, const char *str) argument
231 WebmMaster(uint64_t id, const List<sp<WebmElement> >& children) argument
235 WebmMaster(uint64_t id) argument
270 SeekEntry(uint64_t id, uint64_t off) argument
[all...]

Completed in 1964 milliseconds

1234567891011>>