Lines Matching full:amessage
28 #include <media/stagefright/foundation/AMessage.h>
32 NuPlayer::DecoderBase::DecoderBase(const sp<AMessage> ¬ify)
36 mStats(new AMessage),
51 const sp<AMessage> &msg, sp<AMessage> *response) {
65 void NuPlayer::DecoderBase::configure(const sp<AMessage> &format) {
66 sp<AMessage> msg = new AMessage(kWhatConfigure, this);
80 void NuPlayer::DecoderBase::setParameters(const sp<AMessage> ¶ms) {
81 sp<AMessage> msg = new AMessage(kWhatSetParameters, this);
87 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this);
93 sp<AMessage> msg = new AMessage(kWhatPause, this);
95 sp<AMessage> response;
100 (new AMessage(kWhatFlush, this))->post();
104 sp<AMessage> msg = new AMessage(kWhatResume, this);
110 (new AMessage(kWhatShutdown, this))->post();
122 sp<AMessage> msg = new AMessage(kWhatRequestInputBuffers, this);
127 void NuPlayer::DecoderBase::onMessageReceived(const sp<AMessage> &msg) {
132 sp<AMessage> format;
140 sp<AMessage> params;
161 (new AMessage)->postReply(replyID);
207 sp<AMessage> notify = mNotify->dup();