Searched defs:mDataSource (Results 1 - 25 of 28) 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.h51 sp<DataSource> mDataSource; member in struct:android::MPEG2TSExtractor
H A DWVMExtractor.h88 sp<DataSource> mDataSource; member in class:android::WVMExtractor
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 DAVIExtractor.h80 sp<DataSource> mDataSource; member in struct:android::AVIExtractor
H A DMPEG4Extractor.h91 sp<DataSource> mDataSource; member in class:android::MPEG4Extractor
H A DSampleTable.h98 sp<DataSource> mDataSource; member in class:android::SampleTable
/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/media/libstagefright/matroska/
H A DMatroskaExtractor.h69 sp<DataSource> mDataSource; member in struct:android::MatroskaExtractor
/frameworks/av/include/media/stagefright/
H A DNuMediaExtractor.h98 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/media/libstagefright/
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 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 DWAVExtractor.cpp77 sp<DataSource> mDataSource; member in struct:android::WAVSource
94 : mDataSource(source),
125 mDataSource, mTrackMeta,
140 if (mDataSource->readAt(
155 if (mDataSource->readAt(offset, chunkHeader, 8) < 8) {
174 if (mDataSource->readAt(offset, formatSpec, 2) < 2) {
191 if (mDataSource->readAt(offset, formatSpec, fmtSize) < fmtSize) {
339 : mDataSource(dataSource),
455 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) {
356 ID3 id3(mDataSource, true);
397 mMeta, mDataSource, mFirstFramePos, mFixedHeader,
424 mDataSource(source),
517 ssize_t n = mDataSource
[all...]
H A DFLACExtractor.cpp57 sp<DataSource> mDataSource; member in class:android::FLACSource
117 sp<DataSource> mDataSource; member in class:android::FLACParser
271 ssize_t actual = mDataSource->readAt(mCurrentPos, buffer, requested);
306 if (OK == mDataSource->getSize(&size)) {
489 : mDataSource(dataSource),
706 : mDataSource(dataSource),
782 mParser = new FLACParser(mDataSource);
790 : mDataSource(dataSource),
812 return new FLACSource(mDataSource, mTrackMetadata);
828 mParser = new FLACParser(mDataSource, mFileMetadat
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.h134 sp<DataSource> mDataSource; member in struct:android::NuPlayer::GenericSource
/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;
/frameworks/wilhelm/src/
H A Dclasses.h67 DataLocatorFormat mDataSource; member in struct:CAudioPlayer_struct
145 DataLocatorFormat mDataSource; member in struct:CAudioRecorder_struct
331 DataLocatorFormat mDataSource; member in struct:CMediaPlayer_struct

Completed in 851 milliseconds

12