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

/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp18 #define LOG_TAG "AnotherPacketSource"
20 #include "AnotherPacketSource.h"
38 AnotherPacketSource::AnotherPacketSource(const sp<MetaData> &meta) function in class:android::AnotherPacketSource
50 void AnotherPacketSource::setFormat(const sp<MetaData> &meta) {
73 AnotherPacketSource::~AnotherPacketSource() {
76 status_t AnotherPacketSource::start(MetaData * /* params */) {
80 status_t AnotherPacketSource::stop() {
84 sp<MetaData> AnotherPacketSource
[all...]
H A DAnotherPacketSource.h32 struct AnotherPacketSource : public MediaSource { struct in namespace:android
33 AnotherPacketSource(const sp<MetaData> &meta);
73 virtual ~AnotherPacketSource();
93 DISALLOW_EVIL_CONSTRUCTORS(AnotherPacketSource);
H A DAndroid.mk6 AnotherPacketSource.cpp \
H A DMPEG2TSExtractor.cpp32 #include "AnotherPacketSource.h"
42 const sp<AnotherPacketSource> &impl,
54 sp<AnotherPacketSource> mImpl;
65 const sp<AnotherPacketSource> &impl,
167 sp<AnotherPacketSource> impl =
168 (AnotherPacketSource *)mParser->getSource(
178 sp<AnotherPacketSource> impl =
179 (AnotherPacketSource *)mParser->getSource(
H A DMPEG2PSExtractor.cpp23 #include "AnotherPacketSource.h"
65 sp<AnotherPacketSource> mSource;
658 mSource = new AnotherPacketSource(meta);
H A DATSParser.cpp23 #include "AnotherPacketSource.h"
137 sp<AnotherPacketSource> mSource;
924 mSource = new AnotherPacketSource(meta);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DStreamingSource.h28 struct AnotherPacketSource;
65 sp<AnotherPacketSource> getSource(bool audio);
H A DRTSPSource.h28 struct AnotherPacketSource;
82 sp<AnotherPacketSource> mSource;
108 sp<AnotherPacketSource> mAudioTrack;
109 sp<AnotherPacketSource> mVideoTrack;
118 sp<AnotherPacketSource> getSource(bool audio);
H A DStreamingSource.cpp24 #include "AnotherPacketSource.h"
176 sp<AnotherPacketSource> audioTrack = getSource(true /*audio*/);
177 sp<AnotherPacketSource> videoTrack = getSource(false /*audio*/);
207 sp<AnotherPacketSource> NuPlayer::StreamingSource::getSource(bool audio) {
215 return static_cast<AnotherPacketSource *>(source.get());
219 sp<AnotherPacketSource> source = getSource(audio);
230 sp<AnotherPacketSource> source = getSource(audio);
H A DRTSPSource.cpp23 #include "AnotherPacketSource.h"
130 sp<AnotherPacketSource> source = info->mSource;
150 sp<AnotherPacketSource> source = getSource(audio);
201 sp<AnotherPacketSource> source = getSource(audio);
212 sp<AnotherPacketSource> otherSource = getSource(!audio);
253 sp<AnotherPacketSource> NuPlayer::RTSPSource::getSource(bool audio) {
258 return static_cast<AnotherPacketSource *>(source.get());
413 sp<AnotherPacketSource> source = getSource(false /* audio */);
428 sp<AnotherPacketSource> source = info->mSource;
460 sp<AnotherPacketSource> sourc
[all...]
H A DGenericSource.h32 struct AnotherPacketSource;
105 sp<AnotherPacketSource> mPackets;
185 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg);
189 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg);
H A DGenericSource.cpp22 #include "AnotherPacketSource.h"
220 new AnotherPacketSource(mAudioTrack.mSource->getFormat());
233 new AnotherPacketSource(mVideoTrack.mSource->getFormat());
610 mSubtitleTrack.mPackets = new AnotherPacketSource(NULL);
611 mTimedTextTrack.mPackets = new AnotherPacketSource(NULL);
936 sp<AnotherPacketSource> packets,
970 sp<AnotherPacketSource> packets,
1289 track->mPackets = new AnotherPacketSource(track->mSource->getFormat());
/frameworks/av/media/libstagefright/httplive/
H A DPlaylistFetcher.h29 struct AnotherPacketSource;
61 const sp<AnotherPacketSource> &audioSource,
62 const sp<AnotherPacketSource> &videoSource,
63 const sp<AnotherPacketSource> &subtitleSource,
123 KeyedVector<LiveSession::StreamType, sp<AnotherPacketSource> >
156 sp<AnotherPacketSource> mVideoBuffer;
197 const sp<AnotherPacketSource> &source,
H A DLiveSession.h29 struct AnotherPacketSource;
184 KeyedVector<StreamType, sp<AnotherPacketSource> > mDiscontinuities;
185 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources;
187 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources2;
H A DPlaylistFetcher.cpp30 #include "mpeg2ts/AnotherPacketSource.h"
82 mVideoBuffer(new AnotherPacketSource(NULL)) {
339 const sp<AnotherPacketSource> &audioSource,
340 const sp<AnotherPacketSource> &videoSource,
341 const sp<AnotherPacketSource> &subtitleSource,
473 static_cast<AnotherPacketSource *>(ptr));
482 static_cast<AnotherPacketSource *>(ptr));
491 static_cast<AnotherPacketSource *>(ptr));
523 sp<AnotherPacketSource> packetSource = mPacketSources.valueAt(i);
541 sp<AnotherPacketSource> packetSourc
[all...]
H A DLiveSession.cpp27 #include "mpeg2ts/AnotherPacketSource.h"
85 mDiscontinuities.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));
86 mPacketSources.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));
87 mPacketSources2.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));
112 sp<AnotherPacketSource> &aps = mPacketSources.editValueFor(stream);
113 sp<AnotherPacketSource> &aps2 = mPacketSources2.editValueFor(stream);
114 sp<AnotherPacketSource> tmp = aps;
129 sp<AnotherPacketSource> discontinuityQueue = mDiscontinuities.valueFor(stream);
146 sp<AnotherPacketSource> packetSource = mPacketSources.valueFor(stream);
185 sp<AnotherPacketSource> otherSourc
[all...]
/frameworks/av/media/libstagefright/include/
H A DMPEG2TSExtractor.h29 struct AnotherPacketSource;
55 Vector<sp<AnotherPacketSource> > mSourceImpls;

Completed in 81 milliseconds