Home
last modified time | relevance | path

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

/aosp12/frameworks/base/media/java/android/media/
H A DExifInterface.java3813 int widthAndHeight = 0; in saveWebpAttributes() local
3832 widthAndHeight = totalInputStream.readInt(); in saveWebpAttributes()
3833 width = (widthAndHeight << 18) >> 18; in saveWebpAttributes()
3834 height = (widthAndHeight << 2) >> 18; in saveWebpAttributes()
3845 widthAndHeight = totalInputStream.readInt(); in saveWebpAttributes()
3848 width = ((widthAndHeight << 18) >> 18) + 1; in saveWebpAttributes()
3849 height = ((widthAndHeight << 4) >> 18) + 1; in saveWebpAttributes()
3851 alpha = widthAndHeight & (1 << 3); in saveWebpAttributes()
3880 nonHeaderOutputStream.writeInt(widthAndHeight); in saveWebpAttributes()
3883 nonHeaderOutputStream.writeInt(widthAndHeight); in saveWebpAttributes()