Searched refs:mSource (Results 76 - 100 of 110) sorted by relevance

12345

/frameworks/av/media/libstagefright/rtsp/
H A DARTPWriter.h75 sp<MediaSource> mSource; member in struct:android::ARTPWriter
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.h89 sp<MediaSource> mSource; member in struct:android::WebmWriter::WebmStream
H A DWebmFrameThread.h145 const sp<MediaSource> mSource; member in class:android::WebmFrameMediaSourceThread
H A DWebmWriter.cpp239 if (mStreams[idx].mSource == NULL) {
244 ALOGV("adding source %p", mStreams[idx].mSource.get());
246 mStreams[idx].mSource,
404 mStreams[streamIndex].mSource = source;
/frameworks/native/include/input/
H A DInput.h270 inline int32_t getSource() const { return mSource; }
272 inline void setSource(int32_t source) { mSource = source; }
279 int32_t mSource; member in class:android::InputEvent
558 return isTouchEvent(mSource, mAction);
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DRTSPSource.cpp130 sp<AnotherPacketSource> source = info->mSource;
428 sp<AnotherPacketSource> source = info->mSource;
478 sp<AnotherPacketSource> source = info->mSource;
493 sp<AnotherPacketSource> source = info->mSource;
573 info.mSource = source;
H A DNuPlayerDecoder.cpp49 mSource(source),
333 && mSource->feedMoreTSData() == OK) {
440 bool hasVideo = (mSource->getFormat(false /* audio */) != NULL);
442 mSource->getDuration(&durationUs) == OK &&
556 status_t err = mSource->dequeueAccessUnit(mIsAudio, &accessUnit);
577 sp<AMessage> newFormat = mSource->getFormat(mIsAudio);
H A DGenericSource.h104 sp<MediaSource> mSource; member in struct:android::NuPlayer::GenericSource::Track
H A DNuPlayer.h127 sp<Source> mSource; member in struct:android::NuPlayer
/frameworks/av/media/libstagefright/
H A DMediaCodecSource.cpp62 sp<MediaSource> mSource; member in struct:android::MediaCodecSource::Puller
78 : mSource(source),
131 // mSource->stop() is thread-safe, doing it outside the puller's
137 mSource->stop();
176 status_t err = mSource->start(static_cast<MetaData *>(obj.get()));
209 status_t err = mSource->read(&mbuf);
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 DNuMediaExtractor.cpp54 CHECK_EQ((status_t)OK, info->mSource->stop());
288 info->mSource = source;
339 CHECK_EQ((status_t)OK, info->mSource->stop());
384 status_t err = info->mSource->read(&info->mSample, &options);
H A DOMXCodec.cpp1429 mSource(source),
1549 mSource.clear();
1728 sp<MetaData> meta = mSource->getFormat();
1763 status_t err = mSource->setBuffers(buffers);
1783 sp<MetaData> meta = mSource->getFormat();
2510 initOutputFormat(mSource->getFormat());
2597 initOutputFormat(mSource->getFormat());
3141 err = mSource->read(&srcBuffer, &options);
3160 err = mSource->read(&srcBuffer);
3485 sp<MetaData> format = mSource
[all...]
/frameworks/av/cmds/stagefright/
H A Dstagefright.cpp415 sp<MediaSource> mSource; member in struct:DetectSyncSource
423 : mSource(source),
427 CHECK(mSource->getFormat()->findCString(kKeyMIMEType, &mime));
443 return mSource->start(params);
447 return mSource->stop();
451 return mSource->getFormat();
473 status_t err = mSource->read(buffer, options);
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
H A DPageContentRepository.java654 private final ParcelFileDescriptor mSource; field in class:PageContentRepository.AsyncRenderer.OpenTask
658 mSource = source;
687 return mRenderer.openDocument(mSource);
694 IoUtils.closeQuietly(mSource);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DVirtualDisplaySurface.h144 sp<IGraphicBufferProducer> mSource[2]; // indexed by SOURCE_* member in class:android::VirtualDisplaySurface
/frameworks/av/media/libstagefright/tests/
H A DSurfaceMediaSource_test.cpp598 sp<MediaSource> mSource;
601 (const sp<MediaSource> &source): mSource(source) {}
603 status_t start() { return mSource->start();}
604 status_t stop() { return mSource->stop();}
609 status_t err = mSource->read(&buffer);
/frameworks/wilhelm/src/android/
H A DMediaPlayer_to_android.cpp308 const SLDataSource *pSrc = &mp->mDataSource.u.mSource;
369 const SLDataSource *pDataSrc = &mp->mDataSource.u.mSource;
413 const SLDataSource *pDataSrc = &mp->mDataSource.u.mSource;
H A DAudioRecorder_to_android.cpp162 const SLDataSource *pAudioSrc = &ar->mDataSource.u.mSource;
307 const SLDataSource *pAudioSrc = &ar->mDataSource.u.mSource;
/frameworks/av/include/media/stagefright/
H A DCameraSource.h132 sp<CameraSource> mSource; member in class:android::CameraSource::ProxyListener
H A DOMXCodec.h192 sp<MediaSource> mSource; member in struct:android::OMXCodec
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.cpp40 : mSource(source) {
51 ssize_t n = mSource->readAt(position, buffer, length);
62 if (mSource->getSize(&size) != OK) {
81 sp<DataSource> mSource; member in struct:android::DataSourceReader
/frameworks/wilhelm/src/desktop/
H A DSndFile.c139 const SLDataSource *pAudioSrc = &thiz->mDataSource.u.mSource;
/frameworks/wilhelm/src/
H A Ddata.c797 pDataLocatorFormat->u.mSource.pLocator = &pDataLocatorFormat->mLocator;
798 pDataLocatorFormat->u.mSource.pFormat = &pDataLocatorFormat->mFormat;
/frameworks/base/core/java/android/text/
H A DTextUtils.java522 mSource = source;
544 return AndroidCharacter.getMirror(mSource.charAt(mEnd - 1 - off));
548 TextUtils.getChars(mSource, start + mStart, end + mStart,
562 private CharSequence mSource; field in class:TextUtils.Reverser

Completed in 303 milliseconds

12345