Searched refs:mSource (Results 1 - 25 of 101) sorted by path

12345

/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.cpp68 mSource = NULL;
133 mSource->stop();
138 wp<MediaSource> tmp = mSource;
139 mSource.clear();
279 if (mSource != NULL) {
280 mSource->stop();
281 mSource.clear();
284 mSource = source;
290 return mSource;
323 CHECK(mSource !
[all...]
H A DVideoEditorAudioPlayer.h93 sp<MediaSource> mSource; member in class:android::VideoEditorAudioPlayer
H A DVideoEditorSRC.cpp35 mSource = source;
51 sp<MetaData> format = mSource->getFormat();
64 ALOGV("~VideoEditorSRC %p(%p)", this, mSource.get());
69 ALOGV("start %p(%p)", this, mSource.get());
78 mSource->start();
84 ALOGV("stop %p(%p)", this, mSource.get());
93 mSource->stop();
114 ALOGV("read %p(%p)", this, mSource.get());
179 status_t err = mSource->read(&aBuffer, options);
221 status_t err = mSource
[all...]
H A DVideoEditorSRC.h59 sp<MediaSource> mSource; member in class:android::VideoEditorSRC
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DMediaBufferPuller.cpp30 : mSource(source),
134 status_t result = mSource->read(&pBuffer, NULL);
H A DMediaBufferPuller.h68 sp<MediaSource> mSource; member in struct:android::MediaBufferPuller
/frameworks/av/media/libmediaplayerservice/
H A DRemoteDisplay.cpp30 mSource(new WifiDisplaySource(mNetSession, client)) {
32 mLooper->registerHandler(mSource);
37 mSource->start(iface);
44 mSource->stop();
H A DRemoteDisplay.h45 sp<WifiDisplaySource> mSource; member in struct:android::RemoteDisplay
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp76 if (mAudioTrack.mSource == NULL) {
77 mAudioTrack.mSource = track = extractor->getTrack(i);
86 if (mVideoTrack.mSource == NULL) {
87 mVideoTrack.mSource = track = extractor->getTrack(i);
108 if (mAudioTrack.mSource != NULL) {
109 CHECK_EQ(mAudioTrack.mSource->start(), (status_t)OK);
112 new AnotherPacketSource(mAudioTrack.mSource->getFormat());
117 if (mVideoTrack.mSource != NULL) {
118 CHECK_EQ(mVideoTrack.mSource->start(), (status_t)OK);
121 new AnotherPacketSource(mVideoTrack.mSource
[all...]
H A DGenericSource.h59 sp<MediaSource> mSource; member in struct:android::NuPlayer::GenericSource::Track
H A DNuPlayer.cpp204 CHECK(mSource == NULL);
209 mSource = static_cast<Source *>(obj.get());
251 mSource->start();
286 if ((err = mSource->feedMoreTSData()) != OK) {
324 if (mSource->feedMoreTSData() == OK) {
390 mSource->getDuration(&durationUs) == OK &&
587 mSource->seekTo(seekTimeUs);
668 if (mSource != NULL) {
669 mSource->stop();
670 mSource
[all...]
H A DNuPlayer.h96 sp<Source> mSource; member in struct:android::NuPlayer
H A DNuPlayerStreamListener.cpp33 : mSource(source),
37 mSource->setListener(this);
46 mSource->setBuffers(mBuffers);
51 mSource->onBufferAvailable(i);
156 mSource->onBufferAvailable(entry->mIndex);
H A DNuPlayerStreamListener.h61 sp<IStreamSource> mSource; member in struct:android::NuPlayer::NuPlayerStreamListener
H A DRTSPSource.cpp316 sp<AnotherPacketSource> source = info->mSource;
366 sp<AnotherPacketSource> source = info->mSource;
381 sp<AnotherPacketSource> source = info->mSource;
452 info.mSource = source;

Completed in 76 milliseconds

12345