HomeSort by relevance Sort by last modified time
    Searched refs:AnotherPacketSource (Results 1 - 17 of 17) sorted by null

  /frameworks/av/media/libmediaplayerservice/nuplayer/
RTSPSource.h 29 struct AnotherPacketSource;
83 sp<AnotherPacketSource> mSource;
109 sp<AnotherPacketSource> mAudioTrack;
110 sp<AnotherPacketSource> mVideoTrack;
121 sp<AnotherPacketSource> getSource(bool audio);
StreamingSource.h 28 struct AnotherPacketSource;
65 sp<AnotherPacketSource> getSource(bool audio);
StreamingSource.cpp 24 #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);
RTSPSource.cpp 23 #include "AnotherPacketSource.h"
130 sp<AnotherPacketSource> source = info->mSource;
152 sp<AnotherPacketSource> source = getSource(audio);
203 sp<AnotherPacketSource> source = getSource(audio);
214 sp<AnotherPacketSource> otherSource = getSource(!audio);
255 sp<AnotherPacketSource> NuPlayer::RTSPSource::getSource(bool audio) {
260 return static_cast<AnotherPacketSource *>(source.get());
390 sp<AnotherPacketSource> source = getSource(true /* audio */);
454 sp<AnotherPacketSource> source = getSource(false /* audio */);
469 sp<AnotherPacketSource> source = info->mSource
    [all...]
GenericSource.h 32 struct AnotherPacketSource;
110 sp<AnotherPacketSource> mPackets;
187 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg);
191 int32_t curGen, sp<AnotherPacketSource> packets, sp<AMessage> msg);
GenericSource.cpp 22 #include "AnotherPacketSource.h"
229 new AnotherPacketSource(mAudioTrack.mSource->getFormat());
242 new AnotherPacketSource(mVideoTrack.mSource->getFormat());
539 mSubtitleTrack.mPackets = new AnotherPacketSource(NULL);
540 mTimedTextTrack.mPackets = new AnotherPacketSource(NULL);
881 sp<AnotherPacketSource> packets,
915 sp<AnotherPacketSource> packets,
    [all...]
  /frameworks/av/media/libstagefright/httplive/
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,
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);
PlaylistFetcher.cpp 28 #include "mpeg2ts/AnotherPacketSource.h"
169 mVideoBuffer(new AnotherPacketSource(NULL)),
474 const sp<AnotherPacketSource> &audioSource,
475 const sp<AnotherPacketSource> &videoSource,
476 const sp<AnotherPacketSource> &subtitleSource,
477 const sp<AnotherPacketSource> &metadataSource,
653 static_cast<AnotherPacketSource *>(ptr));
662 static_cast<AnotherPacketSource *>(ptr));
671 static_cast<AnotherPacketSource *>(ptr));
680 static_cast<AnotherPacketSource *>(ptr))
    [all...]
LiveSession.cpp 26 #include "mpeg2ts/AnotherPacketSource.h"
314 mPacketSources.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));
315 mPacketSources2.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));
342 sp<AnotherPacketSource> packetSource = mPacketSources.valueFor(stream);
475 sp<AnotherPacketSource> packetSource = mPacketSources.valueFor(stream);
547 sp<AnotherPacketSource> &source = mPacketSources.editValueAt(i);
    [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.h 32 struct AnotherPacketSource : public MediaSource {
33 AnotherPacketSource(const sp<MetaData> &meta);
86 virtual ~AnotherPacketSource();
105 // AnotherPacketSource.cpp for non-empty()-ness.
123 DISALLOW_EVIL_CONSTRUCTORS(AnotherPacketSource);
AnotherPacketSource.cpp 18 #define LOG_TAG "AnotherPacketSource"
20 #include "AnotherPacketSource.h"
41 AnotherPacketSource::AnotherPacketSource(const sp<MetaData> &meta)
55 void AnotherPacketSource::setFormat(const sp<MetaData> &meta) {
81 AnotherPacketSource::~AnotherPacketSource() {
84 status_t AnotherPacketSource::start(MetaData * /* params */) {
88 status_t AnotherPacketSource::stop() {
92 sp<MetaData> AnotherPacketSource::getFormat()
    [all...]
MPEG2TSExtractor.cpp 37 #include "AnotherPacketSource.h"
47 const sp<AnotherPacketSource> &impl,
59 sp<AnotherPacketSource> mImpl;
70 const sp<AnotherPacketSource> &impl,
157 sp<AnotherPacketSource> impl =
158 (AnotherPacketSource *)mParser->getSource(
170 sp<AnotherPacketSource> impl =
171 (AnotherPacketSource *)mParser->getSource(
192 sp<AnotherPacketSource> impl = haveVideo
193 ? (AnotherPacketSource *)mParser->getSource
    [all...]
Android.mk 6 AnotherPacketSource.cpp \
MPEG2PSExtractor.cpp 23 #include "AnotherPacketSource.h"
65 sp<AnotherPacketSource> mSource;
711 mSource = new AnotherPacketSource(meta);
ATSParser.cpp 23 #include "AnotherPacketSource.h"
155 sp<AnotherPacketSource> mSource;
    [all...]
  /frameworks/av/media/libstagefright/include/
MPEG2TSExtractor.h 31 struct AnotherPacketSource;
57 Vector<sp<AnotherPacketSource> > mSourceImpls;
73 status_t feedUntilBufferAvailable(const sp<AnotherPacketSource> &impl);

Completed in 170 milliseconds