Lines Matching refs:Source

259     sp<Source> source;  in setDataSourceAsync()
454 sp<Source> source; in resetAsync()
546 mSource = static_cast<Source *>(obj.get()); in onMessageReceived()
1004 if (mSourceFlags & Source::FLAG_DYNAMIC_DURATION) { in onMessageReceived()
1436 if (!(mSourceFlags & Source::FLAG_SECURE)) { in onInstantiateSecureDecoders()
1780 if (mSourceFlags & Source::FLAG_SECURE) { in instantiateDecoder()
1784 if (mSourceFlags & Source::FLAG_PROTECTED) { in instantiateDecoder()
1841 (mSourceFlags & Source::FLAG_SECURE) != 0); in instantiateDecoder()
2323 case Source::kWhatInstantiateSecureDecoders: in onSourceNotify()
2340 case Source::kWhatPrepared: in onSourceNotify()
2378 case Source::kWhatDrmInfo: in onSourceNotify()
2393 case Source::kWhatFlagsChanged: in onSourceNotify()
2405 (flags & Source::FLAG_CAN_PAUSE) != 0, in onSourceNotify()
2406 (flags & Source::FLAG_CAN_SEEK_BACKWARD) != 0, in onSourceNotify()
2407 (flags & Source::FLAG_CAN_SEEK_FORWARD) != 0, in onSourceNotify()
2408 (flags & Source::FLAG_CAN_SEEK) != 0, in onSourceNotify()
2409 (flags & Source::FLAG_DYNAMIC_DURATION) != 0, in onSourceNotify()
2410 (flags & Source::FLAG_SECURE) != 0, in onSourceNotify()
2411 (flags & Source::FLAG_PROTECTED) != 0); in onSourceNotify()
2413 if ((flags & NuPlayer::Source::FLAG_CAN_SEEK) == 0) { in onSourceNotify()
2420 if ((mSourceFlags & Source::FLAG_DYNAMIC_DURATION) in onSourceNotify()
2421 && (!(flags & Source::FLAG_DYNAMIC_DURATION))) { in onSourceNotify()
2423 } else if (!(mSourceFlags & Source::FLAG_DYNAMIC_DURATION) in onSourceNotify()
2424 && (flags & Source::FLAG_DYNAMIC_DURATION) in onSourceNotify()
2433 case Source::kWhatVideoSizeChanged: in onSourceNotify()
2442 case Source::kWhatBufferingUpdate: in onSourceNotify()
2451 case Source::kWhatPauseOnBufferingStart: in onSourceNotify()
2464 case Source::kWhatResumeOnBufferingEnd: in onSourceNotify()
2481 case Source::kWhatCacheStats: in onSourceNotify()
2490 case Source::kWhatSubtitleData: in onSourceNotify()
2499 case Source::kWhatTimedMetaData: in onSourceNotify()
2510 case Source::kWhatTimedTextData: in onSourceNotify()
2543 case Source::kWhatQueueDecoderShutdown: in onSourceNotify()
2556 case Source::kWhatDrmNoLicense: in onSourceNotify()
2826 sp<AMessage> NuPlayer::Source::getFormat(bool audio) { in getFormat()
2841 void NuPlayer::Source::notifyFlagsChanged(uint32_t flags) { in notifyFlagsChanged()
2848 void NuPlayer::Source::notifyVideoSizeChanged(const sp<AMessage> &format) { in notifyVideoSizeChanged()
2855 void NuPlayer::Source::notifyPrepared(status_t err) { in notifyPrepared()
2863 void NuPlayer::Source::notifyDrmInfo(const sp<ABuffer> &drmInfoBuffer) in notifyDrmInfo()
2874 void NuPlayer::Source::notifyInstantiateSecureDecoders(const sp<AMessage> &reply) { in notifyInstantiateSecureDecoders()
2881 void NuPlayer::Source::onMessageReceived(const sp<AMessage> & /* msg */) { in onMessageReceived()