/aosp12/frameworks/av/media/libstagefright/ |
H A D | FrameDecoder.cpp | 51 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocVideoFrame() argument 92 tmp = tileWidth; tileWidth = tileHeight; tileHeight = tmp; in allocVideoFrame() 127 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocVideoFrame() argument 134 int32_t width, int32_t height, int32_t tileWidth, int32_t tileHeight, in allocMetaFrame() argument 162 return trackMeta->findInt32(kKeyTileWidth, tileWidth) && (*tileWidth > 0) in findGridInfo() 215 int32_t width, height, tileWidth = 0, tileHeight = 0; in getMetadataOnly() local 226 tileWidth = tileHeight = 0; in getMetadataOnly() 798 int32_t tileWidth, tileHeight, gridRows, gridCols; in onGetFormatAndSeekOptions() local 805 gridCols, gridRows, tileWidth, tileHeight); in onGetFormatAndSeekOptions() 813 overrideMeta->setInt32(kKeyWidth, tileWidth); in onGetFormatAndSeekOptions() [all …]
|
H A D | Utils.cpp | 1010 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()
|
H A D | MPEG4Writer.cpp | 2199 int32_t tileWidth, tileHeight, gridRows, gridCols; in Track() local 2200 if (mMeta->findInt32(kKeyTileWidth, &tileWidth) && (tileWidth > 0) && in Track() 2204 mTileWidth = tileWidth; in Track()
|
H A D | ACodec.cpp | 4682 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()
|
/aosp12/frameworks/av/include/private/media/ |
H A D | VideoFrame.h | 40 uint32_t tileWidth, uint32_t tileHeight, in VideoFrame() argument 44 mTileWidth(tileWidth), mTileHeight(tileHeight), mDurationUs(0), in VideoFrame()
|
/aosp12/frameworks/av/media/codec2/hidl/1.0/vts/functional/video/ |
H A D | VtsHalMediaC2V1_0TargetVideoEncTest.cpp | 296 int width, height, tileWidth, tileHeight; in fillByteBuffer() local 303 tileWidth = ENC_DEFAULT_FRAME_WIDTH; in fillByteBuffer() 307 tileWidth = ENC_DEFAULT_FRAME_WIDTH / 2; in fillByteBuffer() 314 for (int i = 0; i < width; i += tileWidth) { in fillByteBuffer() 315 int colsToCopy = std::min(width - i, tileWidth); in fillByteBuffer() 317 mInputData + (frmOffset + j * tileWidth), colsToCopy); in fillByteBuffer() 322 frmOffset += tileWidth * tileHeight; in fillByteBuffer()
|
/aosp12/hardware/libhardware/modules/gralloc/ |
H A D | gralloc.cpp | 231 const size_t tileWidth = 2; in gralloc_alloc() local 234 size_t stride = align(width, tileWidth); in gralloc_alloc()
|