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

  /frameworks/av/media/libstagefright/mpeg2ts/
AnotherPacketSource.h 32 struct AnotherPacketSource : public MediaSource {
33 AnotherPacketSource(const sp<MetaData> &meta);
68 virtual ~AnotherPacketSource();
83 DISALLOW_EVIL_CONSTRUCTORS(AnotherPacketSource);
AnotherPacketSource.cpp 17 #include "AnotherPacketSource.h"
33 AnotherPacketSource::AnotherPacketSource(const sp<MetaData> &meta)
42 void AnotherPacketSource::setFormat(const sp<MetaData> &meta) {
62 AnotherPacketSource::~AnotherPacketSource() {
65 status_t AnotherPacketSource::start(MetaData *params) {
69 status_t AnotherPacketSource::stop() {
73 sp<MetaData> AnotherPacketSource::getFormat() {
97 status_t AnotherPacketSource::dequeueAccessUnit(sp<ABuffer> *buffer)
    [all...]
Android.mk 6 AnotherPacketSource.cpp \
MPEG2TSExtractor.cpp 32 #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(
MPEG2PSExtractor.cpp 23 #include "AnotherPacketSource.h"
63 sp<AnotherPacketSource> mSource;
655 mSource = new AnotherPacketSource(meta);
ATSParser.cpp 23 #include "AnotherPacketSource.h"
131 sp<AnotherPacketSource> mSource;
891 mSource = new AnotherPacketSource(meta);
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
RTSPSource.h 30 struct AnotherPacketSource;
83 sp<AnotherPacketSource> mSource;
108 sp<AnotherPacketSource> mAudioTrack;
109 sp<AnotherPacketSource> mVideoTrack;
118 sp<AnotherPacketSource> getSource(bool audio);
GenericSource.h 28 struct AnotherPacketSource;
64 sp<AnotherPacketSource> mPackets;
StreamingSource.cpp 24 #include "AnotherPacketSource.h"
145 sp<AnotherPacketSource> source =
146 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
160 sp<AnotherPacketSource> source =
161 static_cast<AnotherPacketSource *>(mTSParser->getSource(type).get());
RTSPSource.cpp 23 #include "AnotherPacketSource.h"
129 sp<AnotherPacketSource> source = info->mSource;
148 sp<AnotherPacketSource> source = getSource(audio);
207 sp<AnotherPacketSource> source = getSource(audio);
218 sp<AnotherPacketSource> otherSource = getSource(!audio);
263 sp<AnotherPacketSource> NuPlayer::RTSPSource::getSource(bool audio) {
268 return static_cast<AnotherPacketSource *>(source.get());
423 sp<AnotherPacketSource> source = getSource(false /* audio */);
438 sp<AnotherPacketSource> source = info->mSource;
470 sp<AnotherPacketSource> source = getSource(false /* audio */)
    [all...]
GenericSource.cpp 19 #include "AnotherPacketSource.h"
136 new AnotherPacketSource(mAudioTrack.mSource->getFormat());
145 new AnotherPacketSource(mVideoTrack.mSource->getFormat());
  /frameworks/av/media/libstagefright/include/
MPEG2TSExtractor.h 29 struct AnotherPacketSource;
55 Vector<sp<AnotherPacketSource> > mSourceImpls;
  /frameworks/av/media/libstagefright/httplive/
PlaylistFetcher.h 29 struct AnotherPacketSource;
57 const sp<AnotherPacketSource> &audioSource,
58 const sp<AnotherPacketSource> &videoSource,
59 const sp<AnotherPacketSource> &subtitleSource,
107 KeyedVector<LiveSession::StreamType, sp<AnotherPacketSource> >
LiveSession.h 28 struct AnotherPacketSource;
164 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources;
166 KeyedVector<StreamType, sp<AnotherPacketSource> > mPacketSources2;
PlaylistFetcher.cpp 30 #include "mpeg2ts/AnotherPacketSource.h"
332 const sp<AnotherPacketSource> &audioSource,
333 const sp<AnotherPacketSource> &videoSource,
334 const sp<AnotherPacketSource> &subtitleSource,
461 static_cast<AnotherPacketSource *>(ptr));
470 static_cast<AnotherPacketSource *>(ptr));
479 static_cast<AnotherPacketSource *>(ptr));
513 sp<AnotherPacketSource> packetSource = mPacketSources.valueAt(i);
531 sp<AnotherPacketSource> packetSource = mPacketSources.valueAt(i);
613 sp<AnotherPacketSource> packetSource
    [all...]
LiveSession.cpp 27 #include "mpeg2ts/AnotherPacketSource.h"
81 mPacketSources.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));
82 mPacketSources2.add(indexToType(i), new AnotherPacketSource(NULL /* meta */));
99 sp<AnotherPacketSource> &aps = mPacketSources.editValueFor(stream);
100 sp<AnotherPacketSource> &aps2 = mPacketSources2.editValueFor(stream);
101 sp<AnotherPacketSource> tmp = aps;
115 sp<AnotherPacketSource> packetSource = mPacketSources.valueFor(stream);
197 sp<AnotherPacketSource> packetSource = mPacketSources.valueFor(stream);
954 sp<AnotherPacketSource> source = mPacketSources.valueAt(i);
    [all...]

Completed in 193 milliseconds