| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| Mike Lockwood | 0cd0136 | 2010-12-30 11:54:33 -0500 | [diff] [blame] | 17 | package android.mtp; |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 18 | |
| 19 | /** |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 20 | * A class containing constants in the MTP and PTP specifications. |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 21 | */ |
| 22 | public final class MtpConstants { |
| 23 | |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 24 | // MTP Data Types |
| 25 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 26 | public static final int TYPE_UNDEFINED = 0x0000; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 27 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 28 | public static final int TYPE_INT8 = 0x0001; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 29 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 30 | public static final int TYPE_UINT8 = 0x0002; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 31 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 32 | public static final int TYPE_INT16 = 0x0003; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 33 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 34 | public static final int TYPE_UINT16 = 0x0004; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 35 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 36 | public static final int TYPE_INT32 = 0x0005; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 37 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 38 | public static final int TYPE_UINT32 = 0x0006; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 39 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 40 | public static final int TYPE_INT64 = 0x0007; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 41 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 42 | public static final int TYPE_UINT64 = 0x0008; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 43 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 44 | public static final int TYPE_INT128 = 0x0009; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 45 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 46 | public static final int TYPE_UINT128 = 0x000A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 47 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 48 | public static final int TYPE_AINT8 = 0x4001; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 49 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 50 | public static final int TYPE_AUINT8 = 0x4002; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 51 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 52 | public static final int TYPE_AINT16 = 0x4003; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 53 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 54 | public static final int TYPE_AUINT16 = 0x4004; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 55 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 56 | public static final int TYPE_AINT32 = 0x4005; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 57 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 58 | public static final int TYPE_AUINT32 = 0x4006; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 59 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 60 | public static final int TYPE_AINT64 = 0x4007; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 61 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 62 | public static final int TYPE_AUINT64 = 0x4008; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 63 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 64 | public static final int TYPE_AINT128 = 0x4009; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 65 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 66 | public static final int TYPE_AUINT128 = 0x400A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 67 | /** @hide */ |
| Mike Lockwood | e2ad6ec | 2010-10-14 18:03:25 -0400 | [diff] [blame] | 68 | public static final int TYPE_STR = 0xFFFF; |
| 69 | |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 70 | // MTP Response Codes |
| 71 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 72 | public static final int RESPONSE_UNDEFINED = 0x2000; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 73 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 74 | public static final int RESPONSE_OK = 0x2001; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 75 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 76 | public static final int RESPONSE_GENERAL_ERROR = 0x2002; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 77 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 78 | public static final int RESPONSE_SESSION_NOT_OPEN = 0x2003; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 79 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 80 | public static final int RESPONSE_INVALID_TRANSACTION_ID = 0x2004; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 81 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 82 | public static final int RESPONSE_OPERATION_NOT_SUPPORTED = 0x2005; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 83 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 84 | public static final int RESPONSE_PARAMETER_NOT_SUPPORTED = 0x2006; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 85 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 86 | public static final int RESPONSE_INCOMPLETE_TRANSFER = 0x2007; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 87 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 88 | public static final int RESPONSE_INVALID_STORAGE_ID = 0x2008; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 89 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 90 | public static final int RESPONSE_INVALID_OBJECT_HANDLE = 0x2009; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 91 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 92 | public static final int RESPONSE_DEVICE_PROP_NOT_SUPPORTED = 0x200A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 93 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 94 | public static final int RESPONSE_INVALID_OBJECT_FORMAT_CODE = 0x200B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 95 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 96 | public static final int RESPONSE_STORAGE_FULL = 0x200C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 97 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 98 | public static final int RESPONSE_OBJECT_WRITE_PROTECTED = 0x200D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 99 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 100 | public static final int RESPONSE_STORE_READ_ONLY = 0x200E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 101 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 102 | public static final int RESPONSE_ACCESS_DENIED = 0x200F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 103 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 104 | public static final int RESPONSE_NO_THUMBNAIL_PRESENT = 0x2010; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 105 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 106 | public static final int RESPONSE_SELF_TEST_FAILED = 0x2011; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 107 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 108 | public static final int RESPONSE_PARTIAL_DELETION = 0x2012; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 109 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 110 | public static final int RESPONSE_STORE_NOT_AVAILABLE = 0x2013; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 111 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 112 | public static final int RESPONSE_SPECIFICATION_BY_FORMAT_UNSUPPORTED = 0x2014; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 113 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 114 | public static final int RESPONSE_NO_VALID_OBJECT_INFO = 0x2015; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 115 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 116 | public static final int RESPONSE_INVALID_CODE_FORMAT = 0x2016; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 117 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 118 | public static final int RESPONSE_UNKNOWN_VENDOR_CODE = 0x2017; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 119 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 120 | public static final int RESPONSE_CAPTURE_ALREADY_TERMINATED = 0x2018; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 121 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 122 | public static final int RESPONSE_DEVICE_BUSY = 0x2019; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 123 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 124 | public static final int RESPONSE_INVALID_PARENT_OBJECT = 0x201A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 125 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 126 | public static final int RESPONSE_INVALID_DEVICE_PROP_FORMAT = 0x201B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 127 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 128 | public static final int RESPONSE_INVALID_DEVICE_PROP_VALUE = 0x201C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 129 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 130 | public static final int RESPONSE_INVALID_PARAMETER = 0x201D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 131 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 132 | public static final int RESPONSE_SESSION_ALREADY_OPEN = 0x201E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 133 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 134 | public static final int RESPONSE_TRANSACTION_CANCELLED = 0x201F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 135 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 136 | public static final int RESPONSE_SPECIFICATION_OF_DESTINATION_UNSUPPORTED = 0x2020; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 137 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 138 | public static final int RESPONSE_INVALID_OBJECT_PROP_CODE = 0xA801; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 139 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 140 | public static final int RESPONSE_INVALID_OBJECT_PROP_FORMAT = 0xA802; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 141 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 142 | public static final int RESPONSE_INVALID_OBJECT_PROP_VALUE = 0xA803; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 143 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 144 | public static final int RESPONSE_INVALID_OBJECT_REFERENCE = 0xA804; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 145 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 146 | public static final int RESPONSE_GROUP_NOT_SUPPORTED = 0xA805; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 147 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 148 | public static final int RESPONSE_INVALID_DATASET = 0xA806; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 149 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 150 | public static final int RESPONSE_SPECIFICATION_BY_GROUP_UNSUPPORTED = 0xA807; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 151 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 152 | public static final int RESPONSE_SPECIFICATION_BY_DEPTH_UNSUPPORTED = 0xA808; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 153 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 154 | public static final int RESPONSE_OBJECT_TOO_LARGE = 0xA809; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 155 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 156 | public static final int RESPONSE_OBJECT_PROP_NOT_SUPPORTED = 0xA80A; |
| 157 | |
| 158 | // MTP format codes |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 159 | /** Undefined format code */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 160 | public static final int FORMAT_UNDEFINED = 0x3000; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 161 | /** Format code for associations (folders and directories) */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 162 | public static final int FORMAT_ASSOCIATION = 0x3001; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 163 | /** Format code for script files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 164 | public static final int FORMAT_SCRIPT = 0x3002; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 165 | /** Format code for executable files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 166 | public static final int FORMAT_EXECUTABLE = 0x3003; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 167 | /** Format code for text files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 168 | public static final int FORMAT_TEXT = 0x3004; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 169 | /** Format code for HTML files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 170 | public static final int FORMAT_HTML = 0x3005; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 171 | /** Format code for DPOF files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 172 | public static final int FORMAT_DPOF = 0x3006; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 173 | /** Format code for AIFF audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 174 | public static final int FORMAT_AIFF = 0x3007; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 175 | /** Format code for WAV audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 176 | public static final int FORMAT_WAV = 0x3008; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 177 | /** Format code for MP3 audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 178 | public static final int FORMAT_MP3 = 0x3009; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 179 | /** Format code for AVI video files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 180 | public static final int FORMAT_AVI = 0x300A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 181 | /** Format code for MPEG video files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 182 | public static final int FORMAT_MPEG = 0x300B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 183 | /** Format code for ASF files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 184 | public static final int FORMAT_ASF = 0x300C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 185 | /** Format code for JPEG image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 186 | public static final int FORMAT_EXIF_JPEG = 0x3801; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 187 | /** Format code for TIFF EP image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 188 | public static final int FORMAT_TIFF_EP = 0x3802; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 189 | /** Format code for BMP image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 190 | public static final int FORMAT_BMP = 0x3804; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 191 | /** Format code for GIF image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 192 | public static final int FORMAT_GIF = 0x3807; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 193 | /** Format code for JFIF image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 194 | public static final int FORMAT_JFIF = 0x3808; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 195 | /** Format code for PICT image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 196 | public static final int FORMAT_PICT = 0x380A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 197 | /** Format code for PNG image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 198 | public static final int FORMAT_PNG = 0x380B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 199 | /** Format code for TIFF image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 200 | public static final int FORMAT_TIFF = 0x380D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 201 | /** Format code for JP2 files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 202 | public static final int FORMAT_JP2 = 0x380F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 203 | /** Format code for JPX files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 204 | public static final int FORMAT_JPX = 0x3810; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 205 | /** Format code for firmware files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 206 | public static final int FORMAT_UNDEFINED_FIRMWARE = 0xB802; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 207 | /** Format code for Windows image files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 208 | public static final int FORMAT_WINDOWS_IMAGE_FORMAT = 0xB881; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 209 | /** Format code for undefined audio files files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 210 | public static final int FORMAT_UNDEFINED_AUDIO = 0xB900; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 211 | /** Format code for WMA audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 212 | public static final int FORMAT_WMA = 0xB901; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 213 | /** Format code for OGG audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 214 | public static final int FORMAT_OGG = 0xB902; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 215 | /** Format code for AAC audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 216 | public static final int FORMAT_AAC = 0xB903; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 217 | /** Format code for Audible audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 218 | public static final int FORMAT_AUDIBLE = 0xB904; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 219 | /** Format code for FLAC audio files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 220 | public static final int FORMAT_FLAC = 0xB906; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 221 | /** Format code for undefined video files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 222 | public static final int FORMAT_UNDEFINED_VIDEO = 0xB980; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 223 | /** Format code for WMV video files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 224 | public static final int FORMAT_WMV = 0xB981; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 225 | /** Format code for MP4 files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 226 | public static final int FORMAT_MP4_CONTAINER = 0xB982; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 227 | /** Format code for MP2 files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 228 | public static final int FORMAT_MP2 = 0xB983; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 229 | /** Format code for 3GP files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 230 | public static final int FORMAT_3GP_CONTAINER = 0xB984; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 231 | /** Format code for undefined collections */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 232 | public static final int FORMAT_UNDEFINED_COLLECTION = 0xBA00; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 233 | /** Format code for multimedia albums */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 234 | public static final int FORMAT_ABSTRACT_MULTIMEDIA_ALBUM = 0xBA01; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 235 | /** Format code for image albums */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 236 | public static final int FORMAT_ABSTRACT_IMAGE_ALBUM = 0xBA02; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 237 | /** Format code for audio albums */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 238 | public static final int FORMAT_ABSTRACT_AUDIO_ALBUM = 0xBA03; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 239 | /** Format code for video albums */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 240 | public static final int FORMAT_ABSTRACT_VIDEO_ALBUM = 0xBA04; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 241 | /** Format code for abstract AV playlists */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 242 | public static final int FORMAT_ABSTRACT_AV_PLAYLIST = 0xBA05; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 243 | /** Format code for abstract audio playlists */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 244 | public static final int FORMAT_ABSTRACT_AUDIO_PLAYLIST = 0xBA09; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 245 | /** Format code for abstract video playlists */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 246 | public static final int FORMAT_ABSTRACT_VIDEO_PLAYLIST = 0xBA0A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 247 | /** Format code for abstract mediacasts */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 248 | public static final int FORMAT_ABSTRACT_MEDIACAST = 0xBA0B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 249 | /** Format code for WPL playlist files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 250 | public static final int FORMAT_WPL_PLAYLIST = 0xBA10; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 251 | /** Format code for M3u playlist files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 252 | public static final int FORMAT_M3U_PLAYLIST = 0xBA11; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 253 | /** Format code for MPL playlist files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 254 | public static final int FORMAT_MPL_PLAYLIST = 0xBA12; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 255 | /** Format code for ASX playlist files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 256 | public static final int FORMAT_ASX_PLAYLIST = 0xBA13; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 257 | /** Format code for PLS playlist files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 258 | public static final int FORMAT_PLS_PLAYLIST = 0xBA14; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 259 | /** Format code for undefined document files */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 260 | public static final int FORMAT_UNDEFINED_DOCUMENT = 0xBA80; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 261 | /** Format code for abstract documents */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 262 | public static final int FORMAT_ABSTRACT_DOCUMENT = 0xBA81; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 263 | /** Format code for XML documents */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 264 | public static final int FORMAT_XML_DOCUMENT = 0xBA82; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 265 | /** Format code for MS Word documents */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 266 | public static final int FORMAT_MS_WORD_DOCUMENT = 0xBA83; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 267 | /** Format code for MS Excel spreadsheets */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 268 | public static final int FORMAT_MS_EXCEL_SPREADSHEET = 0xBA85; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 269 | /** Format code for MS PowerPoint presentatiosn */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 270 | public static final int FORMAT_MS_POWERPOINT_PRESENTATION = 0xBA86; |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 271 | |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 272 | /** |
| 273 | * Returns true if the object is abstract (that is, it has no representation |
| Mike Lockwood | 62cfeeb | 2011-03-11 18:39:03 -0500 | [diff] [blame] | 274 | * in the underlying file system). |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 275 | * |
| 276 | * @param format the format of the object |
| 277 | * @return true if the object is abstract |
| 278 | */ |
| Mike Lockwood | d7456c6 | 2010-09-14 10:44:30 -0400 | [diff] [blame] | 279 | public static boolean isAbstractObject(int format) { |
| 280 | switch (format) { |
| 281 | case FORMAT_ABSTRACT_MULTIMEDIA_ALBUM: |
| 282 | case FORMAT_ABSTRACT_IMAGE_ALBUM: |
| 283 | case FORMAT_ABSTRACT_AUDIO_ALBUM: |
| 284 | case FORMAT_ABSTRACT_VIDEO_ALBUM: |
| 285 | case FORMAT_ABSTRACT_AV_PLAYLIST: |
| Mike Lockwood | d7456c6 | 2010-09-14 10:44:30 -0400 | [diff] [blame] | 286 | case FORMAT_ABSTRACT_AUDIO_PLAYLIST: |
| 287 | case FORMAT_ABSTRACT_VIDEO_PLAYLIST: |
| 288 | case FORMAT_ABSTRACT_MEDIACAST: |
| 289 | case FORMAT_ABSTRACT_DOCUMENT: |
| Mike Lockwood | d7456c6 | 2010-09-14 10:44:30 -0400 | [diff] [blame] | 290 | return true; |
| 291 | default: |
| 292 | return false; |
| 293 | } |
| 294 | } |
| 295 | |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 296 | // MTP object properties |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 297 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 298 | public static final int PROPERTY_STORAGE_ID = 0xDC01; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 299 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 300 | public static final int PROPERTY_OBJECT_FORMAT = 0xDC02; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 301 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 302 | public static final int PROPERTY_PROTECTION_STATUS = 0xDC03; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 303 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 304 | public static final int PROPERTY_OBJECT_SIZE = 0xDC04; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 305 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 306 | public static final int PROPERTY_ASSOCIATION_TYPE = 0xDC05; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 307 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 308 | public static final int PROPERTY_ASSOCIATION_DESC = 0xDC06; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 309 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 310 | public static final int PROPERTY_OBJECT_FILE_NAME = 0xDC07; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 311 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 312 | public static final int PROPERTY_DATE_CREATED = 0xDC08; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 313 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 314 | public static final int PROPERTY_DATE_MODIFIED = 0xDC09; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 315 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 316 | public static final int PROPERTY_KEYWORDS = 0xDC0A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 317 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 318 | public static final int PROPERTY_PARENT_OBJECT = 0xDC0B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 319 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 320 | public static final int PROPERTY_ALLOWED_FOLDER_CONTENTS = 0xDC0C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 321 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 322 | public static final int PROPERTY_HIDDEN = 0xDC0D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 323 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 324 | public static final int PROPERTY_SYSTEM_OBJECT = 0xDC0E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 325 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 326 | public static final int PROPERTY_PERSISTENT_UID = 0xDC41; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 327 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 328 | public static final int PROPERTY_SYNC_ID = 0xDC42; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 329 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 330 | public static final int PROPERTY_PROPERTY_BAG = 0xDC43; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 331 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 332 | public static final int PROPERTY_NAME = 0xDC44; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 333 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 334 | public static final int PROPERTY_CREATED_BY = 0xDC45; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 335 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 336 | public static final int PROPERTY_ARTIST = 0xDC46; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 337 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 338 | public static final int PROPERTY_DATE_AUTHORED = 0xDC47; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 339 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 340 | public static final int PROPERTY_DESCRIPTION = 0xDC48; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 341 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 342 | public static final int PROPERTY_URL_REFERENCE = 0xDC49; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 343 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 344 | public static final int PROPERTY_LANGUAGE_LOCALE = 0xDC4A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 345 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 346 | public static final int PROPERTY_COPYRIGHT_INFORMATION = 0xDC4B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 347 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 348 | public static final int PROPERTY_SOURCE = 0xDC4C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 349 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 350 | public static final int PROPERTY_ORIGIN_LOCATION = 0xDC4D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 351 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 352 | public static final int PROPERTY_DATE_ADDED = 0xDC4E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 353 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 354 | public static final int PROPERTY_NON_CONSUMABLE = 0xDC4F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 355 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 356 | public static final int PROPERTY_CORRUPT_UNPLAYABLE = 0xDC50; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 357 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 358 | public static final int PROPERTY_PRODUCER_SERIAL_NUMBER = 0xDC51; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 359 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 360 | public static final int PROPERTY_REPRESENTATIVE_SAMPLE_FORMAT = 0xDC81; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 361 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 362 | public static final int PROPERTY_REPRESENTATIVE_SAMPLE_SIZE = 0xDC82; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 363 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 364 | public static final int PROPERTY_REPRESENTATIVE_SAMPLE_HEIGHT = 0xDC83; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 365 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 366 | public static final int PROPERTY_REPRESENTATIVE_SAMPLE_WIDTH = 0xDC84; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 367 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 368 | public static final int PROPERTY_REPRESENTATIVE_SAMPLE_DURATION = 0xDC85; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 369 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 370 | public static final int PROPERTY_REPRESENTATIVE_SAMPLE_DATA = 0xDC86; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 371 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 372 | public static final int PROPERTY_WIDTH = 0xDC87; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 373 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 374 | public static final int PROPERTY_HEIGHT = 0xDC88; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 375 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 376 | public static final int PROPERTY_DURATION = 0xDC89; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 377 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 378 | public static final int PROPERTY_RATING = 0xDC8A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 379 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 380 | public static final int PROPERTY_TRACK = 0xDC8B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 381 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 382 | public static final int PROPERTY_GENRE = 0xDC8C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 383 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 384 | public static final int PROPERTY_CREDITS = 0xDC8D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 385 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 386 | public static final int PROPERTY_LYRICS = 0xDC8E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 387 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 388 | public static final int PROPERTY_SUBSCRIPTION_CONTENT_ID = 0xDC8F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 389 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 390 | public static final int PROPERTY_PRODUCED_BY = 0xDC90; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 391 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 392 | public static final int PROPERTY_USE_COUNT = 0xDC91; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 393 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 394 | public static final int PROPERTY_SKIP_COUNT = 0xDC92; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 395 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 396 | public static final int PROPERTY_LAST_ACCESSED = 0xDC93; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 397 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 398 | public static final int PROPERTY_PARENTAL_RATING = 0xDC94; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 399 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 400 | public static final int PROPERTY_META_GENRE = 0xDC95; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 401 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 402 | public static final int PROPERTY_COMPOSER = 0xDC96; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 403 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 404 | public static final int PROPERTY_EFFECTIVE_RATING = 0xDC97; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 405 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 406 | public static final int PROPERTY_SUBTITLE = 0xDC98; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 407 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 408 | public static final int PROPERTY_ORIGINAL_RELEASE_DATE = 0xDC99; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 409 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 410 | public static final int PROPERTY_ALBUM_NAME = 0xDC9A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 411 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 412 | public static final int PROPERTY_ALBUM_ARTIST = 0xDC9B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 413 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 414 | public static final int PROPERTY_MOOD = 0xDC9C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 415 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 416 | public static final int PROPERTY_DRM_STATUS = 0xDC9D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 417 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 418 | public static final int PROPERTY_SUB_DESCRIPTION = 0xDC9E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 419 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 420 | public static final int PROPERTY_IS_CROPPED = 0xDCD1; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 421 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 422 | public static final int PROPERTY_IS_COLOUR_CORRECTED = 0xDCD2; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 423 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 424 | public static final int PROPERTY_IMAGE_BIT_DEPTH = 0xDCD3; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 425 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 426 | public static final int PROPERTY_F_NUMBER = 0xDCD4; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 427 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 428 | public static final int PROPERTY_EXPOSURE_TIME = 0xDCD5; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 429 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 430 | public static final int PROPERTY_EXPOSURE_INDEX = 0xDCD6; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 431 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 432 | public static final int PROPERTY_TOTAL_BITRATE = 0xDE91; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 433 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 434 | public static final int PROPERTY_BITRATE_TYPE = 0xDE92; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 435 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 436 | public static final int PROPERTY_SAMPLE_RATE = 0xDE93; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 437 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 438 | public static final int PROPERTY_NUMBER_OF_CHANNELS = 0xDE94; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 439 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 440 | public static final int PROPERTY_AUDIO_BIT_DEPTH = 0xDE95; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 441 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 442 | public static final int PROPERTY_SCAN_TYPE = 0xDE97; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 443 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 444 | public static final int PROPERTY_AUDIO_WAVE_CODEC = 0xDE99; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 445 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 446 | public static final int PROPERTY_AUDIO_BITRATE = 0xDE9A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 447 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 448 | public static final int PROPERTY_VIDEO_FOURCC_CODEC = 0xDE9B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 449 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 450 | public static final int PROPERTY_VIDEO_BITRATE = 0xDE9C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 451 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 452 | public static final int PROPERTY_FRAMES_PER_THOUSAND_SECONDS = 0xDE9D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 453 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 454 | public static final int PROPERTY_KEYFRAME_DISTANCE = 0xDE9E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 455 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 456 | public static final int PROPERTY_BUFFER_SIZE = 0xDE9F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 457 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 458 | public static final int PROPERTY_ENCODING_QUALITY = 0xDEA0; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 459 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 460 | public static final int PROPERTY_ENCODING_PROFILE = 0xDEA1; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 461 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 462 | public static final int PROPERTY_DISPLAY_NAME = 0xDCE0; |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 463 | |
| 464 | // MTP device properties |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 465 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 466 | public static final int DEVICE_PROPERTY_UNDEFINED = 0x5000; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 467 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 468 | public static final int DEVICE_PROPERTY_BATTERY_LEVEL = 0x5001; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 469 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 470 | public static final int DEVICE_PROPERTY_FUNCTIONAL_MODE = 0x5002; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 471 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 472 | public static final int DEVICE_PROPERTY_IMAGE_SIZE = 0x5003; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 473 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 474 | public static final int DEVICE_PROPERTY_COMPRESSION_SETTING = 0x5004; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 475 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 476 | public static final int DEVICE_PROPERTY_WHITE_BALANCE = 0x5005; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 477 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 478 | public static final int DEVICE_PROPERTY_RGB_GAIN = 0x5006; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 479 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 480 | public static final int DEVICE_PROPERTY_F_NUMBER = 0x5007; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 481 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 482 | public static final int DEVICE_PROPERTY_FOCAL_LENGTH = 0x5008; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 483 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 484 | public static final int DEVICE_PROPERTY_FOCUS_DISTANCE = 0x5009; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 485 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 486 | public static final int DEVICE_PROPERTY_FOCUS_MODE = 0x500A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 487 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 488 | public static final int DEVICE_PROPERTY_EXPOSURE_METERING_MODE = 0x500B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 489 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 490 | public static final int DEVICE_PROPERTY_FLASH_MODE = 0x500C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 491 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 492 | public static final int DEVICE_PROPERTY_EXPOSURE_TIME = 0x500D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 493 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 494 | public static final int DEVICE_PROPERTY_EXPOSURE_PROGRAM_MODE = 0x500E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 495 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 496 | public static final int DEVICE_PROPERTY_EXPOSURE_INDEX = 0x500F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 497 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 498 | public static final int DEVICE_PROPERTY_EXPOSURE_BIAS_COMPENSATION = 0x5010; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 499 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 500 | public static final int DEVICE_PROPERTY_DATETIME = 0x5011; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 501 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 502 | public static final int DEVICE_PROPERTY_CAPTURE_DELAY = 0x5012; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 503 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 504 | public static final int DEVICE_PROPERTY_STILL_CAPTURE_MODE = 0x5013; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 505 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 506 | public static final int DEVICE_PROPERTY_CONTRAST = 0x5014; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 507 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 508 | public static final int DEVICE_PROPERTY_SHARPNESS = 0x5015; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 509 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 510 | public static final int DEVICE_PROPERTY_DIGITAL_ZOOM = 0x5016; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 511 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 512 | public static final int DEVICE_PROPERTY_EFFECT_MODE = 0x5017; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 513 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 514 | public static final int DEVICE_PROPERTY_BURST_NUMBER= 0x5018; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 515 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 516 | public static final int DEVICE_PROPERTY_BURST_INTERVAL = 0x5019; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 517 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 518 | public static final int DEVICE_PROPERTY_TIMELAPSE_NUMBER = 0x501A; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 519 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 520 | public static final int DEVICE_PROPERTY_TIMELAPSE_INTERVAL = 0x501B; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 521 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 522 | public static final int DEVICE_PROPERTY_FOCUS_METERING_MODE = 0x501C; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 523 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 524 | public static final int DEVICE_PROPERTY_UPLOAD_URL = 0x501D; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 525 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 526 | public static final int DEVICE_PROPERTY_ARTIST = 0x501E; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 527 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 528 | public static final int DEVICE_PROPERTY_COPYRIGHT_INFO = 0x501F; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 529 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 530 | public static final int DEVICE_PROPERTY_SYNCHRONIZATION_PARTNER = 0xD401; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 531 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 532 | public static final int DEVICE_PROPERTY_DEVICE_FRIENDLY_NAME = 0xD402; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 533 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 534 | public static final int DEVICE_PROPERTY_VOLUME = 0xD403; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 535 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 536 | public static final int DEVICE_PROPERTY_SUPPORTED_FORMATS_ORDERED = 0xD404; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 537 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 538 | public static final int DEVICE_PROPERTY_DEVICE_ICON = 0xD405; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 539 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 540 | public static final int DEVICE_PROPERTY_PLAYBACK_RATE = 0xD410; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 541 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 542 | public static final int DEVICE_PROPERTY_PLAYBACK_OBJECT = 0xD411; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 543 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 544 | public static final int DEVICE_PROPERTY_PLAYBACK_CONTAINER_INDEX = 0xD412; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 545 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 546 | public static final int DEVICE_PROPERTY_SESSION_INITIATOR_VERSION_INFO = 0xD406; |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 547 | /** @hide */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 548 | public static final int DEVICE_PROPERTY_PERCEIVED_DEVICE_TYPE = 0xD407; |
| 549 | |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 550 | /** |
| 551 | * Object is not protected. It may be modified and deleted, and its properties |
| 552 | * may be modified. |
| 553 | */ |
| 554 | public static final int PROTECTION_STATUS_NONE = 0; |
| 555 | |
| 556 | /** |
| 557 | * Object can not be modified or deleted and its properties can not be modified. |
| 558 | */ |
| 559 | public static final int PROTECTION_STATUS_READ_ONLY = 0x8001; |
| 560 | |
| 561 | /** |
| 562 | * Object can not be modified or deleted but its properties are modifiable. |
| 563 | */ |
| 564 | public static final int PROTECTION_STATUS_READ_ONLY_DATA = 0x8002; |
| 565 | |
| 566 | /** |
| 567 | * Object's contents can not be transfered from the device, but the object |
| 568 | * may be moved or deleted and its properties may be modified. |
| 569 | */ |
| 570 | public static final int PROTECTION_STATUS_NON_TRANSFERABLE_DATA = 0x8003; |
| 571 | |
| Mike Lockwood | 540380f | 2011-02-09 21:48:53 -0500 | [diff] [blame] | 572 | /** |
| 573 | * Association type for objects representing file system directories. |
| 574 | */ |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 575 | public static final int ASSOCIATION_TYPE_GENERIC_FOLDER = 0x0001; |
| Daichi Hirono | cf62fdc | 2016-01-06 14:55:47 +0900 | [diff] [blame^] | 576 | |
| 577 | /** Event code for UNDEFINED event */ |
| 578 | public static final int EVENT_UNDEFINED = 0x4000; |
| 579 | /** Event code for CANCEL_TRANSACTION event */ |
| 580 | public static final int EVENT_CANCEL_TRANSACTION = 0x4001; |
| 581 | /** Event code for OBJECT_ADDED event */ |
| 582 | public static final int EVENT_OBJECT_ADDED = 0x4002; |
| 583 | /** Event code for OBJECT_REMOVED event */ |
| 584 | public static final int EVENT_OBJECT_REMOVED = 0x4003; |
| 585 | /** Event code for STORE_ADDED event */ |
| 586 | public static final int EVENT_STORE_ADDED = 0x4004; |
| 587 | /** Event code for STORE_REMOVED event */ |
| 588 | public static final int EVENT_STORE_REMOVED = 0x4005; |
| 589 | /** Event code for DEVICE_PROP_CHANGED event */ |
| 590 | public static final int EVENT_DEVICE_PROP_CHANGED = 0x4006; |
| 591 | /** Event code for OBJECT_INFO_CHANGED event */ |
| 592 | public static final int EVENT_OBJECT_INFO_CHANGED = 0x4007; |
| 593 | /** Event code for DEVICE_INFO_CHANGED event */ |
| 594 | public static final int EVENT_DEVICE_INFO_CHANGED = 0x4008; |
| 595 | /** Event code for REQUEST_OBJECT_TRANSFER event */ |
| 596 | public static final int EVENT_REQUEST_OBJECT_TRANSFER = 0x4009; |
| 597 | /** Event code for STORE_FULL event */ |
| 598 | public static final int EVENT_STORE_FULL = 0x400A; |
| 599 | /** Event code for DEVICE_RESET event */ |
| 600 | public static final int EVENT_DEVICE_RESET = 0x400B; |
| 601 | /** Event code for STORAGE_INFO_CHANGED event */ |
| 602 | public static final int EVENT_STORAGE_INFO_CHANGED = 0x400C; |
| 603 | /** Event code for CAPTURE_COMPLETE event */ |
| 604 | public static final int EVENT_CAPTURE_COMPLETE = 0x400D; |
| 605 | /** Event code for UNREPORTED_STATUS event */ |
| 606 | public static final int EVENT_UNREPORTED_STATUS = 0x400E; |
| 607 | /** Event code for OBJECT_PROP_CHANGED event */ |
| 608 | public static final int EVENT_OBJECT_PROP_CHANGED = 0xC801; |
| 609 | /** Event code for OBJECT_PROP_DESC_CHANGED event */ |
| 610 | public static final int EVENT_OBJECT_PROP_DESC_CHANGED = 0xC802; |
| 611 | /** Event code for OBJECT_REFERENCES_CHANGED event */ |
| 612 | public static final int EVENT_OBJECT_REFERENCES_CHANGED = 0xC803; |
| Mike Lockwood | 5367ab6 | 2010-08-30 13:23:02 -0400 | [diff] [blame] | 613 | } |