Home | History | Annotate | Download | only in nuplayer

Lines Matching refs:sp

31 NuPlayer::DecoderBase::DecoderBase(const sp<AMessage> &notify)
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);
80 void NuPlayer::DecoderBase::setRenderer(const sp<Renderer> &renderer) {
81 sp<AMessage> msg = new AMessage(kWhatSetRenderer, this);
86 status_t NuPlayer::DecoderBase::getInputBuffers(Vector<sp<ABuffer> > *buffers) const {
87 sp<AMessage> msg = new AMessage(kWhatGetInputBuffers, this);
90 sp<AMessage> response;
99 sp<AMessage> msg = new AMessage(kWhatResume, this);
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;
143 sp<RefBase> obj;
151 sp<AReplyToken> replyID;
154 Vector<sp<ABuffer> > *dstBuffers;
205 sp<AMessage> notify = mNotify->dup();