Lines Matching refs:Source

267     sp<Source> source;  in setDataSourceAsync()
462 sp<Source> source; in resetAsync()
561 mSource = static_cast<Source *>(obj.get()); in onMessageReceived()
1031 if (mSourceFlags & Source::FLAG_DYNAMIC_DURATION) { in onMessageReceived()
1496 if (!(mSourceFlags & Source::FLAG_SECURE)) { in onInstantiateSecureDecoders()
1927 if (mSourceFlags & Source::FLAG_SECURE) { in instantiateDecoder()
1931 if (mSourceFlags & Source::FLAG_PROTECTED) { in instantiateDecoder()
1990 (mSourceFlags & Source::FLAG_SECURE) != 0); in instantiateDecoder()
2477 case Source::kWhatInstantiateSecureDecoders: in onSourceNotify()
2494 case Source::kWhatPrepared: in onSourceNotify()
2532 case Source::kWhatDrmInfo: in onSourceNotify()
2547 case Source::kWhatFlagsChanged: in onSourceNotify()
2559 (flags & Source::FLAG_CAN_PAUSE) != 0, in onSourceNotify()
2560 (flags & Source::FLAG_CAN_SEEK_BACKWARD) != 0, in onSourceNotify()
2561 (flags & Source::FLAG_CAN_SEEK_FORWARD) != 0, in onSourceNotify()
2562 (flags & Source::FLAG_CAN_SEEK) != 0, in onSourceNotify()
2563 (flags & Source::FLAG_DYNAMIC_DURATION) != 0, in onSourceNotify()
2564 (flags & Source::FLAG_SECURE) != 0, in onSourceNotify()
2565 (flags & Source::FLAG_PROTECTED) != 0); in onSourceNotify()
2567 if ((flags & NuPlayer::Source::FLAG_CAN_SEEK) == 0) { in onSourceNotify()
2574 if ((mSourceFlags & Source::FLAG_DYNAMIC_DURATION) in onSourceNotify()
2575 && (!(flags & Source::FLAG_DYNAMIC_DURATION))) { in onSourceNotify()
2577 } else if (!(mSourceFlags & Source::FLAG_DYNAMIC_DURATION) in onSourceNotify()
2578 && (flags & Source::FLAG_DYNAMIC_DURATION) in onSourceNotify()
2587 case Source::kWhatVideoSizeChanged: in onSourceNotify()
2596 case Source::kWhatBufferingUpdate: in onSourceNotify()
2605 case Source::kWhatPauseOnBufferingStart: in onSourceNotify()
2619 case Source::kWhatResumeOnBufferingEnd: in onSourceNotify()
2637 case Source::kWhatCacheStats: in onSourceNotify()
2646 case Source::kWhatSubtitleData: in onSourceNotify()
2655 case Source::kWhatTimedMetaData: in onSourceNotify()
2666 case Source::kWhatTimedTextData: in onSourceNotify()
2699 case Source::kWhatQueueDecoderShutdown: in onSourceNotify()
2712 case Source::kWhatDrmNoLicense: in onSourceNotify()
2982 sp<AMessage> NuPlayer::Source::getFormat(bool audio) { in getFormat()
2997 void NuPlayer::Source::notifyFlagsChanged(uint32_t flags) { in notifyFlagsChanged()
3004 void NuPlayer::Source::notifyVideoSizeChanged(const sp<AMessage> &format) { in notifyVideoSizeChanged()
3011 void NuPlayer::Source::notifyPrepared(status_t err) { in notifyPrepared()
3019 void NuPlayer::Source::notifyDrmInfo(const sp<ABuffer> &drmInfoBuffer) in notifyDrmInfo()
3030 void NuPlayer::Source::notifyInstantiateSecureDecoders(const sp<AMessage> &reply) { in notifyInstantiateSecureDecoders()
3037 void NuPlayer::Source::onMessageReceived(const sp<AMessage> & /* msg */) { in onMessageReceived()