Lines Matching full:notify
181 sp<AMessage> notify = new AMessage(kWhatSourceNotify, id());
186 msg->setObject("source", new MP4Source(notify, source));
188 msg->setObject("source", new StreamingSource(notify, source));
216 sp<AMessage> notify = new AMessage(kWhatSourceNotify, id());
220 source = new HTTPLiveSource(notify, url, headers, mUIDValid, mUID);
222 source = new RTSPSource(notify, url, headers, mUIDValid, mUID);
227 source = new RTSPSource(notify, url, headers, mUIDValid, mUID, true);
229 source = new GenericSource(notify, url, headers, mUIDValid, mUID);
239 sp<AMessage> notify = new AMessage(kWhatSourceNotify, id());
241 sp<Source> source = new GenericSource(notify, fd, offset, length);
904 sp<AMessage> notify =
908 *decoder = audio ? new Decoder(notify) :
909 new Decoder(notify, mNativeWindow);
1490 sp<AMessage> notify = dupNotify();
1491 notify->setInt32("what", kWhatFlagsChanged);
1492 notify->setInt32("flags", flags);
1493 notify->post();
1497 sp<AMessage> notify = dupNotify();
1498 notify->setInt32("what", kWhatVideoSizeChanged);
1499 notify->setInt32("width", width);
1500 notify->setInt32("height", height);
1501 notify->post();
1505 sp<AMessage> notify = dupNotify();
1506 notify->setInt32("what", kWhatPrepared);
1507 notify->setInt32("err", err);
1508 notify->post();