Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/avrcpcontroller/bip/
H A DBipEncoding.java63 private static final SparseArray sIdsToEncodingNames = new SparseArray<String>(); field in BipEncoding
65 sIdsToEncodingNames.put(JPEG, "JPEG"); in sIdsToEncodingNames.put()
66 sIdsToEncodingNames.put(GIF, "GIF"); in sIdsToEncodingNames.put()
67 sIdsToEncodingNames.put(WBMP, "WBMP"); in sIdsToEncodingNames.put()
68 sIdsToEncodingNames.put(PNG, "PNG"); in sIdsToEncodingNames.put()
69 sIdsToEncodingNames.put(JPEG2000, "JPEG2000"); in sIdsToEncodingNames.put()
70 sIdsToEncodingNames.put(BMP, "BMP"); in sIdsToEncodingNames.put()
71 sIdsToEncodingNames.put(UNKNOWN, "UNKNOWN"); in sIdsToEncodingNames.put()
191 String encoding = (String) sIdsToEncodingNames.get(mType); in toString()