Searched refs:LiveSession (Results 1 – 8 of 8) sorted by relevance
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | HTTPLiveSource.cpp | 112 mLiveSession = new LiveSession( in prepareAsync() 114 (mFlags & kFlagIncognito) ? LiveSession::kFlagIncognito : 0, in prepareAsync() 131 audio ? LiveSession::STREAMTYPE_AUDIO in getFormatMeta() 132 : LiveSession::STREAMTYPE_VIDEO, in getFormatMeta() 144 audio ? LiveSession::STREAMTYPE_AUDIO in getFormat() 145 : LiveSession::STREAMTYPE_VIDEO, in getFormat() 169 audio ? LiveSession::STREAMTYPE_AUDIO in dequeueAccessUnit() 170 : LiveSession::STREAMTYPE_VIDEO, in dequeueAccessUnit() 250 LiveSession::StreamType fetchType, int32_t pushWhat) { in pollForRawData() 271 if (fetchType == LiveSession::STREAMTYPE_SUBTITLES) { in pollForRawData() [all …]
|
/frameworks/av/media/libstagefright/httplive/ |
D | LiveSession.cpp | 48 const int64_t LiveSession::kUpSwitchMarkUs = 15000000LL; 49 const int64_t LiveSession::kDownSwitchMarkUs = 20000000LL; 50 const int64_t LiveSession::kUpSwitchMarginUs = 5000000LL; 51 const int64_t LiveSession::kResumeThresholdUs = 100000LL; 57 struct LiveSession::BandwidthEstimator : public RefBase { 92 LiveSession::BandwidthEstimator::BandwidthEstimator() : in BandwidthEstimator() 100 void LiveSession::BandwidthEstimator::addBandwidthMeasurement( in addBandwidthMeasurement() 140 bool LiveSession::BandwidthEstimator::estimateBandwidth( in estimateBandwidth() 227 const char *LiveSession::getKeyForStream(StreamType type) { in getKeyForStream() 244 const char *LiveSession::getNameForStream(StreamType type) { in getNameForStream() [all …]
|
D | PlaylistFetcher.cpp | 49 LiveSession::getNameForStream(stream), ##__VA_ARGS__) 147 const sp<LiveSession> &session, in PlaylistFetcher() 167 mSeekMode(LiveSession::kSeekModeExactPosition), in PlaylistFetcher() 557 LiveSession::SeekMode seekMode) { in startAsync() 564 streamTypeMask |= LiveSession::STREAMTYPE_AUDIO; in startAsync() 569 streamTypeMask |= LiveSession::STREAMTYPE_VIDEO; in startAsync() 574 streamTypeMask |= LiveSession::STREAMTYPE_SUBTITLES; in startAsync() 645 ? LiveSession::kSeekModeNextSample in onMessageReceived() 646 : LiveSession::kSeekModeNextSegment); in onMessageReceived() 723 if (streamTypeMask & LiveSession::STREAMTYPE_AUDIO) { in onStart() [all …]
|
D | PlaylistFetcher.h | 59 const sp<LiveSession> &session, 75 LiveSession::SeekMode seekMode = LiveSession::kSeekModeExactPosition); 121 sp<LiveSession> mSession; 138 KeyedVector<LiveSession::StreamType, sp<AnotherPacketSource> >
|
D | LiveSession.h | 43 struct LiveSession : public AHandler { struct 71 LiveSession( argument 119 virtual ~LiveSession(); argument 312 DISALLOW_EVIL_CONSTRUCTORS(LiveSession);
|
D | Android.bp | 26 "LiveSession.cpp",
|
/frameworks/av/media/libstagefright/httplive/fuzzer/ |
D | httplive_fuzzer.cpp | 60 constexpr LiveSession::StreamType kValidStreamType[] = { 61 LiveSession::STREAMTYPE_AUDIO, LiveSession::STREAMTYPE_VIDEO, 62 LiveSession::STREAMTYPE_SUBTITLES, LiveSession::STREAMTYPE_METADATA}; 87 case LiveSession::kWhatError: in onMessageReceived() 88 case LiveSession::kWhatPrepared: in onMessageReceived() 89 case LiveSession::kWhatPreparationFailed: { in onMessageReceived() 166 sp<LiveSession> mLiveSession = nullptr; 282 mLiveSession = sp<LiveSession>::make(notify, flags, httpService); in initLiveSession() 288 LiveSession::StreamType stream = mFDP->PickValueInArray(kValidStreamType); in invokeDequeueAccessUnit() 307 LiveSession::StreamType stream = mFDP->PickValueInArray(kValidStreamType); in invokeGetConfig() [all …]
|
/frameworks/av/media/libmediaplayerservice/nuplayer/include/nuplayer/ |
D | HTTPLiveSource.h | 28 struct LiveSession; 82 sp<LiveSession> mLiveSession; 92 LiveSession::StreamType fetchType, int32_t pushWhat);
|