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
148 // Use this if there's no state necessary to save in order to execute
264 // The correct flags will be updated in Source::kWhatFlagsChanged
642 msg->post(1000000ll); // poll again in a second.
659 // be in preparing state and it could take long time.
678 // If the video decoder is not set (perhaps audio only in this case)
1069 getDecoder(audio)->initiateShutdown(); // In the middle of a seek.
1207 // Seek before the player is started. In order to preview video,
1407 // Audio decoder is no longer needed if it's in shut/shutting down status.
1445 // decoder flush completes only occur in a flushing state.
1446 LOG_ALWAYS_FATAL_IF(isDecoder, "decoder flush in invalid state %d", *state);
1486 // Note: This is called early in NuPlayer to determine whether offloading
1575 // The audio decoder could be cleared by tear down. If still in shut down
1768 void NuPlayer::notifyListener(int msg, int ext1, int ext2, const Parcel *in) {
1779 driver->notifyListener(msg, ext1, ext2, in);
1810 "audio flushDecoder() is called in state %d", mFlushingAudio);
1814 "video flushDecoder() is called in state %d", mFlushingVideo);
1950 // We won't execute any deferred actions until we're no longer in
2152 // shut down potential secure codecs in case client never calls reset
2376 Parcel in;
2377 in.writeInt32(trackIndex + baseIndex);
2378 in.writeInt64(timeUs);
2379 in.writeInt64(durationUs);
2380 in.writeInt32(buffer->size());
2381 in.writeInt32(buffer->size());
2382 in.write(buffer->data(), buffer->size());
2384 notifyListener(MEDIA_SUBTITLE_DATA, 0, 0, &in);
2391 Parcel in;
2392 in.writeInt64(timeUs);
2393 in.writeInt32(buffer->size());
2394 in.writeInt32(buffer->size());
2395 in.write(buffer->data(), buffer->size());
2397 notifyListener(MEDIA_META_DATA, 0, 0, &in);