Home | History | Annotate | Download | only in nuplayer2

Lines Matching full:amessage

28 #include <media/stagefright/foundation/AMessage.h>
32 NuPlayer2::DecoderBase::DecoderBase(const sp<AMessage> &notify)
36 mStats(new AMessage),
53 const sp<AMessage> &msg, sp<AMessage> *response) {
67 void NuPlayer2::DecoderBase::configure(const sp<AMessage> &format) {
68 sp<AMessage> msg = new AMessage(kWhatConfigure, this);
82 void NuPlayer2::DecoderBase::setParameters(const sp<AMessage> &params) {
83 sp<AMessage> msg = new AMessage(kWhatSetParameters, this);
89 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this);
95 sp<AMessage> msg = new AMessage(kWhatPause, this);
97 sp<AMessage> response;
102 (new AMessage(kWhatFlush, this))->post();
106 sp<AMessage> msg = new AMessage(kWhatResume, this);
112 (new AMessage(kWhatShutdown, this))->post();
124 sp<AMessage> msg = new AMessage(kWhatRequestInputBuffers, this);
129 void NuPlayer2::DecoderBase::onMessageReceived(const sp<AMessage> &msg) {
134 sp<AMessage> format;
142 sp<AMessage> params;
163 (new AMessage)->postReply(replyID);
209 sp<AMessage> notify = mNotify->dup();