/frameworks/av/media/libstagefright/mpeg2ts/ |
D | AnotherPacketSource.cpp | 41 AnotherPacketSource::AnotherPacketSource(const sp<MetaData> &meta) in AnotherPacketSource() function in android::AnotherPacketSource 55 void AnotherPacketSource::setFormat(const sp<MetaData> &meta) { in setFormat() 81 AnotherPacketSource::~AnotherPacketSource() { in ~AnotherPacketSource() 84 status_t AnotherPacketSource::start(MetaData * /* params */) { in start() 88 status_t AnotherPacketSource::stop() { in stop() 92 sp<MetaData> AnotherPacketSource::getFormat() { in getFormat() 115 status_t AnotherPacketSource::dequeueAccessUnit(sp<ABuffer> *buffer) { in dequeueAccessUnit() 159 void AnotherPacketSource::requeueAccessUnit(const sp<ABuffer> &buffer) { in requeueAccessUnit() 165 status_t AnotherPacketSource::read( in read() 232 bool AnotherPacketSource::wasFormatChange( in wasFormatChange() [all …]
|
D | MPEG2TSExtractor.cpp | 47 const sp<AnotherPacketSource> &impl, 59 sp<AnotherPacketSource> mImpl; 70 const sp<AnotherPacketSource> &impl, in MPEG2TSSource() 160 sp<AnotherPacketSource> impl = in init() 161 (AnotherPacketSource *)mParser->getSource( in init() 173 sp<AnotherPacketSource> impl = in init() 174 (AnotherPacketSource *)mParser->getSource( in init() 198 sp<AnotherPacketSource> impl = haveVideo in init() 199 ? (AnotherPacketSource *)mParser->getSource( in init() 201 : (AnotherPacketSource *)mParser->getSource( in init() [all …]
|
D | AnotherPacketSource.h | 32 struct AnotherPacketSource : public MediaSource { struct 33 AnotherPacketSource(const sp<MetaData> &meta); 86 virtual ~AnotherPacketSource(); 123 DISALLOW_EVIL_CONSTRUCTORS(AnotherPacketSource); argument
|
D | Android.mk | 6 AnotherPacketSource.cpp \
|
D | MPEG2PSExtractor.cpp | 65 sp<AnotherPacketSource> mSource; 712 mSource = new AnotherPacketSource(meta); in appendPESData()
|
D | ATSParser.cpp | 155 sp<AnotherPacketSource> mSource; 1093 mSource = new AnotherPacketSource(meta); in onPayloadData()
|
/frameworks/av/media/libstagefright/httplive/ |
D | PlaylistFetcher.h | 29 struct AnotherPacketSource; 66 const sp<AnotherPacketSource> &audioSource, 67 const sp<AnotherPacketSource> &videoSource, 68 const sp<AnotherPacketSource> &subtitleSource, 69 const sp<AnotherPacketSource> &metadataSource, 137 KeyedVector<LiveSession::StreamType, sp<AnotherPacketSource> > 173 sp<AnotherPacketSource> mVideoBuffer; 232 const sp<AnotherPacketSource> &source,
|
D | LiveSession.h | 32 struct AnotherPacketSource; 223 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources; 225 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources2; 261 sp<AnotherPacketSource> getPacketSourceForStreamIndex(size_t trackIndex, bool newUri); 262 sp<AnotherPacketSource> getMetadataSource( 263 sp<AnotherPacketSource> sources[kNumSources], uint32_t streamMask, bool newUri);
|
D | PlaylistFetcher.cpp | 169 mVideoBuffer(new AnotherPacketSource(NULL)), in PlaylistFetcher() 482 const sp<AnotherPacketSource> &audioSource, in startAsync() 483 const sp<AnotherPacketSource> &videoSource, in startAsync() 484 const sp<AnotherPacketSource> &subtitleSource, in startAsync() 485 const sp<AnotherPacketSource> &metadataSource, in startAsync() 661 static_cast<AnotherPacketSource *>(ptr)); in onStart() 670 static_cast<AnotherPacketSource *>(ptr)); in onStart() 679 static_cast<AnotherPacketSource *>(ptr)); in onStart() 688 static_cast<AnotherPacketSource *>(ptr)); in onStart() 735 sp<AnotherPacketSource> packetSource = mPacketSources.valueAt(i); in onStop() [all …]
|
D | LiveSession.cpp | 314 mPacketSources.add(indexToType(i), new AnotherPacketSource(NULL /* meta */)); in LiveSession() 315 mPacketSources2.add(indexToType(i), new AnotherPacketSource(NULL /* meta */)); in LiveSession() 342 sp<AnotherPacketSource> packetSource = mPacketSources.valueFor(stream); in dequeueAccessUnit() 475 sp<AnotherPacketSource> packetSource = mPacketSources.valueFor(stream); in getStreamFormat() 547 sp<AnotherPacketSource> &source = mPacketSources.editValueAt(i); in checkSwitchProgress() 1186 sp<AnotherPacketSource> LiveSession::getPacketSourceForStreamIndex( in getPacketSourceForStreamIndex() 1189 sp<AnotherPacketSource> source = NULL; in getPacketSourceForStreamIndex() 1199 sp<AnotherPacketSource> LiveSession::getMetadataSource( in getMetadataSource() 1200 sp<AnotherPacketSource> sources[kNumSources], uint32_t streamMask, bool newUri) { in getMetadataSource() 1225 sp<AnotherPacketSource> sources[kNumSources]; in resumeFetcher() [all …]
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | RTSPSource.h | 29 struct AnotherPacketSource; 88 sp<AnotherPacketSource> mSource; 115 sp<AnotherPacketSource> mAudioTrack; 116 sp<AnotherPacketSource> mVideoTrack; 127 sp<AnotherPacketSource> getSource(bool audio);
|
D | StreamingSource.cpp | 179 sp<AnotherPacketSource> audioTrack = getSource(true /*audio*/); in haveSufficientDataOnAllTracks() 180 sp<AnotherPacketSource> videoTrack = getSource(false /*audio*/); in haveSufficientDataOnAllTracks() 210 sp<AnotherPacketSource> NuPlayer::StreamingSource::getSource(bool audio) { in getSource() 218 return static_cast<AnotherPacketSource *>(source.get()); in getSource() 222 sp<AnotherPacketSource> source = getSource(audio); in getFormat() 240 sp<AnotherPacketSource> source = getSource(audio); in dequeueAccessUnit()
|
D | RTSPSource.cpp | 143 sp<AnotherPacketSource> source = getSource(audio); in getFormatMeta() 194 sp<AnotherPacketSource> source = getSource(audio); in dequeueAccessUnit() 205 sp<AnotherPacketSource> otherSource = getSource(!audio); in dequeueAccessUnit() 246 sp<AnotherPacketSource> NuPlayer::RTSPSource::getSource(bool audio) { in getSource() 251 return static_cast<AnotherPacketSource *>(source.get()); in getSource() 324 sp<AnotherPacketSource> src = info->mSource; in checkBuffering() 449 sp<AnotherPacketSource> source = getSource(true /* audio */); in onMessageReceived() 514 sp<AnotherPacketSource> source = getSource(false /* audio */); in onMessageReceived() 529 sp<AnotherPacketSource> source = info->mSource; in onMessageReceived() 561 sp<AnotherPacketSource> source = getSource(false /* audio */); in onMessageReceived() [all …]
|
D | StreamingSource.h | 28 struct AnotherPacketSource; 65 sp<AnotherPacketSource> getSource(bool audio);
|
D | GenericSource.h | 32 struct AnotherPacketSource; 113 sp<AnotherPacketSource> mPackets; 267 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg); 275 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg);
|
D | GenericSource.cpp | 241 new AnotherPacketSource(mAudioTrack.mSource->getFormat()); in initFromDataSource() 254 new AnotherPacketSource(mVideoTrack.mSource->getFormat()); in initFromDataSource() 583 mSubtitleTrack.mPackets = new AnotherPacketSource(NULL); in setDrmPlaybackStatusIfNeeded() 584 mTimedTextTrack.mPackets = new AnotherPacketSource(NULL); in setDrmPlaybackStatusIfNeeded() 744 sp<AnotherPacketSource> packets, in fetchTextData() 778 sp<AnotherPacketSource> packets, in sendTextData() 1138 track->mPackets = new AnotherPacketSource(track->mSource->getFormat()); in doSelectTrack()
|
/frameworks/av/media/libstagefright/include/ |
D | MPEG2TSExtractor.h | 33 struct AnotherPacketSource; 64 Vector<sp<AnotherPacketSource> > mSourceImpls; 87 status_t feedUntilBufferAvailable(const sp<AnotherPacketSource> &impl);
|