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

123

/frameworks/av/cmds/stagefright/
H A Dsf2.cpp91 mSource = extractor->getTrack(i);
101 CHECK(mSource != NULL);
103 CHECK_EQ(mSource->start(), (status_t)OK);
110 sp<AMessage> format = makeFormat(mSource->getFormat());
158 CHECK_EQ(mSource->stop(), (status_t)OK);
159 mSource.clear();
244 sp<MediaSource> mSource; member in struct:Controller
421 if (mSource == NULL || mSeekState == SEEK_FLUSHING) {
453 status_t err = mSource->read(&inBuffer, &options);
H A Dstagefright.cpp416 sp<MediaSource> mSource; member in struct:DetectSyncSource
424 : mSource(source),
428 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
444 return mSource->start(params);
448 return mSource->stop();
452 return mSource->getFormat();
474 status_t err = mSource->read(buffer, options);
/frameworks/av/include/media/nbaio/
H A DSourceAudioBufferProvider.h41 const sp<NBAIO_Source> mSource; // the wrapped source member in class:android::SourceAudioBufferProvider
/frameworks/av/include/media/stagefright/
H A DAACWriter.h51 sp<MediaSource> mSource; member in struct:android::AACWriter
H A DAMRWriter.h49 sp<MediaSource> mSource; member in struct:android::AMRWriter
H A DAudioPlayer.h72 sp<MediaSource> mSource; member in class:android::AudioPlayer
H A DCameraSource.h123 sp<CameraSource> mSource; member in class:android::CameraSource::ProxyListener
H A DJPEGSource.h42 sp<DataSource> mSource; member in struct:android::JPEGSource
H A DNuMediaExtractor.h83 sp<MediaSource> mSource; member in struct:android::NuMediaExtractor::TrackInfo
H A DOMXCodec.h192 sp<MediaSource> mSource; member in struct:android::OMXCodec
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorAudioPlayer.h93 sp<MediaSource> mSource; member in class:android::VideoEditorAudioPlayer
H A DVideoEditorSRC.h59 sp<MediaSource> mSource; member in class:android::VideoEditorSRC
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DMediaBufferPuller.h68 sp<MediaSource> mSource; member in struct:android::MediaBufferPuller
/frameworks/av/media/libmediaplayerservice/
H A DRemoteDisplay.h45 sp<WifiDisplaySource> mSource; member in struct:android::RemoteDisplay
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.h59 sp<MediaSource> mSource; member in struct:android::NuPlayer::GenericSource::Track
H A DNuPlayer.h96 sp<Source> mSource; member in struct:android::NuPlayer
H A DNuPlayerStreamListener.h61 sp<IStreamSource> mSource; member in struct:android::NuPlayer::NuPlayerStreamListener
H A DRTSPSource.h78 sp<AnotherPacketSource> mSource; member in struct:android::NuPlayer::RTSPSource::TrackInfo
H A DStreamingSource.h44 sp<IStreamSource> mSource; member in struct:android::NuPlayer::StreamingSource
/frameworks/av/media/libmediaplayerservice/nuplayer/mp4/
H A DMP4Source.h42 sp<IStreamSource> mSource; member in struct:android::MP4Source
/frameworks/av/media/libstagefright/
H A DCameraSource.cpp52 wp<CameraSource> mSource; member in struct:android::CameraSourceListener
59 : mSource(source) {
74 sp<CameraSource> source = mSource.promote();
83 sp<CameraSource> source = mSource.promote();
857 mSource = source;
862 mSource->dataCallbackTimestamp(timestamp / 1000, msgType, dataPtr);
H A DMPEG2TSWriter.cpp72 sp<MediaSource> 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.cpp116 sp<DataSource> mSource; member in struct:android::MPEG4DataSource
128 : mSource(source),
149 return mSource->initCheck();
161 return mSource->readAt(offset, data, size);
165 return mSource->getSize(size);
169 return mSource->flags();
186 ssize_t err = mSource->readAt(mCachedOffset, mCache, mCachedSize);
H A DMPEG4Writer.cpp203 sp<MediaSource> mSource; member in class:android::MPEG4Writer::Track
1236 mSource(source),
1634 status_t err = mSource->start(meta.get());
1682 status_t status = mSource->stop();
1998 while (!mDone && (err = mSource->read(&buffer)) == OK) {
H A DOggExtractor.cpp99 sp<DataSource> mSource; member in struct:android::MyVorbisExtractor
208 : mSource(source),
237 ssize_t n = mSource->readAt(*pageOffset, &signature, 4);
382 if ((n = mSource->readAt(offset, header, sizeof(header)))
424 if (mSource->readAt(
502 ssize_t n = mSource->readAt(
627 if (!(mSource->flags() & DataSource::kIsCachingDataSource)
628 && mSource->getSize(&size) == OK
731 if (mSource->getSize(&size) == OK) {

Completed in 1647 milliseconds

123