Home | History | Annotate | Download | only in nuplayer

Lines Matching refs:AMessage

27 #include <media/stagefright/foundation/AMessage.h>
31 NuPlayer::DecoderBase::DecoderBase(const sp<AMessage> &notify)
34 mStats(new AMessage),
50 const sp<AMessage> &msg, sp<AMessage> *response) {
64 void NuPlayer::DecoderBase::configure(const sp<AMessage> &format) {
65 sp<AMessage> msg = new AMessage(kWhatConfigure, this);
74 void NuPlayer::DecoderBase::setParameters(const sp<AMessage> &params) {
75 sp<AMessage> msg = new AMessage(kWhatSetParameters, this);
81 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this);
87 sp<AMessage> msg = new AMessage(kWhatGetInputBuffers, this);
90 sp<AMessage> response;
95 (new AMessage(kWhatFlush, this))->post();
99 sp<AMessage> msg = new AMessage(kWhatResume, this);
105 (new AMessage(kWhatShutdown, this))->post();
117 sp<AMessage> msg = new AMessage(kWhatRequestInputBuffers, this);
122 void NuPlayer::DecoderBase::onMessageReceived(const sp<AMessage> &msg) {
127 sp<AMessage> format;
135 sp<AMessage> params;
159 (new AMessage)->postReply(replyID);
205 sp<AMessage> notify = mNotify->dup();