Searched defs:notify (Results 26 - 50 of 52) sorted by relevance

123

/frameworks/av/cmds/stagefright/
H A Dstream.cpp268 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj) { function in struct:MyClient
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPreviewController.cpp489 mVePlayer[playerInst]->setNotifyCallback(this,(notify_callback_f)notify);
490 ALOGV("startPreview: notify callback set");
1153 void VideoEditorPreviewController::notify( function in class:android::VideoEditorPreviewController
1170 ALOGD("notify:MEDIA_PLAYBACK_COMPLETE, mCurrentClipNumber = %d",
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp435 const sp<AMessage> &notify, const AString &params)
436 : mNotifyMsg(notify),
434 AMPEG4AudioAssembler( const sp<AMessage> &notify, const AString &params) argument
H A DARTPConnection.cpp83 const sp<AMessage> &notify,
90 msg->setMessage("notify", notify);
201 CHECK(msg->findMessage("notify", &info->mNotifyMsg));
414 sp<AMessage> notify = s->mNotifyMsg->dup(); local
415 notify->setInt32("first-rtp", true);
416 notify->post();
500 sp<AMessage> notify = s->mNotifyMsg->dup(); local
501 notify->setInt32("first-rtcp", true);
502 notify
79 addStream( int rtpSocket, int rtcpSocket, const sp<ASessionDescription> &sessionDesc, size_t index, const sp<AMessage> &notify, bool injected) argument
[all...]
H A DARTSPConnection.cpp614 sp<AMessage> notify = mObserveBinaryMessage->dup(); local
615 notify->setBuffer("buffer", buffer);
616 notify->post();
H A DMyHandler.h112 const sp<AMessage> &notify,
114 : mNotify(notify),
169 sp<AMessage> notify = new AMessage('biny', id()); local
170 mConn->observeBinaryData(notify);
555 sp<AMessage> notify = new AMessage('accu', id()); local
556 notify->setSize("track-index", trackIndex);
575 notify, track->mUsingInterleavedTCP);
110 MyHandler( const char *url, const sp<AMessage> &notify, bool uidValid = false, uid_t uid = 0) argument
/frameworks/av/media/libstagefright/wifi-display/sink/
H A DWifiDisplaySink.cpp139 sp<AMessage> notify = new AMessage(kWhatRTSPNotify, id()); local
142 mRTSPHost.c_str(), sourcePort, notify, &mSessionID);
/frameworks/wilhelm/src/android/
H A Dandroid_GenericPlayer.cpp284 void GenericPlayer::notify(const char* event, int data, bool async) { function in class:android::GenericPlayer
285 SL_LOGV("GenericPlayer::notify(event=%s, data=%d, async=%s)", event, data,
297 void GenericPlayer::notify(const char* event, int data1, int data2, bool async) { function in class:android::GenericPlayer
298 SL_LOGV("GenericPlayer::notify(event=%s, data1=%d, data2=%d, async=%s)", event, data1, data2,
401 notify(PLAYEREVENT_PREPARED, mStateFlags & kFlagPrepared ? PLAYER_SUCCESS : PLAYER_FAILURE,
554 notify(PLAYEREVENT_PREFETCHSTATUSCHANGE, (int32_t)mCacheStatus, true /*async*/);
561 notify(PLAYEREVENT_PREFETCHFILLLEVELUPDATE, (int32_t)mLastNotifiedCacheFill, true/*async*/);
629 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATMARKER, true /*async*/);
666 notify(PLAYEREVENT_PLAY, (int32_t) SL_PLAYEVENT_HEADATNEWPOS, true /*async*/);
/frameworks/base/media/jni/
H A Dandroid_media_MediaRecorder.cpp66 void notify(int msg, int ext1, int ext2);
99 void JNIMediaRecorderListener::notify(int msg, int ext1, int ext2) function in class:JNIMediaRecorderListener
101 ALOGV("JNIMediaRecorderListener::notify");
H A Dandroid_media_MediaPlayer.cpp70 virtual void notify(int msg, int ext1, int ext2, const Parcel *obj = NULL);
103 void JNIMediaPlayerListener::notify(int msg, int ext1, int ext2, const Parcel *obj) function in class:JNIMediaPlayerListener
157 if (mp != 0) mp->notify(MEDIA_ERROR, opStatus, 0);
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp335 status_t DrmManagerClientImpl::notify(const DrmInfoEvent& event) { function in class:DrmManagerClientImpl
/frameworks/av/media/libmedia/
H A DSoundPool.cpp437 void SoundPool::notify(SoundPoolEvent event) function in class:android::SoundPool
H A Dmediaplayer.cpp647 void MediaPlayer::notify(int msg, int ext1, int ext2, const Parcel *obj) function in class:android::MediaPlayer
666 // Allows calls from JNI in idle state to notify errors
668 ALOGV("notify(%d, %d, %d) callback on disconnected mediaplayer", msg, ext1, ext2);
752 listener->notify(msg, ext1, ext2, obj);
774 notify(MEDIA_ERROR, MEDIA_ERROR_SERVER_DIED, 0);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayer.cpp710 sp<AMessage> notify = local
714 *decoder = audio ? new Decoder(notify) :
715 new Decoder(notify, mNativeWindow);
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp41 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
65 void CameraSourceListener::notify(int32_t msgType, int32_t ext1, int32_t ext2) { function in class:android::CameraSourceListener
66 ALOGV("notify(%d, %d, %d)", msgType, ext1, ext2);
H A DMPEG2TSWriter.cpp40 void start(const sp<AMessage> &notify);
132 void MPEG2TSWriter::SourceInfo::start(const sp<AMessage> &notify) { argument
136 mNotify = notify;
246 sp<AMessage> notify = mNotify->dup(); local
247 notify->setInt32("what", kNotifyBuffer);
248 notify->setBuffer("buffer", out);
249 notify->setInt32("oob", true);
250 notify->post();
254 sp<AMessage> notify = mNotify->dup(); local
255 notify
353 sp<AMessage> notify = mNotify->dup(); local
373 sp<AMessage> notify = mNotify->dup(); local
395 sp<AMessage> notify = mNotify->dup(); local
567 sp<AMessage> notify = local
[all...]
H A DMediaCodec.cpp336 void MediaCodec::requestActivityNotification(const sp<AMessage> &notify) { argument
338 msg->setMessage("notify", notify);
735 // We already notify the client of this by using the
1168 CHECK(msg->findMessage("notify", &mActivityNotify));
H A DACodec.cpp479 sp<AMessage> notify = mNotify->dup(); local
480 notify->setInt32("what", ACodec::kWhatBuffersAllocated);
482 notify->setInt32("portIndex", portIndex);
492 notify->setObject("portDesc", desc);
493 notify->post();
2073 sp<AMessage> notify = mNotify->dup(); local
2074 notify->setInt32("what", kWhatOutputFormatChanged);
2091 notify->setString("mime", MEDIA_MIMETYPE_VIDEO_RAW);
2092 notify->setInt32("width", videoDef->nFrameWidth);
2093 notify
2189 sp<AMessage> notify = mNotify->dup(); local
2556 sp<AMessage> notify = mCodec->mNotify->dup(); local
2825 sp<AMessage> notify = mCodec->mNotify->dup(); local
2845 sp<AMessage> notify = mCodec->mNotify->dup(); local
2981 sp<AMessage> notify = mCodec->mNotify->dup(); local
2991 sp<AMessage> notify = mCodec->mNotify->dup(); local
3088 sp<AMessage> notify = new AMessage(kWhatOMXMessage, mCodec->id()); local
3108 sp<AMessage> notify = mCodec->mNotify->dup(); local
3152 sp<AMessage> notify = mCodec->mNotify->dup(); local
3189 sp<AMessage> notify = mCodec->mNotify->dup(); local
3238 sp<AMessage> notify = mCodec->mNotify->dup(); local
3914 sp<AMessage> notify = mCodec->mNotify->dup(); local
[all...]
/frameworks/av/media/libstagefright/wifi-display/
H A DANetworkSession.cpp67 const sp<AMessage> &notify);
106 void notify(NotificationReason reason);
131 const sp<AMessage> &notify)
136 mNotify(notify),
250 sp<AMessage> notify = mNotify->dup(); local
251 notify->setInt32("sessionID", mSessionID);
252 notify->setInt32("reason", kWhatDatagram);
255 notify->setString(
264 notify->setInt32("fromPort", ntohs(remoteAddr.sin_port));
266 notify
127 Session( int32_t sessionID, State state, int s, const sp<AMessage> &notify) argument
317 sp<AMessage> notify = mNotify->dup(); local
340 sp<AMessage> notify = mNotify->dup(); local
366 sp<AMessage> notify = mNotify->dup(); local
529 void ANetworkSession::Session::notify(NotificationReason reason) { function in class:android::ANetworkSession::Session
593 createRTSPClient( const char *host, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
606 createRTSPServer( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
619 createUDPSession( unsigned localPort, const sp<AMessage> &notify, int32_t *sessionID) argument
624 createUDPSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
640 createTCPDatagramSession( const struct in_addr &addr, unsigned port, const sp<AMessage> &notify, int32_t *sessionID) argument
653 createTCPDatagramSession( unsigned localPort, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
700 createClientOrServer( Mode mode, const struct in_addr *localAddr, unsigned port, const char *remoteHost, unsigned remotePort, const sp<AMessage> &notify, int32_t *sessionID) argument
[all...]
/frameworks/av/media/libstagefright/wifi-display/source/
H A DPlaybackSession.cpp59 Track(const sp<AMessage> &notify,
120 const sp<AMessage> &notify,
125 : mNotify(notify),
216 sp<AMessage> notify = mNotify->dup(); local
217 notify->setInt32("what", kWhatStopped);
218 notify->post();
315 const sp<AMessage> &notify,
319 mNotify(notify),
339 sp<AMessage> notify = new AMessage(kWhatSenderNotify, id()); local
340 mSender = new Sender(mNetSession, notify);
119 Track( const sp<AMessage> &notify, const sp<ALooper> &pullLooper, const sp<ALooper> &codecLooper, const sp<MediaPuller> &mediaPuller, const sp<Converter> &converter) argument
313 PlaybackSession( const sp<ANetworkSession> &netSession, const sp<AMessage> &notify, const in_addr &interfaceAddr, const sp<IHDCP> &hdcp) argument
401 sp<AMessage> notify = mNotify->dup(); local
554 sp<AMessage> notify = mNotify->dup(); local
624 sp<AMessage> notify; local
904 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DSender.cpp110 const sp<AMessage> &notify)
112 mNotify(notify),
640 sp<AMessage> notify = mNotify->dup(); local
641 notify->setInt32("what", kWhatBinaryData);
646 notify->setInt32("channel", mRTPChannel);
647 notify->setBuffer("data", data);
648 notify->post();
803 sp<AMessage> notify = mNotify->dup(); local
804 notify->setInt32("what", kWhatBinaryData);
805 notify
108 Sender( const sp<ANetworkSession> &netSession, const sp<AMessage> &notify) argument
967 sp<AMessage> notify = mNotify->dup(); local
973 sp<AMessage> notify = mNotify->dup(); local
[all...]
H A DWifiDisplaySource.cpp138 sp<AMessage> notify = new AMessage(kWhatRTSPNotify, id()); local
141 mInterfaceAddr, port, notify, &mSessionID);
412 // HDCPObserver::notify is completely handled before
1052 sp<AMessage> notify = new AMessage(kWhatPlaybackSessionNotify, id()); local
1053 notify->setInt32("playbackSessionID", playbackSessionID);
1054 notify->setInt32("sessionID", sessionID);
1058 mNetSession, notify, mInterfaceAddr, mHDCP);
1432 HDCPObserver(const sp<AMessage> &notify);
1434 virtual void notify(
1444 const sp<AMessage> &notify)
1443 HDCPObserver( const sp<AMessage> &notify) argument
1448 void WifiDisplaySource::HDCPObserver::notify( function in class:android::WifiDisplaySource::HDCPObserver
1450 sp<AMessage> notify = mNotify->dup(); local
1469 sp<AMessage> notify = new AMessage(kWhatHDCPNotify, id()); local
[all...]
/frameworks/base/drm/java/android/drm/
H A DDrmManagerClient.java175 public static void notify( method in class:DrmManagerClient
/frameworks/base/core/jni/
H A Dandroid_hardware_Camera.cpp63 virtual void notify(int32_t msgType, int32_t ext1, int32_t ext2);
171 void JNICameraContext::notify(int32_t msgType, int32_t ext1, int32_t ext2) function in class:JNICameraContext
173 ALOGV("notify");
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp502 mAntagonizer = new Antagonizer(notify, this);
555 p = MediaPlayerFactory::createPlayer(playerType, this, notify);
1065 void MediaPlayerService::Client::notify( function in class:android::MediaPlayerService::Client
1081 client->mNextClient->mClient->notify(MEDIA_INFO, MEDIA_INFO_STARTED_AS_NEXT, 0, obj);
1099 ALOGV("[%d] notify (%p, %d, %d, %d)", client->mConnId, cookie, msg, ext1, ext2);
1100 c->notify(msg, ext1, ext2, obj);
1186 player = MediaPlayerFactory::createPlayer(playerType, cache.get(), cache->notify);
1236 player = MediaPlayerFactory::createPlayer(playerType, cache.get(), cache->notify);
1842 void MediaPlayerService::AudioCache::notify( function in class:android::MediaPlayerService::AudioCache
1845 ALOGV("notify(
[all...]

Completed in 308 milliseconds

123