Searched defs:mSource (Results 1 - 25 of 85) sorted by path

1234

/frameworks/av/cmds/stagefright/
H A Dsf2.cpp132 mSource = extractor->getTrack(i);
142 if (mSource == NULL) {
147 CHECK_EQ(mSource->start(), (status_t)OK);
154 sp<AMessage> format = makeFormat(mSource->getFormat());
201 CHECK_EQ(mSource->stop(), (status_t)OK);
202 mSource.clear();
267 sp<IMediaSource> mSource; member in struct:Controller
444 if (mSource == NULL || mSeekState == SEEK_FLUSHING) {
476 status_t err = mSource->read(&inBuffer, &options);
H A Dstagefright.cpp421 sp<IMediaSource> mSource; member in struct:DetectSyncSource
429 : mSource(source),
433 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
449 return mSource->start(params);
453 return mSource->stop();
457 return mSource->getFormat();
479 status_t err = mSource->read(buffer, options);
/frameworks/av/include/media/
H A DAVSyncSettings.h48 AVSyncSource mSource; member in struct:android::AVSyncSettings
52 : mSource(AVSYNC_SOURCE_DEFAULT),
H A DAudioPolicy.h69 audio_source_t mSource; member in union:android::AudioMixMatchCriterion::__anon40
/frameworks/av/include/media/nbaio/
H A DSourceAudioBufferProvider.h43 const sp<NBAIO_Source> mSource; // the wrapped source member in class:android::SourceAudioBufferProvider
/frameworks/av/include/media/stagefright/
H A DAACWriter.h51 sp<IMediaSource> mSource; member in struct:android::AACWriter
H A DAMRWriter.h48 sp<IMediaSource> mSource; member in struct:android::AMRWriter
H A DAudioPlayer.h69 sp<IMediaSource> mSource; member in class:android::AudioPlayer
H A DCameraSource.h146 sp<CameraSource> mSource; member in class:android::CameraSource::ProxyListener
H A DJPEGSource.h42 sp<DataSource> mSource; member in struct:android::JPEGSource
H A DNuMediaExtractor.h97 sp<IMediaSource> mSource; member in struct:android::NuMediaExtractor::TrackInfo
H A DSimpleDecodingSource.h77 sp<IMediaSource> mSource; member in class:android::SimpleDecodingSource
/frameworks/av/media/libmediaplayerservice/
H A DRemoteDisplay.h51 sp<WifiDisplaySource> mSource; member in struct:android::RemoteDisplay
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.h112 sp<IMediaSource> mSource; member in struct:android::NuPlayer::GenericSource::Track
H A DNuPlayer.h143 Mutex mSourceLock; // guard |mSource|.
144 sp<Source> mSource; member in struct:android::NuPlayer
H A DNuPlayerDecoder.h62 sp<Source> mSource; member in struct:android::NuPlayer::Decoder
H A DNuPlayerDecoderPassThrough.h52 sp<Source> mSource; member in struct:android::NuPlayer::DecoderPassThrough
H A DNuPlayerStreamListener.h61 sp<IStreamSource> mSource; member in struct:android::NuPlayer::NuPlayerStreamListener
H A DRTSPSource.h88 sp<AnotherPacketSource> mSource; member in struct:android::NuPlayer::RTSPSource::TrackInfo
H A DStreamingSource.h55 sp<IStreamSource> mSource; member in struct:android::NuPlayer::StreamingSource
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp65 wp<CameraSource> mSource; member in struct:android::CameraSourceListener
72 : mSource(source) {
90 sp<CameraSource> source = mSource.promote();
99 sp<CameraSource> source = mSource.promote();
107 sp<CameraSource> source = mSource.promote();
1263 mSource = source;
1268 mSource->dataCallbackTimestamp(timestamp / 1000, msgType, dataPtr);
1273 mSource->recordingFrameHandleCallbackTimestamp(timestamp / 1000, handle);
H A DMPEG2TSWriter.cpp72 sp<IMediaSource> mSource; member in struct:android::MPEG2TSWriter::SourceInfo
97 : mSource(source),
104 sp<MetaData> meta = mSource->getFormat();
145 mSource->stop();
149 sp<MetaData> meta = mSource->getFormat();
371 status_t err = mSource->start();
388 status_t err = mSource->read(&buffer);
H A DMPEG4Extractor.cpp196 sp<DataSource> mSource; member in struct:android::MPEG4DataSource
208 : mSource(source),
229 return mSource->initCheck();
240 return mSource->readAt(offset, data, size);
244 return mSource->getSize(size);
248 return mSource->flags();
265 ssize_t err = mSource->readAt(mCachedOffset, mCache, mCachedSize);
H A DMPEG4Writer.cpp245 sp<IMediaSource> mSource; member in class:android::MPEG4Writer::Track
1468 mSource(source),
1860 status_t err = mSource->start(meta.get());
1902 mSource->stop();
2320 while (!mDone && (err = mSource->read(&buffer)) == OK) {
2349 mMeta = mSource->getFormat(); // get output format after format change
2540 mSource->stop();
H A DMediaCodecSource.cpp72 sp<MediaSource> mSource; member in struct:android::MediaCodecSource::Puller
104 : mSource(source),
198 mSource->stop();
239 status_t err = mSource->start(static_cast<MetaData *>(obj.get()));
256 mSource->stop();
278 status_t err = mSource->read(&mbuf);

Completed in 1099 milliseconds

1234