HomeSort by relevance Sort by last modified time
    Searched refs:dataSource (Results 1 - 25 of 47) sorted by null

1 2

  /frameworks/av/media/libstagefright/timedtext/
TimedTextSource.cpp 22 #include <media/stagefright/DataSource.h>
48 const sp<DataSource>& dataSource, FileType filetype) {
51 return new TimedTextSRTSource(dataSource);
TimedTextDriver.cpp 25 #include <media/stagefright/DataSource.h>
209 sp<DataSource> dataSource =
210 DataSource::CreateFromURI(uri);
211 return createOutOfBandTextSource(trackIndex, mimeType, dataSource);
222 sp<DataSource> dataSource = new FileSource(dup(fd), offset, length);
223 return createOutOfBandTextSource(trackIndex, mimeType, dataSource);
229 const sp<DataSource>& dataSource) {
    [all...]
TimedTextSRTSource.h 29 class DataSource;
35 TimedTextSRTSource(const sp<DataSource>& dataSource);
49 sp<DataSource> mSource;
TimedTextSRTSource.cpp 24 #include <media/stagefright/DataSource.h>
35 TimedTextSRTSource::TimedTextSRTSource(const sp<DataSource>& dataSource)
36 : mSource(dataSource),
  /frameworks/av/media/libmediaplayerservice/nuplayer/
GenericSource.cpp 24 #include <media/stagefright/DataSource.h>
43 DataSource::RegisterDefaultSniffers();
45 sp<DataSource> dataSource =
46 DataSource::CreateFromURI(url, headers);
47 CHECK(dataSource != NULL);
49 initFromDataSource(dataSource);
58 DataSource::RegisterDefaultSniffers();
60 sp<DataSource> dataSource = new FileSource(dup(fd), offset, length)
    [all...]
GenericSource.h 30 struct DataSource;
73 void initFromDataSource(const sp<DataSource> &dataSource);
  /frameworks/av/media/libstagefright/
HTTPBase.cpp 51 HTTPBase *dataSource = createChromiumHTTPDataSource(flags);
52 if (dataSource) {
53 return dataSource;
FLACExtractor.cpp 28 #include <media/stagefright/DataSource.h>
43 const sp<DataSource> &dataSource,
57 sp<DataSource> mDataSource;
77 const sp<DataSource> &dataSource,
117 sp<DataSource> mDataSource;
465 const sp<DataSource> &dataSource,
468 : mDataSource(dataSource),
    [all...]
NuMediaExtractor.cpp 30 #include <media/stagefright/DataSource.h>
68 sp<DataSource> dataSource =
69 DataSource::CreateFromURI(path, headers);
71 if (dataSource == NULL) {
80 bool success = SniffWVM(dataSource, &mimeType, &confidence, &dummy);
88 sp<WVMExtractor> extractor = new WVMExtractor(dataSource);
94 mImpl = MediaExtractor::Create(dataSource);
121 mDataSource = dataSource;
156 status_t NuMediaExtractor::setDataSource(const sp<DataSource> &source)
    [all...]
AwesomePlayer.cpp 42 #include <media/stagefright/DataSource.h>
210 DataSource::RegisterDefaultSniffers();
325 sp<DataSource> dataSource = new FileSource(fd, offset, length);
327 status_t err = dataSource->initCheck();
333 mFileSource = dataSource;
341 return setDataSource_l(dataSource);
349 const sp<DataSource> &dataSource) {
350 sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
    [all...]
WAVExtractor.cpp 24 #include <media/stagefright/DataSource.h>
58 const sp<DataSource> &dataSource,
77 sp<DataSource> mDataSource;
93 WAVExtractor::WAVExtractor(const sp<DataSource> &source)
334 const sp<DataSource> &dataSource,
339 : mDataSource(dataSource),
530 const sp<DataSource> &source, String8 *mimeType, float *confidence,
  /external/chromium/webkit/glue/
iframe_redirect_unittest.cc 42 WebDataSource* iframe_ds = iframe->dataSource();
  /external/chromium_org/third_party/WebKit/Source/core/html/
TypeAhead.cpp 38 TypeAhead::TypeAhead(TypeAheadDataSource* dataSource)
39 : m_dataSource(dataSource)
  /frameworks/ex/variablespeed/src/com/android/ex/variablespeed/
VariableSpeed.java 216 MediaPlayerDataSource dataSource;
223 dataSource = mDataSource;
229 dataSource.setAsSourceFor(mediaPlayer);
251 MediaPlayerDataSource dataSource;
257 dataSource = mDataSource;
260 stopAndStartPlayingAgain(dataSource);
  /external/chromium_org/tools/perf/utils/results_viewer/src/
main.js 70 var dataSource = [];
81 dataSource.push(dataSourceLine);
84 return dataSource});
154 var dataSource = createYUIDataSource(this.dataSet_);
156 dataSource, {caption:'Results'});
  /frameworks/wilhelm/src/android/
android_AudioSfDecoder.cpp 182 sp<DataSource> dataSource;
192 dataSource = DataSource::CreateFromURI(mDataLocator.uriRef);
193 if (dataSource == NULL) {
210 dataSource = new FileSource(fd, mDataLocator.fdi.offset, mDataLocator.fdi.length);
211 status_t err = dataSource->initCheck();
227 sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
274 if (dataSource->getSize(&size) == OK
322 mDataSource = dataSource;
    [all...]
  /frameworks/av/include/media/stagefright/timedtext/
TimedTextDriver.h 33 class DataSource;
93 const sp<DataSource>& dataSource);
  /frameworks/av/cmds/stagefright/
stream.cpp 28 #include <media/stagefright/DataSource.h>
162 sp<DataSource> dataSource = DataSource::CreateFromURI(filename);
163 CHECK(dataSource != NULL);
165 sp<MediaExtractor> extractor = MediaExtractor::Create(dataSource);
301 DataSource::RegisterDefaultSniffers();
  /frameworks/av/media/libstagefright/include/
AVIExtractor.h 29 AVIExtractor(const sp<DataSource> &dataSource);
80 sp<DataSource> mDataSource;
121 const sp<DataSource> &source, String8 *mimeType, float *confidence,
AwesomePlayer.h 25 #include <media/stagefright/DataSource.h>
35 struct DataSource;
165 sp<DataSource> mFileSource;
253 status_t setDataSource_l(const sp<DataSource> &dataSource);
308 void checkDrmStatus(const sp<DataSource>& dataSource);
  /external/chromium_org/chrome/renderer/
loadtimes_extension_bindings.cc 102 WebDataSource* data_source = frame->dataSource();
161 WebDataSource* data_source = frame->dataSource();
page_load_histograms.cc 96 DocumentState::FromDataSource(frame->dataSource());
101 frame->dataSource()->response().httpHeaderField(kViaHeaderName)));
304 if (frame->dataSource()->response().isMultipartPayload())
308 DocumentState::FromDataSource(frame->dataSource());
775 LogPageLoadTime(document_state, frame->dataSource());
    [all...]
content_settings_observer.cc 136 frame->dataSource());
340 frame->dataSource()->response().extraData());
  /frameworks/base/media/tests/omxjpegdecoder/
omx_jpeg_decoder.cpp 125 DataSource::RegisterDefaultSniffers();
126 sp<DataSource> dataSource = new StreamSource(stream);
127 return new JPEGSource(dataSource);
  /external/chromium_org/chrome/renderer/safe_browsing/
phishing_classifier.cc 126 WebKit::WebDataSource* ds = frame->dataSource();

Completed in 702 milliseconds

1 2