Searched refs:notify (Results 176 - 200 of 231) sorted by last modified time

12345678910

/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp277 const sp<AMessage> &notify, uint32_t flags,
279 : mNotify(notify),
891 sp<AMessage> notify = mNotify->dup(); local
892 notify->setInt32("what", kWhatMetadataDetected);
893 notify->post();
1154 sp<AMessage> notify = new AMessage(kWhatFetcherNotify, this); local
1155 notify->setString("uri", uri);
1156 notify->setInt32("switchGeneration", mSwitchGeneration);
1160 notify, this, uri, mCurBandwidthIndex, mSubtitleGeneration);
1743 sp<AMessage> notify local
276 LiveSession( const sp<AMessage> &notify, uint32_t flags, const sp<IMediaHTTPService> &httpService) argument
2227 sp<AMessage> notify = mNotify->dup(); local
2240 sp<AMessage> notify = mNotify->dup(); local
2257 sp<AMessage> notify = mNotify->dup(); local
2367 sp<AMessage> notify = mNotify->dup(); local
2376 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DLiveSession.h71 const sp<AMessage> &notify,
H A DPlaylistFetcher.cpp140 const sp<AMessage> &notify,
145 : mNotify(notify),
562 sp<AMessage> notify = mNotify->dup(); local
563 notify->setInt32("what", kWhatStarted);
564 notify->setInt32("err", err);
565 notify->post();
573 sp<AMessage> notify = mNotify->dup(); local
574 notify->setInt32("what", kWhatPaused);
575 notify->setInt32("seekMode",
579 notify
139 PlaylistFetcher( const sp<AMessage> &notify, const sp<LiveSession> &session, const char *uri, int32_t id, int32_t subtitleGeneration) argument
587 sp<AMessage> notify = mNotify->dup(); local
599 sp<AMessage> notify = mNotify->dup(); local
761 sp<AMessage> notify = mNotify->dup(); local
767 sp<AMessage> notify = mNotify->dup(); local
1810 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DPlaylistFetcher.h57 const sp<AMessage> &notify,
/frameworks/av/media/libstagefright/include/
H A DSDPLoader.h39 const sp<AMessage> &notify,
H A DSoftOMXComponent.h48 void notify(
/frameworks/av/media/libstagefright/omx/
H A DSimpleSoftOMXComponent.cpp448 notify(OMX_EventCmdComplete, OMX_CommandStateSet, state, NULL);
507 notify(OMX_EventCmdComplete, OMX_CommandFlush, OMX_ALL, NULL);
520 // which leads to flushing ports. At this time, it should be ok to notify
523 notify(OMX_EventError, OMX_ErrorUndefined, 0, 0);
551 notify(OMX_EventCmdComplete, OMX_CommandFlush, portIndex, NULL);
608 notify(OMX_EventCmdComplete, OMX_CommandStateSet, mState, NULL);
620 notify(OMX_EventCmdComplete, OMX_CommandPortDisable, i, NULL);
630 notify(OMX_EventCmdComplete, OMX_CommandPortEnable, i, NULL);
H A DSoftOMXComponent.cpp88 void SoftOMXComponent::notify( function in class:android::SoftOMXComponent
H A DSoftVideoDecoderOMXComponent.cpp206 notify(OMX_EventPortSettingsChanged, kOutputPortIndex, 0, NULL);
224 notify(OMX_EventPortSettingsChanged, kOutputPortIndex,
/frameworks/av/media/libstagefright/rtsp/
H A DAAMRAssembler.cpp62 const sp<AMessage> &notify, bool isWide, const AString &params)
64 mNotifyMsg(notify),
61 AAMRAssembler( const sp<AMessage> &notify, bool isWide, const AString &params) argument
H A DAAMRAssembler.h34 const sp<AMessage> &notify, bool isWide,
H A DAAVCAssembler.cpp35 AAVCAssembler::AAVCAssembler(const sp<AMessage> &notify) argument
36 : mNotifyMsg(notify),
H A DAAVCAssembler.h32 AAVCAssembler(const sp<AMessage> &notify);
H A DAH263Assembler.cpp32 AH263Assembler::AH263Assembler(const sp<AMessage> &notify) argument
33 : mNotifyMsg(notify),
H A DAH263Assembler.h32 AH263Assembler(const sp<AMessage> &notify);
H A DAMPEG2TSAssembler.cpp37 const sp<AMessage> &notify,
40 : mNotifyMsg(notify),
36 AMPEG2TSAssembler( const sp<AMessage> &notify, const char * , const AString & ) argument
H A DAMPEG2TSAssembler.h31 const sp<AMessage> &notify,
H A DAMPEG4AudioAssembler.cpp437 const sp<AMessage> &notify, const AString &params)
438 : mNotifyMsg(notify),
436 AMPEG4AudioAssembler( const sp<AMessage> &notify, const AString &params) argument
H A DAMPEG4AudioAssembler.h34 const sp<AMessage> &notify, const AString &params);
H A DAMPEG4ElementaryAssembler.cpp110 const sp<AMessage> &notify, const AString &desc, const AString &params)
111 : mNotifyMsg(notify),
109 AMPEG4ElementaryAssembler( const sp<AMessage> &notify, const AString &desc, const AString &params) argument
H A DAMPEG4ElementaryAssembler.h37 const sp<AMessage> &notify, const AString &desc,
H A DARTPConnection.cpp83 const sp<AMessage> &notify,
90 msg->setMessage("notify", notify);
202 CHECK(msg->findMessage("notify", &info->mNotifyMsg));
415 sp<AMessage> notify = s->mNotifyMsg->dup(); local
416 notify->setInt32("first-rtp", true);
417 notify->post();
501 sp<AMessage> notify = s->mNotifyMsg->dup(); local
502 notify->setInt32("first-rtcp", true);
503 notify
79 addStream( int rtpSocket, int rtcpSocket, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify, bool injected) argument
[all...]
H A DARTPConnection.h40 const sp<AMessage> &notify,
H A DARTPSession.cpp85 sp<AMessage> notify = new AMessage(kWhatAccessUnitComplete, this); local
86 notify->setSize("track-index", mTracks.size() - 1);
89 rtpSocket, rtcpSocket, mDesc, i, notify, false /* injected */);
H A DARTPSource.cpp43 const sp<AMessage> &notify)
52 mNotify(notify) {
59 mAssembler = new AAVCAssembler(notify);
62 mAssembler = new AMPEG4AudioAssembler(notify, params);
65 mAssembler = new AH263Assembler(notify);
68 mAssembler = new AAMRAssembler(notify, false /* isWide */, params);
70 mAssembler = new AAMRAssembler(notify, true /* isWide */, params);
73 mAssembler = new AMPEG4ElementaryAssembler(notify, desc, params);
76 mAssembler = new ARawAudioAssembler(notify, desc.c_str(), params);
78 mAssembler = new AMPEG2TSAssembler(notify, des
40 ARTPSource( uint32_t id, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify) argument
98 sp<AMessage> notify = mNotify->dup(); local
[all...]

Completed in 232 milliseconds

12345678910