Searched refs:offset (Results 226 - 250 of 1102) sorted by path

1234567891011>>

/frameworks/av/media/libstagefright/foundation/include/
H A DAVIExtractor.h89 ssize_t parseChunk(off64_t offset, off64_t size, int depth = 0);
90 status_t parseStreamHeader(off64_t offset, size_t size);
91 status_t parseStreamFormat(off64_t offset, size_t size);
92 status_t parseIndex(off64_t offset, size_t size);
98 off64_t *offset, size_t *size, bool *isKey,
H A DCallbackDataSource.h37 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
66 virtual ssize_t readAt(off64_t offset, void* data, size_t size);
H A DDataSource.h59 static sp<DataSource> CreateFromFd(int fd, int64_t offset, int64_t length);
66 // this returns zero; it just means the given offset is equal to, or
68 virtual ssize_t readAt(off64_t offset, void *data, size_t size) = 0;
71 bool getUInt16(off64_t offset, uint16_t *x);
72 bool getUInt24(off64_t offset, uint32_t *x); // 3 byte int, returned as a 32-bit int
73 bool getUInt32(off64_t offset, uint32_t *x);
74 bool getUInt64(off64_t offset, uint64_t *x);
87 bool getVector(off64_t offset, Vector<T>* x, size_t count,
101 virtual status_t reconnectAtOffset(off64_t /*offset*/) {
136 bool DataSource::getVector(off64_t offset, Vecto argument
[all...]
H A DDataURISource.h32 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
H A DDataUriSource.h37 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
H A DESDS.h36 status_t getCodecSpecificOffset(size_t *offset, size_t *size) const;
60 size_t offset, size_t size,
64 status_t parseESDescriptor(size_t offset, size_t size);
65 status_t parseDecoderConfigDescriptor(size_t offset, size_t size);
H A DFileSource.h34 FileSource(int fd, int64_t offset, int64_t length);
38 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
54 static bool requiresDrm(int fd, int64_t offset, int64_t length, const char *mime);
73 ssize_t readAtDRM(off64_t offset, void *data, size_t size);
H A DHTTPBase.h39 off64_t offset = 0) = 0;
H A DID3.h38 explicit ID3(const sp<DataSource> &source, bool ignoreV1 = false, off64_t offset = 0);
89 bool parseV2(const sp<DataSource> &source, off64_t offset);
H A DMPEG4Extractor.h113 status_t parseChunk(off64_t *offset, int depth);
114 status_t parseITunesMetaData(off64_t offset, size_t size);
115 status_t parseColorInfo(off64_t offset, size_t size);
116 status_t parse3GPPMetaData(off64_t offset, size_t size, int depth);
117 void parseID3v2MetaData(off64_t offset);
137 status_t parseDrmSINF(off64_t *offset, off64_t data_offset);
145 status_t parseAC3SampleEntry(off64_t offset);
146 status_t parseAC3SpecificBox(off64_t offset, uint16_t sampleRate);
H A DMediaBuffer.h89 void set_range(size_t offset, size_t length);
H A DMediaCodec.h133 size_t offset,
141 size_t offset,
156 size_t *offset,
H A DMediaHTTP.h35 off64_t offset);
41 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
47 virtual status_t reconnectAtOffset(off64_t offset);
H A DNuCachedSource2.h38 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
136 ssize_t readInternal(off64_t offset, void *data, size_t size);
137 status_t seekInternal_l(off64_t offset);
H A DNuMediaExtractor.h63 status_t setDataSource(int fd, off64_t offset, off64_t size);
H A DRemoteDataSource.h46 virtual ssize_t readAt(off64_t offset, size_t size) { argument
47 ALOGV("readAt(%lld, %zu)", (long long)offset, size);
51 return mSource->readAt(offset, mMemory->pointer(), size);
H A DSampleIterator.h73 status_t getChunkOffset(uint32_t chunk, off64_t *offset);
H A DSampleTable.h66 off64_t *offset,
H A DStagefrightMetadataRetriever.h40 virtual status_t setDataSource(int fd, int64_t offset, int64_t length);
H A DThrottledSource.h32 virtual ssize_t readAt(off64_t offset, void *data, size_t size);
53 virtual status_t reconnectAtOffset(off64_t offset) { argument
54 return mSource->reconnectAtOffset(offset);
H A DYUVImage.h30 // - getOffsets() returns the correct offset for the different channels
145 // For the given pixel location, this returns the offset of the location of y, u and v
152 // Returns the offset increments incurred in going from one data row to the next data row
161 // Given the offset return the address of the corresponding channel's data.
162 uint8_t* getYAddress(int32_t offset) const;
163 uint8_t* getUAddress(int32_t offset) const;
164 uint8_t* getVAddress(int32_t offset) const;
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DABuffer.h40 size_t offset() const { return mRangeOffset; } function in struct:android::ABuffer
42 void setRange(size_t offset, size_t size);
H A DAString.h35 AString(const AString &from, size_t offset, size_t n);
41 void setTo(const AString &from, size_t offset, size_t n);
56 void append(const AString &from, size_t offset, size_t n);
/frameworks/av/media/libstagefright/http/
H A DMediaHTTP.cpp47 off64_t /* offset */) {
93 ssize_t MediaHTTP::readAt(off64_t offset, void *data, size_t size) { argument
111 offset + numBytesRead, (uint8_t *)data + numBytesRead, copy);
151 status_t MediaHTTP::reconnectAtOffset(off64_t offset) { argument
152 return connect(mLastURI.c_str(), &mLastHeaders, offset);
/frameworks/av/media/libstagefright/httplive/
H A DLiveDataSource.cpp58 off64_t offset, void *data, size_t size) {
61 if (offset != mOffset) {
82 return readAt_l(offset, data, size);
85 ssize_t LiveDataSource::readAt(off64_t offset, void *data, size_t size) { argument
87 return readAt_l(offset, data, size);
90 ssize_t LiveDataSource::readAt_l(off64_t offset, void *data, size_t size) { argument
91 if (offset != mOffset) {
124 buffer->setRange(buffer->offset() + copy, buffer->size() - copy);
57 readAtNonBlocking( off64_t offset, void *data, size_t size) argument

Completed in 138 milliseconds

1234567891011>>