Home
last modified time | relevance | path

Searched refs:tileHeight (Results 1 – 12 of 12) sorted by relevance

/frameworks/av/media/libstagefright/
DFrameDecoder.cpp56 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocVideoFrame() argument
114 std::swap(tileWidth, tileHeight); in allocVideoFrame()
131 tileHeight, rotationAngle, dstBpp, bitDepth, !metaOnly, iccSize); in allocVideoFrame()
151 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocVideoFrame() argument
153 return allocVideoFrame(trackMeta, width, height, tileWidth, tileHeight, dstBpp, bitDepth, in allocVideoFrame()
158 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocMetaFrame() argument
160 return allocVideoFrame(trackMeta, width, height, tileWidth, tileHeight, dstBpp, bitDepth, in allocMetaFrame()
185 int32_t *tileWidth, int32_t *tileHeight, int32_t *gridRows, int32_t *gridCols) { in findGridInfo() argument
187 && trackMeta->findInt32(kKeyTileHeight, tileHeight) && (*tileHeight > 0) in findGridInfo()
246 int32_t width, height, tileWidth = 0, tileHeight = 0; in getMetadataOnly() local
[all …]
DUtils.cpp1062 int32_t tileWidth, tileHeight, gridRows, gridCols; in convertMetaDataToMessage() local
1064 && meta->findInt32(kKeyTileHeight, &tileHeight) in convertMetaDataToMessage()
1068 msg->setInt32("tile-height", tileHeight); in convertMetaDataToMessage()
1887 int32_t tileWidth = -1, tileHeight = -1; in convertMessageToMetaData() local
1889 foundHeight = msg->findInt32("tile-height", &tileHeight); in convertMessageToMetaData()
1891 if (tileWidth <= 0 || tileHeight <= 0) { in convertMessageToMetaData()
1893 tileWidth, tileHeight); in convertMessageToMetaData()
1897 meta->setInt32(kKeyTileHeight, tileHeight); in convertMessageToMetaData()
DMPEG4Writer.cpp2283 int32_t tileWidth, tileHeight, gridRows, gridCols; in Track() local
2285 mMeta->findInt32(kKeyTileHeight, &tileHeight) && (tileHeight > 0) && in Track()
2289 mTileHeight = tileHeight; in Track()
DACodec.cpp4773 int32_t tileWidth, tileHeight, gridRows, gridCols; in configureImageGrid() local
4776 msg->findInt32("tile-height", &tileHeight) && in configureImageGrid()
4783 tileWidth = tileHeight = gridRows = gridCols = 0; in configureImageGrid()
4795 gridType.nTileHeight = tileHeight; in configureImageGrid()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/panels/ui/compose/
DPartitionedGridLayout.kt76 val largeTileHeight = tileHeight() in <lambda>()
77 val iconTileHeight = tileHeight(showLabels) in <lambda>()
117 val largeTileHeight = tileHeight() in <lambda>()
118 val iconTileHeight = tileHeight(showLabels) in <lambda>()
302 private fun gridHeight(nTiles: Int, tileHeight: Dp, columns: Int, padding: Dp): Dp { in <lambda>()
304 return ((tileHeight + padding) * rows) - padding in <lambda>()
DTile.kt347 val tileHeight = tileHeight(iconOnly && showLabels) in LazyGridScope() constant
355 Modifier.height(tileHeight).animateItem().semantics { in LazyGridScope()
481 fun tileHeight(iconWithLabel: Boolean = false): Dp { in tileHeight() method
/frameworks/av/include/private/media/
DVideoFrame.h41 uint32_t tileWidth, uint32_t tileHeight, in VideoFrame() argument
46 mTileWidth(tileWidth), mTileHeight(tileHeight), mDurationUs(0), in VideoFrame()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/scroll/
DScrollCaptureControllerTest.java220 TestScenario withTileHeight(int tileHeight) { in withTileHeight() argument
221 if (tileHeight < 0) { in withTileHeight()
224 mTileHeight = tileHeight; in withTileHeight()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/screenshot/scroll/
DFakeSession.java62 FakeSession(int pageHeight, float maxPages, int tileHeight, int visiblePageTop, in FakeSession() argument
66 mTileHeight = tileHeight; in FakeSession()
/frameworks/av/media/codec2/hal/hidl/1.0/vts/functional/video/
DVtsHalMediaC2V1_0TargetVideoEncTest.cpp300 int width, height, tileWidth, tileHeight; in fillByteBuffer() local
308 tileHeight = ENC_DEFAULT_FRAME_HEIGHT; in fillByteBuffer()
313 tileHeight = ENC_DEFAULT_FRAME_HEIGHT / 2; in fillByteBuffer()
315 for (int k = 0; k < height; k += tileHeight) { in fillByteBuffer()
316 int rowsToCopy = std::min(height - k, tileHeight); in fillByteBuffer()
326 frmOffset += tileWidth * tileHeight; in fillByteBuffer()
/frameworks/av/media/libmediaplayerservice/
DStagefrightMetadataRetriever.cpp270 int32_t tileWidth, tileHeight; in getImageInternal() local
272 && trackMeta->findInt32(kKeyTileHeight, &tileHeight) && tileHeight > 0) { in getImageInternal()
273 format->setInt32("height", tileHeight); in getImageInternal()
/frameworks/av/services/camera/libcameraservice/api2/
DHeicCompositeStream.cpp463 int32_t gridRows, gridCols, tileWidth, tileHeight; in onHeicFormatChanged() local
467 newFormat->findInt32(KEY_TILE_HEIGHT, &tileHeight)) { in onHeicFormatChanged()
469 mGridHeight = tileHeight; in onHeicFormatChanged()