Home
last modified time | relevance | path

Searched refs:AnotherPacketSource (Results 1 – 17 of 17) sorted by relevance

/frameworks/av/media/libstagefright/mpeg2ts/
DAnotherPacketSource.cpp41 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 …]
DMPEG2TSExtractor.cpp47 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 …]
DAnotherPacketSource.h32 struct AnotherPacketSource : public MediaSource { struct
33 AnotherPacketSource(const sp<MetaData> &meta);
86 virtual ~AnotherPacketSource();
123 DISALLOW_EVIL_CONSTRUCTORS(AnotherPacketSource); argument
DAndroid.mk6 AnotherPacketSource.cpp \
DMPEG2PSExtractor.cpp65 sp<AnotherPacketSource> mSource;
712 mSource = new AnotherPacketSource(meta); in appendPESData()
DATSParser.cpp155 sp<AnotherPacketSource> mSource;
1093 mSource = new AnotherPacketSource(meta); in onPayloadData()
/frameworks/av/media/libstagefright/httplive/
DPlaylistFetcher.h29 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,
DLiveSession.h32 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);
DPlaylistFetcher.cpp169 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 …]
DLiveSession.cpp314 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/
DRTSPSource.h29 struct AnotherPacketSource;
88 sp<AnotherPacketSource> mSource;
115 sp<AnotherPacketSource> mAudioTrack;
116 sp<AnotherPacketSource> mVideoTrack;
127 sp<AnotherPacketSource> getSource(bool audio);
DStreamingSource.cpp179 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()
DRTSPSource.cpp143 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 …]
DStreamingSource.h28 struct AnotherPacketSource;
65 sp<AnotherPacketSource> getSource(bool audio);
DGenericSource.h32 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);
DGenericSource.cpp241 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/
DMPEG2TSExtractor.h33 struct AnotherPacketSource;
64 Vector<sp<AnotherPacketSource> > mSourceImpls;
87 status_t feedUntilBufferAvailable(const sp<AnotherPacketSource> &impl);