Home
last modified time | relevance | path

Searched refs:tileWidth (Results 1 – 6 of 6) sorted by relevance

/frameworks/av/media/libstagefright/
DFrameDecoder.cpp51 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocVideoFrame() argument
92 tmp = tileWidth; tileWidth = tileHeight; tileHeight = tmp; in allocVideoFrame()
107 tileWidth, tileHeight, rotationAngle, dstBpp, !metaOnly, iccSize); in allocVideoFrame()
127 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocVideoFrame() argument
129 return allocVideoFrame(trackMeta, width, height, tileWidth, tileHeight, dstBpp, in allocVideoFrame()
134 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocMetaFrame() argument
136 return allocVideoFrame(trackMeta, width, height, tileWidth, tileHeight, dstBpp, in allocMetaFrame()
161 int32_t *tileWidth, int32_t *tileHeight, int32_t *gridRows, int32_t *gridCols) { in findGridInfo() argument
162 return trackMeta->findInt32(kKeyTileWidth, tileWidth) && (*tileWidth > 0) in findGridInfo()
215 int32_t width, height, tileWidth = 0, tileHeight = 0; in getMetadataOnly() local
[all …]
DUtils.cpp1010 int32_t tileWidth, tileHeight, gridRows, gridCols; in convertMetaDataToMessage() local
1011 if (meta->findInt32(kKeyTileWidth, &tileWidth) in convertMetaDataToMessage()
1015 msg->setInt32("tile-width", tileWidth); in convertMetaDataToMessage()
1789 int32_t tileWidth, tileHeight, gridRows, gridCols; in convertMessageToMetaData() local
1790 if (msg->findInt32("tile-width", &tileWidth)) { in convertMessageToMetaData()
1791 meta->setInt32(kKeyTileWidth, tileWidth); in convertMessageToMetaData()
DMPEG4Writer.cpp2199 int32_t tileWidth, tileHeight, gridRows, gridCols; in Track() local
2200 if (mMeta->findInt32(kKeyTileWidth, &tileWidth) && (tileWidth > 0) && in Track()
2204 mTileWidth = tileWidth; in Track()
DACodec.cpp4682 int32_t tileWidth, tileHeight, gridRows, gridCols; in configureImageGrid() local
4684 if (msg->findInt32("tile-width", &tileWidth) && in configureImageGrid()
4692 tileWidth = tileHeight = gridRows = gridCols = 0; in configureImageGrid()
4703 gridType.nTileWidth = tileWidth; in configureImageGrid()
/frameworks/av/include/private/media/
DVideoFrame.h40 uint32_t tileWidth, uint32_t tileHeight, in VideoFrame() argument
44 mTileWidth(tileWidth), mTileHeight(tileHeight), mDurationUs(0), in VideoFrame()
/frameworks/av/media/codec2/hidl/1.0/vts/functional/video/
DVtsHalMediaC2V1_0TargetVideoEncTest.cpp295 int width, height, tileWidth, tileHeight; in fillByteBuffer() local
302 tileWidth = ENC_DEFAULT_FRAME_WIDTH; in fillByteBuffer()
306 tileWidth = ENC_DEFAULT_FRAME_WIDTH / 2; in fillByteBuffer()
313 for (int i = 0; i < width; i += tileWidth) { in fillByteBuffer()
314 int colsToCopy = std::min(width - i, tileWidth); in fillByteBuffer()
316 mInputData + (frmOffset + j * tileWidth), colsToCopy); in fillByteBuffer()
321 frmOffset += tileWidth * tileHeight; in fillByteBuffer()