Searched refs:FileSource (Results 1 - 17 of 17) sorted by path

/frameworks/av/cmds/stagefright/
H A Drecord.cpp25 #include <media/stagefright/FileSource.h>
123 MediaExtractor::Create(new FileSource(filename));
/frameworks/av/include/media/stagefright/
H A DFileSource.h30 class FileSource : public DataSource { class in namespace:android
32 FileSource(const char *filename);
33 // FileSource takes ownership and will close the fd
34 FileSource(int fd, int64_t offset, int64_t length);
57 virtual ~FileSource();
75 FileSource(const FileSource &);
76 FileSource &operator=(const FileSource &);
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerFactory.cpp25 #include <media/stagefright/FileSource.h>
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp32 #include <media/stagefright/FileSource.h>
370 !FileSource::requiresDrm(mFd, mOffset, mLength, nullptr /* mime */)) {
374 ALOGD("FileSource remote");
379 ALOGV("IDataSource(FileSource): %p %d %lld %lld",
396 ALOGD("FileSource local");
397 mDataSource = new FileSource(mFd, mOffset, mLength);
401 // and the FileSource constructor should dup the mFd argument as needed.
/frameworks/av/media/libstagefright/
H A DAndroid.mk22 FileSource.cpp \
H A DDataSource.cpp30 #include <media/stagefright/FileSource.h>
120 source = new FileSource(uri + 7);
164 source = new FileSource(uri);
175 sp<FileSource> source = new FileSource(fd, offset, length);
H A DFileSource.cpp18 #define LOG_TAG "FileSource"
22 #include <media/stagefright/FileSource.h>
33 FileSource::FileSource(const char *filename) function in class:android::FileSource
45 mName = String8::format("FileSource(%s)", filename);
57 FileSource::FileSource(int fd, int64_t offset, int64_t length) function in class:android::FileSource
96 "FileSource(fd(%s), %lld, %lld)",
103 FileSource::~FileSource() {
[all...]
H A DNuMediaExtractor.cpp30 #include <media/stagefright/FileSource.h>
109 sp<FileSource> fileSource = new FileSource(dup(fd), offset, size);
H A DStagefrightMetadataRetriever.cpp36 #include <media/stagefright/FileSource.h>
103 mSource = new FileSource(fd, offset, length);
/frameworks/av/media/libstagefright/foundation/include/
H A DFileSource.h30 class FileSource : public DataSource { class in namespace:android
32 FileSource(const char *filename);
33 // FileSource takes ownership and will close the fd
34 FileSource(int fd, int64_t offset, int64_t length);
57 virtual ~FileSource();
75 FileSource(const FileSource &);
76 FileSource &operator=(const FileSource &);
/frameworks/av/media/libstagefright/httplive/
H A DHTTPDownloader.cpp30 #include <media/stagefright/FileSource.h>
94 mDataSource = new FileSource(url + 7);
/frameworks/av/media/libstagefright/id3/
H A Dtestid3.cpp25 #include <media/stagefright/FileSource.h>
72 sp<FileSource> file = new FileSource(path);
/frameworks/av/media/libstagefright/include/
H A DFileSource.h30 class FileSource : public DataSource { class in namespace:android
32 FileSource(const char *filename);
33 // FileSource takes ownership and will close the fd
34 FileSource(int fd, int64_t offset, int64_t length);
57 virtual ~FileSource();
75 FileSource(const FileSource &);
76 FileSource &operator=(const FileSource &);
/frameworks/av/media/libstagefright/webm/
H A DWebmFrameThread.h23 #include <media/stagefright/FileSource.h>
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java581 public static interface FileSource { interface in class:ExifInterface
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp207 // As FileSource unconditionally takes ownership of the fd and closes it, then
208 // we have to make a dup for FileSource if the app wants to keep ownership itself
215 dataSource = new FileSource(fd, mDataLocator.fdi.offset, mDataLocator.fdi.length);
H A Dandroid_AudioSfDecoder.h22 #include <media/stagefright/FileSource.h>

Completed in 452 milliseconds