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
154 // Use this if there's no state necessary to save in order to execute
738 msg->post(1000000ll); // poll again in a second.
755 // be in preparing state and it could take long time.
775 // If the video decoder is not set (perhaps audio only in this case)
1164 getDecoder(audio)->initiateShutdown(); // In the middle of a seek.
1328 // Seek before the player is started. In order to preview video,
1583 // Audio decoder is no longer needed if it's in shut/shutting down status.
1614 // decoder flush completes only occur in a flushing state.
1615 LOG_ALWAYS_FATAL_IF(isDecoder, "decoder flush in invalid state %d", *state);
1655 // Note: This is called early in NuPlayer to determine whether offloading
1753 // The audio decoder could be cleared by tear down. If still in shut down
1959 void NuPlayer::notifyListener(int msg, int ext1, int ext2, const Parcel *in) {
1970 driver->notifyListener(msg, ext1, ext2, in);
2003 "audio flushDecoder() is called in state %d", mFlushingAudio);
2007 "video flushDecoder() is called in state %d", mFlushingVideo);
2143 // We won't execute any deferred actions until we're no longer in
2355 // shut down potential secure codecs in case client never calls reset
2608 Parcel in;
2609 in.writeInt32(trackIndex + baseIndex);
2610 in.writeInt64(timeUs);
2611 in.writeInt64(durationUs);
2612 in.writeInt32(buffer->size());
2613 in.writeInt32(buffer->size());
2614 in.write(buffer->data(), buffer->size());
2616 notifyListener(MEDIA_SUBTITLE_DATA, 0, 0, &in);
2623 Parcel in;
2624 in.writeInt64(timeUs);
2625 in.writeInt32(buffer->size());
2626 in.writeInt32(buffer->size());
2627 in.write(buffer->data(), buffer->size());
2629 notifyListener(MEDIA_META_DATA, 0, 0, &in);
2696 // Passing to the looper anyway; called in a pre-config prepared state so no race on mCrypto