Home | History | Annotate | Download | only in nuplayer

Lines Matching defs:in

5  * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
130 // Use this if there's no state necessary to save in order to execute
241 // The correct flags will be updated in Source::kWhatFlagsChanged
521 msg->post(1000000ll); // poll again in a second.
544 // If the video decoder is not set (perhaps audio only in this case)
829 getDecoder(audio)->initiateShutdown(); // In the middle of a seek.
1021 // Audio decoder is no longer needed if it's in shut/shutting down status.
1058 // decoder flush completes only occur in a flushing state.
1059 LOG_ALWAYS_FATAL_IF(isDecoder, "decoder flush in invalid state %d", *state);
1318 // in a flush or shutdown, as the flushing state will stay NONE.
1400 // Keep looping until we run out of room in the mAggregateBuffer.
1445 // We're currently attempting to flush the decoder, in order
1448 // we initiated the flush) to be stuck in the renderer's queue.
1555 void NuPlayer::notifyListener(int msg, int ext1, int ext2, const Parcel *in) {
1566 driver->notifyListener(msg, ext1, ext2, in);
1595 "audio flushDecoder() is called in state %d", mFlushingAudio);
1599 "video flushDecoder() is called in state %d", mFlushingVideo);
1722 // We won't execute any deferred actions until we're no longer in
2064 Parcel in;
2065 in.writeInt32(trackIndex + baseIndex);
2066 in.writeInt64(timeUs);
2067 in.writeInt64(durationUs);
2068 in.writeInt32(buffer->size());
2069 in.writeInt32(buffer->size());
2070 in.write(buffer->data(), buffer->size());
2072 notifyListener(MEDIA_SUBTITLE_DATA, 0, 0, &in);