Searched refs:mSource (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/media/libstagefright/
H A DJPEGSource.cpp55 : mSource(source),
63 CHECK(mSource->getSize(&mSize) == OK);
122 ssize_t n = mSource->readAt(mOffset, buffer->data(), mSize - mOffset);
147 if (!mSource->getUInt16(i, &soi)) {
159 if (mSource->readAt(i++, &marker, 1) != 1) {
165 if (mSource->readAt(i++, &marker, 1) != 1) {
172 if (!mSource->getUInt16(i, &chunkSize)) {
207 if (!mSource->getUInt16(i + 1, &height)
208 || !mSource->getUInt16(i + 3, &width)) {
H A DAMRWriter.cpp62 if (mSource != NULL) {
86 mSource = source;
104 if (mStarted || mSource == NULL) {
108 status_t err = mSource->start();
143 mSource->stop();
164 status_t err = mSource->read(&buffer);
H A DAudioPlayer.cpp58 CHECK_EQ(mSource, NULL);
59 mSource = source;
64 CHECK(mSource != NULL);
68 err = mSource->start();
82 mFirstBufferResult = mSource->read(&mFirstBuffer);
93 sp<MetaData> format = mSource->getFormat();
118 mSource->stop();
146 mSource->stop();
211 mSource->stop();
216 wp<MediaSource> tmp = mSource;
[all...]
H A DCachingDataSource.cpp27 : mSource(source),
65 return mSource->initCheck();
69 return mSource->getSize(size);
73 return mSource->flags();
93 ssize_t n = mSource->readAt(page->mOffset, page->mData, mPageSize);
H A DStagefrightMetadataRetriever.cpp59 mSource = DataSource::CreateFromURI(uri);
61 if (mSource == NULL) {
65 mExtractor = MediaExtractor::Create(mSource);
68 mSource.clear();
88 mSource = new FileSource(fd, offset, length);
91 if ((err = mSource->initCheck()) != OK) {
92 mSource.clear();
97 mExtractor = MediaExtractor::Create(mSource);
100 mSource.clear();
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java44 mSource = source;
93 return mSource.charAt(off);
97 return mSource.length();
101 return AlteredCharSequence.make(mSource.subSequence(start, end),
106 TextUtils.getChars(mSource, start, end, dest, off);
126 private CharSequence mSource; field in class:AlteredCharSequence
/frameworks/base/core/java/android/text/method/
H A DPasswordTransformationMethod.java143 mSource = source;
147 return mSource.length();
151 if (mSource instanceof Spanned) {
152 Spanned sp = (Spanned) mSource;
158 return mSource.charAt(i);
169 return mSource.charAt(i);
190 TextUtils.getChars(mSource, start, end, dest, off);
196 if (mSource instanceof Spanned) {
197 Spanned sp = (Spanned) mSource;
233 private CharSequence mSource; field in class:PasswordTransformationMethod.PasswordCharSequence
[all...]
H A DReplacementTransformationMethod.java114 mSource = source;
120 return mSource.length();
124 char c = mSource.charAt(i);
151 TextUtils.getChars(mSource, start, end, dest, off);
166 private CharSequence mSource; field in class:ReplacementTransformationMethod.ReplacementCharSequence
/frameworks/base/core/java/android/text/style/
H A DImageSpan.java34 private String mSource; field in class:ImageSpan
95 mSource = source;
110 mSource = uri.toString();
163 return mSource;
/frameworks/base/media/libstagefright/codecs/amrnb/dec/
H A DAMRNBDecoder.cpp33 : mSource(source),
57 mSource->start();
79 mSource->stop();
87 sp<MetaData> srcFormat = mSource->getFormat();
134 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/amrnb/enc/
H A DAMRNBEncoder.cpp33 : mSource(source),
81 mSource->start();
109 mSource->stop();
120 sp<MetaData> srcFormat = mSource->getFormat();
157 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/amrwb/
H A DAMRWBDecoder.cpp32 : mSource(source),
61 mSource->start();
84 mSource->stop();
92 sp<MetaData> srcFormat = mSource->getFormat();
152 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/mp3dec/
H A DMP3Decoder.cpp29 : mSource(source),
62 mSource->start();
85 mSource->stop();
93 sp<MetaData> srcFormat = mSource->getFormat();
136 err = mSource->read(&mInputBuffer, options);
/frameworks/base/media/libstagefright/codecs/vorbis/dec/
H A DVorbisDecoder.cpp36 : mSource(source),
43 sp<MetaData> srcFormat = mSource->getFormat();
77 mSource->start();
79 sp<MetaData> meta = mSource->getFormat();
130 mSource->stop();
138 sp<MetaData> srcFormat = mSource->getFormat();
213 err = mSource->read(&inputBuffer, options);
/frameworks/base/include/media/stagefright/
H A DAMRWriter.h49 sp<MediaSource> mSource; member in struct:android::AMRWriter
H A DCachingDataSource.h51 sp<DataSource> mSource; member in class:android::CachingDataSource
H A DJPEGSource.h42 sp<DataSource> mSource; member in struct:android::JPEGSource
/frameworks/base/media/libstagefright/include/
H A DAACDecoder.h46 sp<MediaSource> mSource; member in struct:android::AACDecoder
H A DAMRNBDecoder.h42 sp<MediaSource> mSource; member in struct:android::AMRNBDecoder
H A DAMRNBEncoder.h42 sp<MediaSource> mSource; member in struct:android::AMRNBEncoder
H A DAMRWBDecoder.h42 sp<MediaSource> mSource; member in struct:android::AMRWBDecoder
H A DM4vH263Decoder.h46 sp<MediaSource> mSource; member in struct:android::M4vH263Decoder
H A DMP3Decoder.h44 sp<MediaSource> mSource; member in struct:android::MP3Decoder
H A DStagefrightMetadataRetriever.h44 sp<DataSource> mSource; member in struct:android::StagefrightMetadataRetriever
H A DVorbisDecoder.h49 sp<MediaSource> mSource; member in struct:android::VorbisDecoder

Completed in 332 milliseconds

12