/frameworks/av/media/libstagefright/ |
D | FrameDecoder.cpp | 56 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 …]
|
D | Utils.cpp | 1062 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()
|
D | MPEG4Writer.cpp | 2283 int32_t tileWidth, tileHeight, gridRows, gridCols; in Track() local 2285 mMeta->findInt32(kKeyTileHeight, &tileHeight) && (tileHeight > 0) && in Track() 2289 mTileHeight = tileHeight; in Track()
|
D | ACodec.cpp | 4773 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/ |
D | PartitionedGridLayout.kt | 76 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>()
|
D | Tile.kt | 347 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/ |
D | VideoFrame.h | 41 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/ |
D | ScrollCaptureControllerTest.java | 220 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/ |
D | FakeSession.java | 62 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/ |
D | VtsHalMediaC2V1_0TargetVideoEncTest.cpp | 300 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/ |
D | StagefrightMetadataRetriever.cpp | 270 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/ |
D | HeicCompositeStream.cpp | 463 int32_t gridRows, gridCols, tileWidth, tileHeight; in onHeicFormatChanged() local 467 newFormat->findInt32(KEY_TILE_HEIGHT, &tileHeight)) { in onHeicFormatChanged() 469 mGridHeight = tileHeight; in onHeicFormatChanged()
|