Searched defs:mDataSource (Results 1 - 25 of 32) sorted by relevance

12

/frameworks/av/media/libstagefright/include/
H A DDRMExtractor.h45 sp<DataSource> mDataSource; member in class:android::DRMExtractor
H A DOggExtractor.h48 sp<DataSource> mDataSource; member in struct:android::OggExtractor
H A DAACExtractor.h44 sp<DataSource> mDataSource; member in class:android::AACExtractor
H A DAMRExtractor.h44 sp<DataSource> mDataSource; member in class:android::AMRExtractor
H A DFLACExtractor.h44 sp<DataSource> mDataSource; member in class:android::FLACExtractor
H A DMP3Extractor.h45 sp<DataSource> mDataSource; member in class:android::MP3Extractor
H A DMPEG2TSExtractor.h55 sp<DataSource> mDataSource; member in struct:android::MPEG2TSExtractor
H A DWVMExtractor.h89 sp<DataSource> mDataSource; member in class:android::WVMExtractor
H A DFragmentedMP4Extractor.h51 sp<DataSource> mDataSource; member in class:android::FragmentedMP4Extractor
H A DMPEG2PSExtractor.h52 sp<DataSource> mDataSource; member in struct:android::MPEG2PSExtractor
H A DWAVExtractor.h45 sp<DataSource> mDataSource; member in class:android::WAVExtractor
H A DMPEG4Extractor.h59 sp<DataSource> mDataSource; member in class:android::MPEG4Extractor
H A DAVIExtractor.h80 sp<DataSource> mDataSource; member in struct:android::AVIExtractor
H A DSampleTable.h96 sp<DataSource> mDataSource; member in class:android::SampleTable
H A DLiveSession.h81 sp<LiveDataSource> mDataSource; member in struct:android::LiveSession
/frameworks/av/media/libstagefright/matroska/
H A DMatroskaExtractor.h66 sp<DataSource> mDataSource; member in struct:android::MatroskaExtractor
/frameworks/wilhelm/src/android/include/
H A DAacAdtsExtractor.h59 sp<DataSource> mDataSource; member in class:android::AacAdtsSource
88 sp<DataSource> mDataSource; member in class:android::AacAdtsExtractor
/frameworks/av/include/media/stagefright/
H A DNuMediaExtractor.h94 sp<DataSource> mDataSource; member in struct:android::NuMediaExtractor
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.h102 sp<DataSource> mDataSource; // where the raw data comes from member in class:android::AudioSfDecoder
/frameworks/av/libvideoeditor/vss/stagefrightshells/src/
H A DVideoEditorMp3Reader.cpp61 sp<DataSource> mDataSource; member in struct:android::__anon323
168 pReaderContext->mDataSource = new FileSource ((char*)pFileDescriptor);
171 if (pReaderContext->mDataSource == NULL) {
178 pReaderContext->mDataSource,MEDIA_MIMETYPE_AUDIO_MPEG);
241 pReaderContext->mDataSource.clear();
478 pReaderContext->mDataSource.clear();
509 pReaderContext->mDataSource.clear();
707 pReaderContext->mDataSource.clear();
/frameworks/av/media/libstagefright/
H A DAMRExtractor.cpp54 sp<DataSource> mDataSource; member in class:android::AMRSource
117 : mDataSource(source),
122 if (!SniffAMR(mDataSource, &mimeType, &confidence, NULL)) {
141 if (mDataSource->getSize(&streamSize) == OK) {
188 return new AMRSource(mDataSource, mMeta, mIsWide,
205 : mDataSource(source),
270 if ((err = getFrameSizeByOffset(mDataSource, mOffset,
279 ssize_t n = mDataSource->readAt(mOffset, &header, 1);
306 n = mDataSource->readAt(mOffset, buffer->data(), frameSize);
H A DAACExtractor.cpp57 sp<DataSource> mDataSource; member in class:android::AACSource
137 : mDataSource(source),
147 if (!SniffAAC(mDataSource, &mimeType, &confidence, &meta)) {
156 if (mDataSource->readAt(offset + 2, &header, 2) < 2) {
174 if (mDataSource->getSize(&streamSize) == OK) {
219 return new AACSource(mDataSource, mMeta, mOffsetVector, mFrameDurationUs);
239 : mDataSource(source),
302 if ((frameSize = getAdtsFrameLength(mDataSource, mOffset, &headerSize)) == 0) {
313 if (mDataSource->readAt(mOffset + headerSize, buffer->data(),
H A DWAVExtractor.cpp76 sp<DataSource> mDataSource; member in struct:android::WAVSource
93 : mDataSource(source),
124 mDataSource, mTrackMeta,
139 if (mDataSource->readAt(
154 if (mDataSource->readAt(offset, chunkHeader, 8) < 8) {
173 if (mDataSource->readAt(offset, formatSpec, 2) < 2) {
189 if (mDataSource->readAt(offset, formatSpec, fmtSize) < fmtSize) {
323 : mDataSource(dataSource),
415 ssize_t n = mDataSource->readAt(
H A DMP3Extractor.cpp233 sp<DataSource> mDataSource; member in class:android::MP3Source
252 mDataSource(source),
275 success = Resync(mDataSource, 0, &pos, &post_id3_pos, &header);
315 sp<XINGSeeker> seeker = XINGSeeker::CreateFromSource(mDataSource, mFirstFramePos);
318 mSeeker = VBRISeeker::CreateFromSource(mDataSource, post_id3_pos);
340 if (mDataSource->getSize(&fileSize) == OK) {
354 ID3 id3(mDataSource);
395 mMeta, mDataSource, mFirstFramePos, mFixedHeader,
421 mDataSource(source),
514 ssize_t n = mDataSource
[all...]
/frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
H A DVariableSpeed.java54 @GuardedBy("lock") private MediaPlayerDataSource mDataSource; field in class:VariableSpeed
184 check(mDataSource == null, "cannot setDataSource more than once");
185 mDataSource = source;
200 mDataSource = null;
220 check(mDataSource != null, "must setDataSource before you prepare");
223 dataSource = mDataSource;
257 dataSource = mDataSource;
299 mExecutor.execute(new PlaybackRunnable(mDataSource));
303 restartWithThisDataSource = mDataSource;

Completed in 152 milliseconds

12