Home | History | Annotate | Download | only in nuplayer2

Lines Matching defs:notify

277     sp<AMessage> notify = new AMessage(kWhatSourceNotify, this);
278 notify->setInt64("srcId", dsd->mId);
290 *source = new HTTPLiveSource2(notify, httpService, url, headers);
295 notify, httpService, url, headers, mUID);
303 notify, httpService, url, headers, mUID, true);
310 new GenericSource2(notify, mUID, mMediaClock);
330 new GenericSource2(notify, mUID, mMediaClock);
352 new GenericSource2(notify, mUID, mMediaClock);
573 sp<AMessage> notify = new AMessage(kWhatNotifyTime, this);
574 notify->setInt64("timerUs", mediaTimeUs);
575 mMediaClock->addTimer(notify, mediaTimeUs);
1332 // which has error, notify client of error.
1343 // which has error, notify client of error.
1657 sp<AMessage> notify = new AMessage(kWhatRendererNotify, this);
1659 notify->setInt32("generation", mRendererGeneration);
1660 mRenderer = new Renderer(mAudioSink, mMediaClock, notify, flags);
1985 sp<AMessage> notify = new AMessage(kWhatAudioNotify, this);
1987 notify->setInt32("generation", mAudioDecoderGeneration);
1997 *decoder = new DecoderPassThrough(notify, mSource, mRenderer);
2002 *decoder = new Decoder(notify, mSource, mPID, mUID, mRenderer);
2007 sp<AMessage> notify = new AMessage(kWhatVideoNotify, this);
2009 notify->setInt32("generation", mVideoDecoderGeneration);
2012 notify, mSource, mPID, mUID, mRenderer, mNativeWindow, mCCDecoder);
2537 // if audio-only, we can notify seek complete now,
2605 // notify duration first, so that it's definitely set when
3078 sp<AMessage> notify = dupNotify();
3079 notify->setInt32("what", kWhatFlagsChanged);
3080 notify->setInt32("flags", flags);
3081 notify->post();
3085 sp<AMessage> notify = dupNotify();
3086 notify->setInt32("what", kWhatVideoSizeChanged);
3087 notify->setMessage("format", format);
3088 notify->post();
3093 sp<AMessage> notify = dupNotify();
3094 notify->setInt32("what", kWhatPrepared);
3095 notify->setInt32("err", err);
3096 notify->post();
3103 sp<AMessage> notify = dupNotify();
3104 notify->setInt32("what", kWhatDrmInfo);
3105 notify->setBuffer("drmInfo", drmInfoBuffer);
3107 notify->post();