Searched refs:mSize (Results 1 - 25 of 214) sorted by path

123456789

/frameworks/av/cmds/stagefright/
H A DSimplePlayer.cpp444 &info.mSize,
541 if (info->mSize > 0) {
620 size_t copy = info->mSize;
647 info->mSize -= nbytes;
H A DSimplePlayer.h68 size_t mSize; member in struct:android::SimplePlayer::BufferInfo
H A Drecord.cpp52 mSize((width * height * 3) / 2) {
53 mGroup.add_buffer(new MediaBuffer(mSize));
56 // that the buffer size mSize it set correctly above.
94 memset((*buffer)->data(), x, mSize);
95 (*buffer)->set_range(0, mSize);
113 size_t mSize;
H A Drecordvideo.cpp68 mSize((width * height * 3) / 2) {
70 mGroup.add_buffer(new MediaBuffer(mSize));
113 memset((*buffer)->data(), x, mSize);
116 (*buffer)->set_range(0, mSize);
134 size_t mSize; member in class:DummySource
/frameworks/av/include/media/
H A DLinearMap.h138 : mSize(size),
195 if (++mPos >= mSize) {
198 if (mSamples < mSize) {
279 if (position < 0) position += mSize;
354 const size_t mSize; // Size of mX and mY arrays (history). member in class:android::LinearMap
356 // (incremented after push) [0, mSize - 1].
357 size_t mSamples; // Number of valid samples in the array [0, mSize].
H A DRingBuffer.h65 size_t mSize; member in class:android::final::iterator
91 size_t mSize; member in class:android::final::const_iterator
178 mPtr{ptr}, mSize{size}, mPos{pos}, mCtr{ctr} {}
184 if (CC_UNLIKELY(mCtr == mSize)) {
185 mPos = mSize;
189 mPos = ((CC_UNLIKELY(mPos == 0)) ? mSize - 1 : mPos - 1);
195 iterator tmp{mPtr, mSize, mPos, mCtr};
222 mPtr{ptr}, mSize{size}, mPos{pos}, mCtr{ctr} {}
228 if (CC_UNLIKELY(mCtr == mSize)) {
229 mPos = mSize;
[all...]
H A Dmediascanner.h59 return mSize;
63 int32_t mSize; member in struct:android::MediaAlbumArt
/frameworks/av/include/media/nbaio/
H A DSourceAudioBufferProvider.h46 size_t mSize; // size of mAllocated in frames member in class:android::SourceAudioBufferProvider
/frameworks/av/include/media/nblog/
H A DNBLog.h312 const size_t mSize; // circular buffer size in bytes, must be a power of 2
/frameworks/av/include/media/stagefright/
H A DJPEGSource.h45 off64_t mSize; member in struct:android::JPEGSource
H A DMediaBuffer.h152 size_t mSize, mRangeOffset, mRangeLength; member in class:android::MediaBuffer
/frameworks/av/include/media/stagefright/foundation/
H A DABitReader.h64 size_t mSize; member in class:android::ABitReader
H A DAString.h99 size_t mSize; member in struct:android::AString
/frameworks/av/include/mediadrm/
H A DCryptoHal.h85 HeapBase() : mBufferId(0), mSize(0) {}
87 mBufferId(bufferId), mSize(size) {}
90 size_t getSize() const {return mSize;}
94 size_t mSize; member in struct:android::CryptoHal::HeapBase
/frameworks/av/include/private/media/
H A DVideoFrame.h46 mSize(hasData ? (bpp * width * height) : 0),
61 return sizeof(VideoFrame) + mSize + mIccSize;
71 return (uint8_t*)this + sizeof(VideoFrame) + mSize;
84 uint32_t mSize; // Number of bytes of frame data member in class:android::VideoFrame
/frameworks/av/media/extractors/mp4/
H A DMPEG4Extractor.cpp2708 se.mSize = d1 & 0x7fffffff;
5041 totalOffset += se->mSize;
5046 totalOffset += se->mSize;
H A DMPEG4Extractor.h44 size_t mSize; member in struct:android::SidxEntry
/frameworks/av/media/extractors/wav/
H A DWAVExtractor.cpp88 size_t mSize; member in struct:android::WAVSource
362 mSize(size),
438 if (pos > (off64_t)mSize) {
439 pos = mSize;
456 (mCurrentPos - mOffset >= (off64_t)mSize)
457 ? 0 : mSize - (mCurrentPos - mOffset);
/frameworks/av/media/libaaudio/src/utility/
H A DFixedBlockAdapter.cpp27 mSize = bytesPerFixedBlock;
37 mSize = 0;
H A DFixedBlockAdapter.h67 int32_t mSize = 0; // Size in bytes of the fixed size buffer. member in class:FixedBlockAdapter
H A DFixedBlockReader.cpp27 mPosition = mSize;
32 mPosition = mSize; // Indicate no data in storage.
38 int32_t dataAvailable = mSize - mPosition;
51 if (mPosition < mSize) {
56 } else if (bytesLeft >= mSize) {
58 result = mFixedBlockProcessor.onProcessFixedBlock(buffer, mSize);
59 buffer += mSize;
60 bytesLeft -= mSize;
63 result = mFixedBlockProcessor.onProcessFixedBlock(mStorage, mSize);
H A DFixedBlockWriter.cpp29 int32_t roomAvailable = mSize - mPosition;
48 if (mPosition == mSize) {
49 result = mFixedBlockProcessor.onProcessFixedBlock(mStorage, mSize);
55 while(bytesLeft > mSize && result == 0) {
56 result = mFixedBlockProcessor.onProcessFixedBlock(buffer, mSize);
57 buffer += mSize;
58 bytesLeft -= mSize;
/frameworks/av/media/libheif/
H A DHeifDecoderImpl.cpp507 if (videoFrame->mSize == 0 ||
520 videoFrame->mSize);
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp243 result->mSize = this->size();
249 instance->mSize = dataSize;
/frameworks/av/media/libmedia/include/media/
H A DCryptoHal.h85 HeapBase() : mBufferId(0), mSize(0) {}
87 mBufferId(bufferId), mSize(size) {}
90 size_t getSize() const {return mSize;}
94 size_t mSize; member in struct:android::CryptoHal::HeapBase

Completed in 244 milliseconds

123456789