libmtp 1.1.12
|
00001 /* ptp.h 00002 * 00003 * Copyright (C) 2001 Mariusz Woloszyn <emsi@ipartners.pl> 00004 * Copyright (C) 2003-2014 Marcus Meissner <marcus@jet.franken.de> 00005 * Copyright (C) 2006-2008 Linus Walleij <triad@df.lth.se> 00006 * 00007 * This library is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public 00009 * License as published by the Free Software Foundation; either 00010 * version 2 of the License, or (at your option) any later version. 00011 * 00012 * This library is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Lesser General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with this library; if not, write to the 00019 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 00020 * Boston, MA 02110-1301 USA 00021 */ 00022 00023 #ifndef __PTP_H__ 00024 #define __PTP_H__ 00025 00026 #include <stdarg.h> 00027 #include <time.h> 00028 #if defined(HAVE_ICONV) && defined(HAVE_LANGINFO_H) 00029 #include <iconv.h> 00030 #endif 00031 #include "gphoto2-endian.h" 00032 #include "device-flags.h" 00033 00034 #ifdef __cplusplus 00035 extern "C" { 00036 #endif /* __cplusplus */ 00037 00038 /* PTP datalayer byteorder */ 00039 00040 #define PTP_DL_BE 0xF0 00041 #define PTP_DL_LE 0x0F 00042 00043 /* USB interface class */ 00044 #ifndef USB_CLASS_PTP 00045 #define USB_CLASS_PTP 6 00046 #endif 00047 00048 /* PTP request/response/event general PTP container (transport independent) */ 00049 00050 struct _PTPContainer { 00051 uint16_t Code; 00052 uint32_t SessionID; 00053 uint32_t Transaction_ID; 00054 /* params may be of any type of size less or equal to uint32_t */ 00055 uint32_t Param1; 00056 uint32_t Param2; 00057 uint32_t Param3; 00058 /* events can only have three parameters */ 00059 uint32_t Param4; 00060 uint32_t Param5; 00061 /* the number of meaningfull parameters */ 00062 uint8_t Nparam; 00063 }; 00064 typedef struct _PTPContainer PTPContainer; 00065 00066 /* PTP USB Bulk-Pipe container */ 00067 /* USB bulk max packet length for high speed endpoints */ 00068 /* The max packet is set to 512 bytes. The spec says 00069 * "end of data transfers are signaled by short packets or NULL 00070 * packets". It never says anything about 512, but current 00071 * implementations seem to have chosen this value, which also 00072 * happens to be the size of an USB 2.0 HS endpoint, even though 00073 * this is not necessary. 00074 * 00075 * Previously we had this as 4096 for MTP devices. We have found 00076 * and fixed the bugs that made this necessary and it can be 512 again. 00077 * 00078 * USB 3.0 has now 1024 byte EPs. 00079 */ 00080 #define PTP_USB_BULK_HS_MAX_PACKET_LEN_WRITE 512 00081 #define PTP_USB_BULK_HS_MAX_PACKET_LEN_READ 512 00082 #define PTP_USB_BULK_SS_MAX_PACKET_LEN_WRITE 1024 00083 #define PTP_USB_BULK_SS_MAX_PACKET_LEN_READ 1024 00084 #define PTP_USB_BULK_HDR_LEN (2*sizeof(uint32_t)+2*sizeof(uint16_t)) 00085 #define PTP_USB_BULK_PAYLOAD_LEN_WRITE (PTP_USB_BULK_SS_MAX_PACKET_LEN_WRITE-PTP_USB_BULK_HDR_LEN) 00086 #define PTP_USB_BULK_PAYLOAD_LEN_READ (PTP_USB_BULK_SS_MAX_PACKET_LEN_READ-PTP_USB_BULK_HDR_LEN) 00087 #define PTP_USB_BULK_REQ_LEN (PTP_USB_BULK_HDR_LEN+5*sizeof(uint32_t)) 00088 00089 struct _PTPUSBBulkContainer { 00090 uint32_t length; 00091 uint16_t type; 00092 uint16_t code; 00093 uint32_t trans_id; 00094 union { 00095 struct { 00096 uint32_t param1; 00097 uint32_t param2; 00098 uint32_t param3; 00099 uint32_t param4; 00100 uint32_t param5; 00101 } params; 00102 /* this must be set to the maximum of PTP_USB_BULK_PAYLOAD_LEN_WRITE 00103 * and PTP_USB_BULK_PAYLOAD_LEN_READ */ 00104 unsigned char data[PTP_USB_BULK_PAYLOAD_LEN_READ]; 00105 } payload; 00106 }; 00107 typedef struct _PTPUSBBulkContainer PTPUSBBulkContainer; 00108 00109 /* PTP USB Asynchronous Event Interrupt Data Format */ 00110 struct _PTPUSBEventContainer { 00111 uint32_t length; 00112 uint16_t type; 00113 uint16_t code; 00114 uint32_t trans_id; 00115 uint32_t param1; 00116 uint32_t param2; 00117 uint32_t param3; 00118 }; 00119 typedef struct _PTPUSBEventContainer PTPUSBEventContainer; 00120 00121 struct _PTPCanon_directtransfer_entry { 00122 uint32_t oid; 00123 char *str; 00124 }; 00125 typedef struct _PTPCanon_directtransfer_entry PTPCanon_directtransfer_entry; 00126 00127 /* USB container types */ 00128 00129 #define PTP_USB_CONTAINER_UNDEFINED 0x0000 00130 #define PTP_USB_CONTAINER_COMMAND 0x0001 00131 #define PTP_USB_CONTAINER_DATA 0x0002 00132 #define PTP_USB_CONTAINER_RESPONSE 0x0003 00133 #define PTP_USB_CONTAINER_EVENT 0x0004 00134 00135 /* PTP/IP definitions */ 00136 #define PTPIP_INIT_COMMAND_REQUEST 1 00137 #define PTPIP_INIT_COMMAND_ACK 2 00138 #define PTPIP_INIT_EVENT_REQUEST 3 00139 #define PTPIP_INIT_EVENT_ACK 4 00140 #define PTPIP_INIT_FAIL 5 00141 #define PTPIP_CMD_REQUEST 6 00142 #define PTPIP_CMD_RESPONSE 7 00143 #define PTPIP_EVENT 8 00144 #define PTPIP_START_DATA_PACKET 9 00145 #define PTPIP_DATA_PACKET 10 00146 #define PTPIP_CANCEL_TRANSACTION 11 00147 #define PTPIP_END_DATA_PACKET 12 00148 #define PTPIP_PING 13 00149 #define PTPIP_PONG 14 00150 00151 struct _PTPIPHeader { 00152 uint32_t length; 00153 uint32_t type; 00154 }; 00155 typedef struct _PTPIPHeader PTPIPHeader; 00156 00157 /* Vendor IDs */ 00158 #define PTP_VENDOR_EASTMAN_KODAK 0x00000001 00159 #define PTP_VENDOR_SEIKO_EPSON 0x00000002 00160 #define PTP_VENDOR_AGILENT 0x00000003 00161 #define PTP_VENDOR_POLAROID 0x00000004 00162 #define PTP_VENDOR_AGFA_GEVAERT 0x00000005 00163 #define PTP_VENDOR_MICROSOFT 0x00000006 00164 #define PTP_VENDOR_EQUINOX 0x00000007 00165 #define PTP_VENDOR_VIEWQUEST 0x00000008 00166 #define PTP_VENDOR_STMICROELECTRONICS 0x00000009 00167 #define PTP_VENDOR_NIKON 0x0000000A 00168 #define PTP_VENDOR_CANON 0x0000000B 00169 #define PTP_VENDOR_FOTONATION 0x0000000C 00170 #define PTP_VENDOR_PENTAX 0x0000000D 00171 #define PTP_VENDOR_FUJI 0x0000000E 00172 /* not from standards papers, but from traces: */ 00173 #define PTP_VENDOR_SONY 0x00000011 /* observed in the A900 */ 00174 #define PTP_VENDOR_SAMSUNG 0x0000001a /* observed in the Samsung NX1000 */ 00175 /* Vendor extension ID used for MTP (occasionaly, usualy 6 is used) */ 00176 #define PTP_VENDOR_MTP 0xffffffff 00177 00178 /* gphoto overrides */ 00179 #define PTP_VENDOR_GP_OLYMPUS 0xfffffffe 00180 00181 /* Operation Codes */ 00182 00183 /* PTP v1.0 operation codes */ 00184 #define PTP_OC_Undefined 0x1000 00185 #define PTP_OC_GetDeviceInfo 0x1001 00186 #define PTP_OC_OpenSession 0x1002 00187 #define PTP_OC_CloseSession 0x1003 00188 #define PTP_OC_GetStorageIDs 0x1004 00189 #define PTP_OC_GetStorageInfo 0x1005 00190 #define PTP_OC_GetNumObjects 0x1006 00191 #define PTP_OC_GetObjectHandles 0x1007 00192 #define PTP_OC_GetObjectInfo 0x1008 00193 #define PTP_OC_GetObject 0x1009 00194 #define PTP_OC_GetThumb 0x100A 00195 #define PTP_OC_DeleteObject 0x100B 00196 #define PTP_OC_SendObjectInfo 0x100C 00197 #define PTP_OC_SendObject 0x100D 00198 #define PTP_OC_InitiateCapture 0x100E 00199 #define PTP_OC_FormatStore 0x100F 00200 #define PTP_OC_ResetDevice 0x1010 00201 #define PTP_OC_SelfTest 0x1011 00202 #define PTP_OC_SetObjectProtection 0x1012 00203 #define PTP_OC_PowerDown 0x1013 00204 #define PTP_OC_GetDevicePropDesc 0x1014 00205 #define PTP_OC_GetDevicePropValue 0x1015 00206 #define PTP_OC_SetDevicePropValue 0x1016 00207 #define PTP_OC_ResetDevicePropValue 0x1017 00208 #define PTP_OC_TerminateOpenCapture 0x1018 00209 #define PTP_OC_MoveObject 0x1019 00210 #define PTP_OC_CopyObject 0x101A 00211 #define PTP_OC_GetPartialObject 0x101B 00212 #define PTP_OC_InitiateOpenCapture 0x101C 00213 /* PTP v1.1 operation codes */ 00214 #define PTP_OC_StartEnumHandles 0x101D 00215 #define PTP_OC_EnumHandles 0x101E 00216 #define PTP_OC_StopEnumHandles 0x101F 00217 #define PTP_OC_GetVendorExtensionMaps 0x1020 00218 #define PTP_OC_GetVendorDeviceInfo 0x1021 00219 #define PTP_OC_GetResizedImageObject 0x1022 00220 #define PTP_OC_GetFilesystemManifest 0x1023 00221 #define PTP_OC_GetStreamInfo 0x1024 00222 #define PTP_OC_GetStream 0x1025 00223 00224 /* Eastman Kodak extension Operation Codes */ 00225 #define PTP_OC_EK_GetSerial 0x9003 00226 #define PTP_OC_EK_SetSerial 0x9004 00227 #define PTP_OC_EK_SendFileObjectInfo 0x9005 00228 #define PTP_OC_EK_SendFileObject 0x9006 00229 #define PTP_OC_EK_SetText 0x9008 00230 00231 /* Canon extension Operation Codes */ 00232 #define PTP_OC_CANON_GetPartialObjectInfo 0x9001 00233 /* 9002 - sends 2 uint32, nothing back */ 00234 #define PTP_OC_CANON_SetObjectArchive 0x9002 00235 #define PTP_OC_CANON_KeepDeviceOn 0x9003 00236 #define PTP_OC_CANON_LockDeviceUI 0x9004 00237 #define PTP_OC_CANON_UnlockDeviceUI 0x9005 00238 #define PTP_OC_CANON_GetObjectHandleByName 0x9006 00239 /* no 9007 observed yet */ 00240 #define PTP_OC_CANON_InitiateReleaseControl 0x9008 00241 #define PTP_OC_CANON_TerminateReleaseControl 0x9009 00242 #define PTP_OC_CANON_TerminatePlaybackMode 0x900A 00243 #define PTP_OC_CANON_ViewfinderOn 0x900B 00244 #define PTP_OC_CANON_ViewfinderOff 0x900C 00245 #define PTP_OC_CANON_DoAeAfAwb 0x900D 00246 00247 /* 900e - send nothing, gets 5 uint16t in 32bit entities back in 20byte datablob */ 00248 #define PTP_OC_CANON_GetCustomizeSpec 0x900E 00249 #define PTP_OC_CANON_GetCustomizeItemInfo 0x900F 00250 #define PTP_OC_CANON_GetCustomizeData 0x9010 00251 #define PTP_OC_CANON_SetCustomizeData 0x9011 00252 #define PTP_OC_CANON_GetCaptureStatus 0x9012 00253 #define PTP_OC_CANON_CheckEvent 0x9013 00254 #define PTP_OC_CANON_FocusLock 0x9014 00255 #define PTP_OC_CANON_FocusUnlock 0x9015 00256 #define PTP_OC_CANON_GetLocalReleaseParam 0x9016 00257 #define PTP_OC_CANON_SetLocalReleaseParam 0x9017 00258 #define PTP_OC_CANON_AskAboutPcEvf 0x9018 00259 #define PTP_OC_CANON_SendPartialObject 0x9019 00260 #define PTP_OC_CANON_InitiateCaptureInMemory 0x901A 00261 #define PTP_OC_CANON_GetPartialObjectEx 0x901B 00262 #define PTP_OC_CANON_SetObjectTime 0x901C 00263 #define PTP_OC_CANON_GetViewfinderImage 0x901D 00264 #define PTP_OC_CANON_GetObjectAttributes 0x901E 00265 #define PTP_OC_CANON_ChangeUSBProtocol 0x901F 00266 #define PTP_OC_CANON_GetChanges 0x9020 00267 #define PTP_OC_CANON_GetObjectInfoEx 0x9021 00268 #define PTP_OC_CANON_InitiateDirectTransfer 0x9022 00269 #define PTP_OC_CANON_TerminateDirectTransfer 0x9023 00270 #define PTP_OC_CANON_SendObjectInfoByPath 0x9024 00271 #define PTP_OC_CANON_SendObjectByPath 0x9025 00272 #define PTP_OC_CANON_InitiateDirectTansferEx 0x9026 00273 #define PTP_OC_CANON_GetAncillaryObjectHandles 0x9027 00274 #define PTP_OC_CANON_GetTreeInfo 0x9028 00275 #define PTP_OC_CANON_GetTreeSize 0x9029 00276 #define PTP_OC_CANON_NotifyProgress 0x902A 00277 #define PTP_OC_CANON_NotifyCancelAccepted 0x902B 00278 /* 902c: no parms, read 3 uint32 in data, no response parms */ 00279 #define PTP_OC_CANON_902C 0x902C 00280 #define PTP_OC_CANON_GetDirectory 0x902D 00281 #define PTP_OC_CANON_902E 0x902E 00282 00283 #define PTP_OC_CANON_SetPairingInfo 0x9030 00284 #define PTP_OC_CANON_GetPairingInfo 0x9031 00285 #define PTP_OC_CANON_DeletePairingInfo 0x9032 00286 #define PTP_OC_CANON_GetMACAddress 0x9033 00287 /* 9034: 1 param, no parms returned */ 00288 #define PTP_OC_CANON_SetDisplayMonitor 0x9034 00289 #define PTP_OC_CANON_PairingComplete 0x9035 00290 #define PTP_OC_CANON_GetWirelessMAXChannel 0x9036 00291 00292 #define PTP_OC_CANON_GetWebServiceSpec 0x9068 00293 #define PTP_OC_CANON_GetWebServiceData 0x9069 00294 #define PTP_OC_CANON_SetWebServiceData 0x906B 00295 #define PTP_OC_CANON_GetRootCertificateSpec 0x906C 00296 #define PTP_OC_CANON_GetRootCertificateData 0x906D 00297 #define PTP_OC_CANON_SetRootCertificateData 0x906F 00298 00299 /* 9101: no args, 8 byte data (01 00 00 00 00 00 00 00), no resp data. */ 00300 #define PTP_OC_CANON_EOS_GetStorageIDs 0x9101 00301 /* 9102: 1 arg (0) 00302 * 0x28 bytes of data: 00303 00000000: 34 00 00 00 02 00 02 91 0a 00 00 00 04 00 03 00 00304 00000010: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00305 00000020: 00 00 ff ff ff ff 03 43 00 46 00 00 00 03 41 00 00306 00000030: 3a 00 00 00 00307 * no resp args 00308 */ 00309 #define PTP_OC_CANON_EOS_GetStorageInfo 0x9102 00310 #define PTP_OC_CANON_EOS_GetObjectInfo 0x9103 00311 #define PTP_OC_CANON_EOS_GetObject 0x9104 00312 #define PTP_OC_CANON_EOS_DeleteObject 0x9105 00313 #define PTP_OC_CANON_EOS_FormatStore 0x9106 00314 #define PTP_OC_CANON_EOS_GetPartialObject 0x9107 00315 #define PTP_OC_CANON_EOS_GetDeviceInfoEx 0x9108 00316 00317 /* sample1: 00318 * 3 cmdargs: 1,0xffffffff,00 00 10 00; 00319 * data: 00320 00000000: 48 00 00 00 02 00 09 91 12 00 00 00 01 00 00 00 00321 00000010: 38 00 00 00 00 00 00 30 01 00 00 00 01 30 00 00 00322 00000020: 01 00 00 00 10 00 00 00 00 00 00 00 00 00 00 20 00323 00000030: 00 00 00 30 44 43 49 4d 00 00 00 00 00 00 00 00 DCIM 00324 00000040: 00 00 00 00 cc c3 01 46 00325 * 2 respargs: 0x0, 0x3c 00326 * 00327 * sample2: 00328 * 00329 00000000: 18 00 00 00 01 00 09 91 15 00 00 00 01 00 00 00 00330 00000010: 00 00 00 30 00 00 10 00 00331 00332 00000000: 48 00 00 00 02 00 09 91 15 00 00 00 01 00 00 00 00333 00000010: 38 00 00 00 00 00 9c 33 01 00 00 00 01 30 00 00 00334 00000020: 01 00 00 00 10 00 00 00 00 00 00 00 00 00 00 30 00335 00000030: 00 00 9c 33 32 33 31 43 41 4e 4f 4e 00 00 00 00 231CANON 00336 00000040: 00 00 00 00 cc c3 01 46 00337 00338 */ 00339 #define PTP_OC_CANON_EOS_GetObjectInfoEx 0x9109 00340 #define PTP_OC_CANON_EOS_GetThumbEx 0x910A 00341 #define PTP_OC_CANON_EOS_SendPartialObject 0x910B 00342 #define PTP_OC_CANON_EOS_SetObjectAttributes 0x910C 00343 #define PTP_OC_CANON_EOS_GetObjectTime 0x910D 00344 #define PTP_OC_CANON_EOS_SetObjectTime 0x910E 00345 00346 /* 910f: no args, no data, 1 response arg (0). */ 00347 #define PTP_OC_CANON_EOS_RemoteRelease 0x910F 00348 /* Marcus: looks more like "Set DeviceProperty" in the trace. 00349 * 00350 * no cmd args 00351 * data phase (0xc, 0xd11c, 0x1) 00352 * no resp args 00353 */ 00354 #define PTP_OC_CANON_EOS_SetDevicePropValueEx 0x9110 00355 #define PTP_OC_CANON_EOS_GetRemoteMode 0x9113 00356 /* 9114: 1 arg (0x1), no data, no resp data. */ 00357 #define PTP_OC_CANON_EOS_SetRemoteMode 0x9114 00358 /* 9115: 1 arg (0x1), no data, no resp data. */ 00359 #define PTP_OC_CANON_EOS_SetEventMode 0x9115 00360 /* 9116: no args, data phase, no resp data. */ 00361 #define PTP_OC_CANON_EOS_GetEvent 0x9116 00362 #define PTP_OC_CANON_EOS_TransferComplete 0x9117 00363 #define PTP_OC_CANON_EOS_CancelTransfer 0x9118 00364 #define PTP_OC_CANON_EOS_ResetTransfer 0x9119 00365 00366 /* 911a: 3 args (0xfffffff7, 0x00001000, 0x00000001), no data, no resp data. */ 00367 /* 911a: 3 args (0x001dfc60, 0x00001000, 0x00000001), no data, no resp data. */ 00368 #define PTP_OC_CANON_EOS_PCHDDCapacity 0x911A 00369 00370 /* 911b: no cmd args, no data, no resp args */ 00371 #define PTP_OC_CANON_EOS_SetUILock 0x911B 00372 /* 911c: no cmd args, no data, no resp args */ 00373 #define PTP_OC_CANON_EOS_ResetUILock 0x911C 00374 #define PTP_OC_CANON_EOS_KeepDeviceOn 0x911D 00375 #define PTP_OC_CANON_EOS_SetNullPacketMode 0x911E 00376 #define PTP_OC_CANON_EOS_UpdateFirmware 0x911F 00377 #define PTP_OC_CANON_EOS_TransferCompleteDT 0x9120 00378 #define PTP_OC_CANON_EOS_CancelTransferDT 0x9121 00379 #define PTP_OC_CANON_EOS_SetWftProfile 0x9122 00380 #define PTP_OC_CANON_EOS_GetWftProfile 0x9123 00381 #define PTP_OC_CANON_EOS_SetProfileToWft 0x9124 00382 #define PTP_OC_CANON_EOS_BulbStart 0x9125 00383 #define PTP_OC_CANON_EOS_BulbEnd 0x9126 00384 #define PTP_OC_CANON_EOS_RequestDevicePropValue 0x9127 00385 00386 /* 0x9128 args (0x1/0x2, 0x0), no data, no resp args */ 00387 #define PTP_OC_CANON_EOS_RemoteReleaseOn 0x9128 00388 /* 0x9129 args (0x1/0x2), no data, no resp args */ 00389 #define PTP_OC_CANON_EOS_RemoteReleaseOff 0x9129 00390 00391 #define PTP_OC_CANON_EOS_RegistBackgroundImage 0x912A 00392 #define PTP_OC_CANON_EOS_ChangePhotoStudioMode 0x912B 00393 #define PTP_OC_CANON_EOS_GetPartialObjectEx 0x912C 00394 #define PTP_OC_CANON_EOS_ResetMirrorLockupState 0x9130 00395 #define PTP_OC_CANON_EOS_PopupBuiltinFlash 0x9131 00396 #define PTP_OC_CANON_EOS_EndGetPartialObjectEx 0x9132 00397 #define PTP_OC_CANON_EOS_MovieSelectSWOn 0x9133 00398 #define PTP_OC_CANON_EOS_MovieSelectSWOff 0x9134 00399 #define PTP_OC_CANON_EOS_GetCTGInfo 0x9135 00400 #define PTP_OC_CANON_EOS_GetLensAdjust 0x9136 00401 #define PTP_OC_CANON_EOS_SetLensAdjust 0x9137 00402 #define PTP_OC_CANON_EOS_GetMusicInfo 0x9138 00403 /* 3 paramaeters, no data, OFC, size, unknown */ 00404 #define PTP_OC_CANON_EOS_CreateHandle 0x9139 00405 #define PTP_OC_CANON_EOS_SendPartialObjectEx 0x913A 00406 #define PTP_OC_CANON_EOS_EndSendPartialObjectEx 0x913B 00407 #define PTP_OC_CANON_EOS_SetCTGInfo 0x913C 00408 #define PTP_OC_CANON_EOS_SetRequestOLCInfoGroup 0x913D 00409 #define PTP_OC_CANON_EOS_SetRequestRollingPitchingLevel 0x913E 00410 #define PTP_OC_CANON_EOS_GetCameraSupport 0x913F 00411 #define PTP_OC_CANON_EOS_SetRating 0x9140 /* 2 args */ 00412 #define PTP_OC_CANON_EOS_RequestInnerDevelopStart 0x9141 /* 2 args: 1 type, 1 object? */ 00413 #define PTP_OC_CANON_EOS_RequestInnerDevelopParamChange 0x9142 00414 #define PTP_OC_CANON_EOS_RequestInnerDevelopEnd 0x9143 00415 #define PTP_OC_CANON_EOS_GpsLoggingDataMode 0x9144 /* 1 arg */ 00416 #define PTP_OC_CANON_EOS_GetGpsLogCurrentHandle 0x9145 00417 00418 #define PTP_OC_CANON_EOS_InitiateViewfinder 0x9151 00419 #define PTP_OC_CANON_EOS_TerminateViewfinder 0x9152 00420 /* EOS M2 wlan: 2 params, 0x00200000 0x01000000 */ 00421 #define PTP_OC_CANON_EOS_GetViewFinderData 0x9153 00422 #define PTP_OC_CANON_EOS_DoAf 0x9154 00423 #define PTP_OC_CANON_EOS_DriveLens 0x9155 00424 #define PTP_OC_CANON_EOS_DepthOfFieldPreview 0x9156 /* 1 arg */ 00425 #define PTP_OC_CANON_EOS_ClickWB 0x9157 /* 2 args: x,y */ 00426 #define PTP_OC_CANON_EOS_Zoom 0x9158 /* 1 arg */ 00427 #define PTP_OC_CANON_EOS_ZoomPosition 0x9159 /* 2 args: x,y */ 00428 #define PTP_OC_CANON_EOS_SetLiveAfFrame 0x915A 00429 #define PTP_OC_CANON_EOS_TouchAfPosition 0x915B /* 3 args: type,x,y */ 00430 #define PTP_OC_CANON_EOS_SetLvPcFlavoreditMode 0x915C /* 1 arg */ 00431 #define PTP_OC_CANON_EOS_SetLvPcFlavoreditParam 0x915D /* 1 arg */ 00432 #define PTP_OC_CANON_EOS_AfCancel 0x9160 00433 #define PTP_OC_CANON_EOS_SetDefaultCameraSetting 0x91BE 00434 #define PTP_OC_CANON_EOS_GetAEData 0x91BF 00435 #define PTP_OC_CANON_EOS_NotifyNetworkError 0x91E8 00436 #define PTP_OC_CANON_EOS_AdapterTransferProgress 0x91E9 00437 #define PTP_OC_CANON_EOS_TransferComplete2 0x91F0 00438 #define PTP_OC_CANON_EOS_CancelTransfer2 0x91F1 00439 #define PTP_OC_CANON_EOS_FAPIMessageTX 0x91FE 00440 #define PTP_OC_CANON_EOS_FAPIMessageRX 0x91FF 00441 00442 /* Nikon extension Operation Codes */ 00443 #define PTP_OC_NIKON_GetProfileAllData 0x9006 00444 #define PTP_OC_NIKON_SendProfileData 0x9007 00445 #define PTP_OC_NIKON_DeleteProfile 0x9008 00446 #define PTP_OC_NIKON_SetProfileData 0x9009 00447 #define PTP_OC_NIKON_AdvancedTransfer 0x9010 00448 #define PTP_OC_NIKON_GetFileInfoInBlock 0x9011 00449 #define PTP_OC_NIKON_Capture 0x90C0 /* 1 param, no data */ 00450 #define PTP_OC_NIKON_AfDrive 0x90C1 /* no params, no data */ 00451 #define PTP_OC_NIKON_SetControlMode 0x90C2 /* 1 param, no data */ 00452 #define PTP_OC_NIKON_DelImageSDRAM 0x90C3 /* 1 param, no data */ 00453 #define PTP_OC_NIKON_GetLargeThumb 0x90C4 00454 #define PTP_OC_NIKON_CurveDownload 0x90C5 /* 1 param, data in */ 00455 #define PTP_OC_NIKON_CurveUpload 0x90C6 /* 1 param, data out */ 00456 #define PTP_OC_NIKON_CheckEvent 0x90C7 /* no params, data in */ 00457 #define PTP_OC_NIKON_DeviceReady 0x90C8 /* no params, no data */ 00458 #define PTP_OC_NIKON_SetPreWBData 0x90C9 /* 3 params, data out */ 00459 #define PTP_OC_NIKON_GetVendorPropCodes 0x90CA /* 0 params, data in */ 00460 #define PTP_OC_NIKON_AfCaptureSDRAM 0x90CB /* no params, no data */ 00461 #define PTP_OC_NIKON_GetPictCtrlData 0x90CC /* 2 params, data in */ 00462 #define PTP_OC_NIKON_SetPictCtrlData 0x90CD /* 2 params, data out */ 00463 #define PTP_OC_NIKON_DelCstPicCtrl 0x90CE /* 1 param, no data */ 00464 #define PTP_OC_NIKON_GetPicCtrlCapability 0x90CF /* 1 param, data in */ 00465 00466 /* Nikon Liveview stuff */ 00467 #define PTP_OC_NIKON_GetPreviewImg 0x9200 00468 #define PTP_OC_NIKON_StartLiveView 0x9201 /* no params */ 00469 #define PTP_OC_NIKON_EndLiveView 0x9202 /* no params */ 00470 #define PTP_OC_NIKON_GetLiveViewImg 0x9203 /* no params, data in */ 00471 #define PTP_OC_NIKON_MfDrive 0x9204 /* 2 params */ 00472 #define PTP_OC_NIKON_ChangeAfArea 0x9205 /* 2 params */ 00473 #define PTP_OC_NIKON_AfDriveCancel 0x9206 /* no params */ 00474 /* 2 params: 00475 * 0xffffffff == No AF before, 0xfffffffe == AF before capture 00476 * sdram=1, card=0 00477 */ 00478 #define PTP_OC_NIKON_InitiateCaptureRecInMedia 0x9207 /* 1 params */ 00479 00480 #define PTP_OC_NIKON_GetVendorStorageIDs 0x9209 /* no params, data in */ 00481 00482 #define PTP_OC_NIKON_StartMovieRecInCard 0x920a /* no params, no data */ 00483 #define PTP_OC_NIKON_EndMovieRec 0x920b /* no params, no data */ 00484 00485 #define PTP_OC_NIKON_TerminateCapture 0x920c /* 2 params */ 00486 00487 #define PTP_OC_NIKON_GetDevicePTPIPInfo 0x90E0 00488 00489 #define PTP_OC_NIKON_GetPartialObjectHiSpeed 0x9400 /* 3 params, data in */ 00490 00491 /* From Nikon V1 Trace */ 00492 #define PTP_OC_NIKON_GetDevicePropEx 0x9504 /* gets device prop dataa */ 00493 00494 /* Casio EX-F1 (from http://code.google.com/p/exf1ctrl/ ) */ 00495 #define PTP_OC_CASIO_STILL_START 0x9001 00496 #define PTP_OC_CASIO_STILL_STOP 0x9002 00497 00498 #define PTP_OC_CASIO_FOCUS 0x9007 00499 #define PTP_OC_CASIO_CF_PRESS 0x9009 00500 #define PTP_OC_CASIO_CF_RELEASE 0x900A 00501 #define PTP_OC_CASIO_GET_OBJECT_INFO 0x900C 00502 00503 #define PTP_OC_CASIO_SHUTTER 0x9024 00504 #define PTP_OC_CASIO_GET_STILL_HANDLES 0x9027 00505 #define PTP_OC_CASIO_STILL_RESET 0x9028 00506 #define PTP_OC_CASIO_HALF_PRESS 0x9029 00507 #define PTP_OC_CASIO_HALF_RELEASE 0x902A 00508 #define PTP_OC_CASIO_CS_PRESS 0x902B 00509 #define PTP_OC_CASIO_CS_RELEASE 0x902C 00510 00511 #define PTP_OC_CASIO_ZOOM 0x902D 00512 #define PTP_OC_CASIO_CZ_PRESS 0x902E 00513 #define PTP_OC_CASIO_CZ_RELEASE 0x902F 00514 00515 #define PTP_OC_CASIO_MOVIE_START 0x9041 00516 #define PTP_OC_CASIO_MOVIE_STOP 0x9042 00517 #define PTP_OC_CASIO_MOVIE_PRESS 0x9043 00518 #define PTP_OC_CASIO_MOVIE_RELEASE 0x9044 00519 #define PTP_OC_CASIO_GET_MOVIE_HANDLES 0x9045 00520 #define PTP_OC_CASIO_MOVIE_RESET 0x9046 00521 00522 #define PTP_OC_CASIO_GET_OBJECT 0x9025 00523 #define PTP_OC_CASIO_GET_THUMBNAIL 0x9026 00524 00525 /* Sony stuff */ 00526 /* 9201: 00527 * 3 params: 1,0,0 ; IN: data 8 bytes all 0 00528 * or: 00529 * 3 params: 2,0,0 ; IN: data 8 bytes all 0 00530 * or 00531 * 3 params: 3,0,0,: IN: data 8 butes all 0 00532 */ 00533 #define PTP_OC_SONY_SDIOConnect 0x9201 00534 /* 9202: 1 param, 0xc8; IN data: 00535 * 16 bit: 0xc8 00536 * ptp array 32 bit: index, 16 bit values of propcodes */ 00537 #define PTP_OC_SONY_GetSDIOGetExtDeviceInfo 0x9202 00538 00539 #define PTP_OC_SONY_GetDevicePropdesc 0x9203 00540 #define PTP_OC_SONY_GetDevicePropertyValue 0x9204 00541 /* 1 param, 16bit propcode, SEND DATA: propvalue */ 00542 #define PTP_OC_SONY_SetControlDeviceA 0x9205 00543 #define PTP_OC_SONY_GetControlDeviceDesc 0x9206 00544 /* 1 param, 16bit propcode, SEND DATA: propvalue */ 00545 #define PTP_OC_SONY_SetControlDeviceB 0x9207 00546 /* get all device property data at once */ 00547 #define PTP_OC_SONY_GetAllDevicePropData 0x9209 /* gets a 4126 byte blob of device props ?*/ 00548 00549 /* Microsoft / MTP extension codes */ 00550 00551 #define PTP_OC_MTP_GetObjectPropsSupported 0x9801 00552 #define PTP_OC_MTP_GetObjectPropDesc 0x9802 00553 #define PTP_OC_MTP_GetObjectPropValue 0x9803 00554 #define PTP_OC_MTP_SetObjectPropValue 0x9804 00555 #define PTP_OC_MTP_GetObjPropList 0x9805 00556 #define PTP_OC_MTP_SetObjPropList 0x9806 00557 #define PTP_OC_MTP_GetInterdependendPropdesc 0x9807 00558 #define PTP_OC_MTP_SendObjectPropList 0x9808 00559 #define PTP_OC_MTP_GetObjectReferences 0x9810 00560 #define PTP_OC_MTP_SetObjectReferences 0x9811 00561 #define PTP_OC_MTP_UpdateDeviceFirmware 0x9812 00562 #define PTP_OC_MTP_Skip 0x9820 00563 00564 /* 00565 * Windows Media Digital Rights Management for Portable Devices 00566 * Extension Codes (microsoft.com/WMDRMPD: 10.1) 00567 */ 00568 #define PTP_OC_MTP_WMDRMPD_GetSecureTimeChallenge 0x9101 00569 #define PTP_OC_MTP_WMDRMPD_GetSecureTimeResponse 0x9102 00570 #define PTP_OC_MTP_WMDRMPD_SetLicenseResponse 0x9103 00571 #define PTP_OC_MTP_WMDRMPD_GetSyncList 0x9104 00572 #define PTP_OC_MTP_WMDRMPD_SendMeterChallengeQuery 0x9105 00573 #define PTP_OC_MTP_WMDRMPD_GetMeterChallenge 0x9106 00574 #define PTP_OC_MTP_WMDRMPD_SetMeterResponse 0x9107 00575 #define PTP_OC_MTP_WMDRMPD_CleanDataStore 0x9108 00576 #define PTP_OC_MTP_WMDRMPD_GetLicenseState 0x9109 00577 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDCommand 0x910A 00578 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDRequest 0x910B 00579 00580 /* 00581 * Windows Media Digital Rights Management for Portable Devices 00582 * Extension Codes (microsoft.com/WMDRMPD: 10.1) 00583 * Below are operations that have no public documented identifier 00584 * associated with them "Vendor-defined Command Code" 00585 */ 00586 #define PTP_OC_MTP_WMDRMPD_SendWMDRMPDAppRequest 0x9212 00587 #define PTP_OC_MTP_WMDRMPD_GetWMDRMPDAppResponse 0x9213 00588 #define PTP_OC_MTP_WMDRMPD_EnableTrustedFilesOperations 0x9214 00589 #define PTP_OC_MTP_WMDRMPD_DisableTrustedFilesOperations 0x9215 00590 #define PTP_OC_MTP_WMDRMPD_EndTrustedAppSession 0x9216 00591 /* ^^^ guess ^^^ */ 00592 00593 /* 00594 * Microsoft Advanced Audio/Video Transfer 00595 * Extensions (microsoft.com/AAVT: 1.0) 00596 */ 00597 #define PTP_OC_MTP_AAVT_OpenMediaSession 0x9170 00598 #define PTP_OC_MTP_AAVT_CloseMediaSession 0x9171 00599 #define PTP_OC_MTP_AAVT_GetNextDataBlock 0x9172 00600 #define PTP_OC_MTP_AAVT_SetCurrentTimePosition 0x9173 00601 00602 /* 00603 * Windows Media Digital Rights Management for Network Devices 00604 * Extensions (microsoft.com/WMDRMND: 1.0) MTP/IP? 00605 */ 00606 #define PTP_OC_MTP_WMDRMND_SendRegistrationRequest 0x9180 00607 #define PTP_OC_MTP_WMDRMND_GetRegistrationResponse 0x9181 00608 #define PTP_OC_MTP_WMDRMND_GetProximityChallenge 0x9182 00609 #define PTP_OC_MTP_WMDRMND_SendProximityResponse 0x9183 00610 #define PTP_OC_MTP_WMDRMND_SendWMDRMNDLicenseRequest 0x9184 00611 #define PTP_OC_MTP_WMDRMND_GetWMDRMNDLicenseResponse 0x9185 00612 00613 /* 00614 * Windows Media Player Portiable Devices 00615 * Extension Codes (microsoft.com/WMPPD: 11.1) 00616 */ 00617 #define PTP_OC_MTP_WMPPD_ReportAddedDeletedItems 0x9201 00618 #define PTP_OC_MTP_WMPPD_ReportAcquiredItems 0x9202 00619 #define PTP_OC_MTP_WMPPD_PlaylistObjectPref 0x9203 00620 00621 /* 00622 * Undocumented Zune Operation Codes 00623 * maybe related to WMPPD extension set? 00624 */ 00625 #define PTP_OC_MTP_ZUNE_GETUNDEFINED001 0x9204 00626 00627 /* WiFi Provisioning MTP Extension Codes (microsoft.com/WPDWCN: 1.0) */ 00628 #define PTP_OC_MTP_WPDWCN_ProcessWFCObject 0x9122 00629 00630 00631 /* Olympus E series commands */ 00632 #define PTP_OC_OLYMPUS_Capture 0x9101 00633 #define PTP_OC_OLYMPUS_SelfCleaning 0x9103 00634 #define PTP_OC_OLYMPUS_SetRGBGain 0x9106 00635 #define PTP_OC_OLYMPUS_SetPresetMode 0x9107 00636 #define PTP_OC_OLYMPUS_SetWBBiasAll 0x9108 00637 #define PTP_OC_OLYMPUS_GetCameraControlMode 0x910a 00638 #define PTP_OC_OLYMPUS_SetCameraControlMode 0x910b 00639 #define PTP_OC_OLYMPUS_SetWBRGBGain 0x910c 00640 #define PTP_OC_OLYMPUS_GetDeviceInfo 0x9301 00641 #define PTP_OC_OLYMPUS_OpenSession 0x9302 00642 #define PTP_OC_OLYMPUS_SetDateTime 0x9402 00643 #define PTP_OC_OLYMPUS_GetDateTime 0x9482 00644 #define PTP_OC_OLYMPUS_SetCameraID 0x9501 00645 #define PTP_OC_OLYMPUS_GetCameraID 0x9581 00646 00647 /* Android Random I/O Extensions Codes */ 00648 #define PTP_OC_ANDROID_GetPartialObject64 0x95C1 00649 #define PTP_OC_ANDROID_SendPartialObject 0x95C2 00650 #define PTP_OC_ANDROID_TruncateObject 0x95C3 00651 #define PTP_OC_ANDROID_BeginEditObject 0x95C4 00652 #define PTP_OC_ANDROID_EndEditObject 0x95C5 00653 00654 /* Leica opcodes, from Lightroom tether plugin */ 00655 #define PTP_OC_LEICA_SetCameraSettings 0x9001 00656 #define PTP_OC_LEICA_GetCameraSettings 0x9002 00657 #define PTP_OC_LEICA_GetLensParameter 0x9003 00658 /* probably 2 arguments. 00659 * generic: releaseStage, stepSize 00660 * Release(releasestage) = (releasestage,0) 00661 * Release() = (0,0) 00662 * AEStart() = (1,0) 00663 * Autofocusrelease() = (2,0) 00664 * AutofocusPush() = (1,0) ... same as AEStart? 00665 * KeepCameraActive() = (0xe,0) 00666 */ 00667 #define PTP_OC_LEICA_Release 0x9004 00668 #define PTP_OC_LEICA_OpenLESession 0x9005 00669 #define PTP_OC_LEICA_CloseLESession 0x9006 00670 #define PTP_OC_LEICA_RequestObjectTransferReady 0x9007 00671 00672 /* Proprietary vendor extension operations mask */ 00673 #define PTP_OC_EXTENSION_MASK 0xF000 00674 #define PTP_OC_EXTENSION 0x9000 00675 00676 /* Response Codes */ 00677 00678 /* PTP v1.0 response codes */ 00679 #define PTP_RC_Undefined 0x2000 00680 #define PTP_RC_OK 0x2001 00681 #define PTP_RC_GeneralError 0x2002 00682 #define PTP_RC_SessionNotOpen 0x2003 00683 #define PTP_RC_InvalidTransactionID 0x2004 00684 #define PTP_RC_OperationNotSupported 0x2005 00685 #define PTP_RC_ParameterNotSupported 0x2006 00686 #define PTP_RC_IncompleteTransfer 0x2007 00687 #define PTP_RC_InvalidStorageId 0x2008 00688 #define PTP_RC_InvalidObjectHandle 0x2009 00689 #define PTP_RC_DevicePropNotSupported 0x200A 00690 #define PTP_RC_InvalidObjectFormatCode 0x200B 00691 #define PTP_RC_StoreFull 0x200C 00692 #define PTP_RC_ObjectWriteProtected 0x200D 00693 #define PTP_RC_StoreReadOnly 0x200E 00694 #define PTP_RC_AccessDenied 0x200F 00695 #define PTP_RC_NoThumbnailPresent 0x2010 00696 #define PTP_RC_SelfTestFailed 0x2011 00697 #define PTP_RC_PartialDeletion 0x2012 00698 #define PTP_RC_StoreNotAvailable 0x2013 00699 #define PTP_RC_SpecificationByFormatUnsupported 0x2014 00700 #define PTP_RC_NoValidObjectInfo 0x2015 00701 #define PTP_RC_InvalidCodeFormat 0x2016 00702 #define PTP_RC_UnknownVendorCode 0x2017 00703 #define PTP_RC_CaptureAlreadyTerminated 0x2018 00704 #define PTP_RC_DeviceBusy 0x2019 00705 #define PTP_RC_InvalidParentObject 0x201A 00706 #define PTP_RC_InvalidDevicePropFormat 0x201B 00707 #define PTP_RC_InvalidDevicePropValue 0x201C 00708 #define PTP_RC_InvalidParameter 0x201D 00709 #define PTP_RC_SessionAlreadyOpened 0x201E 00710 #define PTP_RC_TransactionCanceled 0x201F 00711 #define PTP_RC_SpecificationOfDestinationUnsupported 0x2020 00712 /* PTP v1.1 response codes */ 00713 #define PTP_RC_InvalidEnumHandle 0x2021 00714 #define PTP_RC_NoStreamEnabled 0x2022 00715 #define PTP_RC_InvalidDataSet 0x2023 00716 00717 /* Eastman Kodak extension Response Codes */ 00718 #define PTP_RC_EK_FilenameRequired 0xA001 00719 #define PTP_RC_EK_FilenameConflicts 0xA002 00720 #define PTP_RC_EK_FilenameInvalid 0xA003 00721 00722 /* Nikon specific response codes */ 00723 #define PTP_RC_NIKON_HardwareError 0xA001 00724 #define PTP_RC_NIKON_OutOfFocus 0xA002 00725 #define PTP_RC_NIKON_ChangeCameraModeFailed 0xA003 00726 #define PTP_RC_NIKON_InvalidStatus 0xA004 00727 #define PTP_RC_NIKON_SetPropertyNotSupported 0xA005 00728 #define PTP_RC_NIKON_WbResetError 0xA006 00729 #define PTP_RC_NIKON_DustReferenceError 0xA007 00730 #define PTP_RC_NIKON_ShutterSpeedBulb 0xA008 00731 #define PTP_RC_NIKON_MirrorUpSequence 0xA009 00732 #define PTP_RC_NIKON_CameraModeNotAdjustFNumber 0xA00A 00733 #define PTP_RC_NIKON_NotLiveView 0xA00B 00734 #define PTP_RC_NIKON_MfDriveStepEnd 0xA00C 00735 #define PTP_RC_NIKON_MfDriveStepInsufficiency 0xA00E 00736 #define PTP_RC_NIKON_AdvancedTransferCancel 0xA022 00737 00738 /* Canon specific response codes */ 00739 #define PTP_RC_CANON_UNKNOWN_COMMAND 0xA001 00740 #define PTP_RC_CANON_OPERATION_REFUSED 0xA005 00741 #define PTP_RC_CANON_LENS_COVER 0xA006 00742 #define PTP_RC_CANON_BATTERY_LOW 0xA101 00743 #define PTP_RC_CANON_NOT_READY 0xA102 00744 00745 #define PTP_RC_CANON_A009 0xA009 00746 00747 /* Microsoft/MTP specific codes */ 00748 #define PTP_RC_MTP_Undefined 0xA800 00749 #define PTP_RC_MTP_Invalid_ObjectPropCode 0xA801 00750 #define PTP_RC_MTP_Invalid_ObjectProp_Format 0xA802 00751 #define PTP_RC_MTP_Invalid_ObjectProp_Value 0xA803 00752 #define PTP_RC_MTP_Invalid_ObjectReference 0xA804 00753 #define PTP_RC_MTP_Invalid_Dataset 0xA806 00754 #define PTP_RC_MTP_Specification_By_Group_Unsupported 0xA807 00755 #define PTP_RC_MTP_Specification_By_Depth_Unsupported 0xA808 00756 #define PTP_RC_MTP_Object_Too_Large 0xA809 00757 #define PTP_RC_MTP_ObjectProp_Not_Supported 0xA80A 00758 00759 /* Microsoft Advanced Audio/Video Transfer response codes 00760 (microsoft.com/AAVT 1.0) */ 00761 #define PTP_RC_MTP_Invalid_Media_Session_ID 0xA170 00762 #define PTP_RC_MTP_Media_Session_Limit_Reached 0xA171 00763 #define PTP_RC_MTP_No_More_Data 0xA172 00764 00765 /* WiFi Provisioning MTP Extension Error Codes (microsoft.com/WPDWCN: 1.0) */ 00766 #define PTP_RC_MTP_Invalid_WFC_Syntax 0xA121 00767 #define PTP_RC_MTP_WFC_Version_Not_Supported 0xA122 00768 00769 /* libptp2 extended ERROR codes */ 00770 #define PTP_ERROR_TIMEOUT 0x02FA 00771 #define PTP_ERROR_CANCEL 0x02FB 00772 #define PTP_ERROR_BADPARAM 0x02FC 00773 #define PTP_ERROR_RESP_EXPECTED 0x02FD 00774 #define PTP_ERROR_DATA_EXPECTED 0x02FE 00775 #define PTP_ERROR_IO 0x02FF 00776 00777 /* PTP Event Codes */ 00778 00779 #define PTP_EC_Undefined 0x4000 00780 #define PTP_EC_CancelTransaction 0x4001 00781 #define PTP_EC_ObjectAdded 0x4002 00782 #define PTP_EC_ObjectRemoved 0x4003 00783 #define PTP_EC_StoreAdded 0x4004 00784 #define PTP_EC_StoreRemoved 0x4005 00785 #define PTP_EC_DevicePropChanged 0x4006 00786 #define PTP_EC_ObjectInfoChanged 0x4007 00787 #define PTP_EC_DeviceInfoChanged 0x4008 00788 #define PTP_EC_RequestObjectTransfer 0x4009 00789 #define PTP_EC_StoreFull 0x400A 00790 #define PTP_EC_DeviceReset 0x400B 00791 #define PTP_EC_StorageInfoChanged 0x400C 00792 #define PTP_EC_CaptureComplete 0x400D 00793 #define PTP_EC_UnreportedStatus 0x400E 00794 00795 /* Canon extension Event Codes */ 00796 #define PTP_EC_CANON_ExtendedErrorcode 0xC005 /* ? */ 00797 #define PTP_EC_CANON_ObjectInfoChanged 0xC008 00798 #define PTP_EC_CANON_RequestObjectTransfer 0xC009 00799 #define PTP_EC_CANON_ShutterButtonPressed0 0xC00B 00800 #define PTP_EC_CANON_CameraModeChanged 0xC00C 00801 #define PTP_EC_CANON_ShutterButtonPressed1 0xC00E 00802 00803 #define PTP_EC_CANON_StartDirectTransfer 0xC011 00804 #define PTP_EC_CANON_StopDirectTransfer 0xC013 00805 00806 /* Canon EOS events */ 00807 #define PTP_EC_CANON_EOS_RequestGetEvent 0xc101 00808 #define PTP_EC_CANON_EOS_ObjectAddedEx 0xc181 00809 #define PTP_EC_CANON_EOS_ObjectRemoved 0xc182 00810 #define PTP_EC_CANON_EOS_RequestGetObjectInfoEx 0xc183 00811 #define PTP_EC_CANON_EOS_StorageStatusChanged 0xc184 00812 #define PTP_EC_CANON_EOS_StorageInfoChanged 0xc185 00813 #define PTP_EC_CANON_EOS_RequestObjectTransfer 0xc186 00814 #define PTP_EC_CANON_EOS_ObjectInfoChangedEx 0xc187 00815 #define PTP_EC_CANON_EOS_ObjectContentChanged 0xc188 00816 #define PTP_EC_CANON_EOS_PropValueChanged 0xc189 00817 #define PTP_EC_CANON_EOS_AvailListChanged 0xc18a 00818 #define PTP_EC_CANON_EOS_CameraStatusChanged 0xc18b 00819 #define PTP_EC_CANON_EOS_WillSoonShutdown 0xc18d 00820 #define PTP_EC_CANON_EOS_ShutdownTimerUpdated 0xc18e 00821 #define PTP_EC_CANON_EOS_RequestCancelTransfer 0xc18f 00822 #define PTP_EC_CANON_EOS_RequestObjectTransferDT 0xc190 00823 #define PTP_EC_CANON_EOS_RequestCancelTransferDT 0xc191 00824 #define PTP_EC_CANON_EOS_StoreAdded 0xc192 00825 #define PTP_EC_CANON_EOS_StoreRemoved 0xc193 00826 #define PTP_EC_CANON_EOS_BulbExposureTime 0xc194 00827 #define PTP_EC_CANON_EOS_RecordingTime 0xc195 00828 #define PTP_EC_CANON_EOS_RequestObjectTransferTS 0xC1a2 00829 #define PTP_EC_CANON_EOS_AfResult 0xc1a3 00830 #define PTP_EC_CANON_EOS_CTGInfoCheckComplete 0xc1a4 00831 #define PTP_EC_CANON_EOS_OLCInfoChanged 0xc1a5 00832 #define PTP_EC_CANON_EOS_RequestObjectTransferFTP 0xc1f1 00833 00834 /* Nikon extension Event Codes */ 00835 00836 /* Nikon extension Event Codes */ 00837 #define PTP_EC_Nikon_ObjectAddedInSDRAM 0xC101 00838 #define PTP_EC_Nikon_CaptureCompleteRecInSdram 0xC102 00839 /* Gets 1 parameter, objectid pointing to DPOF object */ 00840 #define PTP_EC_Nikon_AdvancedTransfer 0xC103 00841 #define PTP_EC_Nikon_PreviewImageAdded 0xC104 00842 00843 /* Olympus E series */ 00844 #define PTP_EC_Olympus_PropertyChanged 0xC102 00845 #define PTP_EC_Olympus_CaptureComplete 0xC103 00846 00847 /* Sony */ 00848 #define PTP_EC_Sony_ObjectAdded 0xC201 00849 #define PTP_EC_Sony_ObjectRemoved 0xC202 00850 #define PTP_EC_Sony_PropertyChanged 0xC203 00851 00852 /* MTP Event codes */ 00853 #define PTP_EC_MTP_ObjectPropChanged 0xC801 00854 #define PTP_EC_MTP_ObjectPropDescChanged 0xC802 00855 #define PTP_EC_MTP_ObjectReferencesChanged 0xC803 00856 00857 /* constants for GetObjectHandles */ 00858 #define PTP_GOH_ALL_STORAGE 0xffffffff 00859 #define PTP_GOH_ALL_FORMATS 0x00000000 00860 #define PTP_GOH_ALL_ASSOCS 0x00000000 00861 #define PTP_GOH_ROOT_PARENT 0xffffffff 00862 00863 /* PTP device info structure (returned by GetDevInfo) */ 00864 00865 struct _PTPDeviceInfo { 00866 uint16_t StandardVersion; 00867 uint32_t VendorExtensionID; 00868 uint16_t VendorExtensionVersion; 00869 char *VendorExtensionDesc; 00870 uint16_t FunctionalMode; 00871 uint32_t OperationsSupported_len; 00872 uint16_t *OperationsSupported; 00873 uint32_t EventsSupported_len; 00874 uint16_t *EventsSupported; 00875 uint32_t DevicePropertiesSupported_len; 00876 uint16_t *DevicePropertiesSupported; 00877 uint32_t CaptureFormats_len; 00878 uint16_t *CaptureFormats; 00879 uint32_t ImageFormats_len; 00880 uint16_t *ImageFormats; 00881 char *Manufacturer; 00882 char *Model; 00883 char *DeviceVersion; 00884 char *SerialNumber; 00885 }; 00886 typedef struct _PTPDeviceInfo PTPDeviceInfo; 00887 00888 /* PTP storageIDs structute (returned by GetStorageIDs) */ 00889 00890 struct _PTPStorageIDs { 00891 uint32_t n; 00892 uint32_t *Storage; 00893 }; 00894 typedef struct _PTPStorageIDs PTPStorageIDs; 00895 00896 /* PTP StorageInfo structure (returned by GetStorageInfo) */ 00897 struct _PTPStorageInfo { 00898 uint16_t StorageType; 00899 uint16_t FilesystemType; 00900 uint16_t AccessCapability; 00901 uint64_t MaxCapability; 00902 uint64_t FreeSpaceInBytes; 00903 uint32_t FreeSpaceInImages; 00904 char *StorageDescription; 00905 char *VolumeLabel; 00906 }; 00907 typedef struct _PTPStorageInfo PTPStorageInfo; 00908 00909 /* PTP objecthandles structure (returned by GetObjectHandles) */ 00910 00911 struct _PTPObjectHandles { 00912 uint32_t n; 00913 uint32_t *Handler; 00914 }; 00915 typedef struct _PTPObjectHandles PTPObjectHandles; 00916 00917 #define PTP_HANDLER_SPECIAL 0xffffffff 00918 #define PTP_HANDLER_ROOT 0x00000000 00919 00920 00921 /* PTP objectinfo structure (returned by GetObjectInfo) */ 00922 00923 struct _PTPObjectInfo { 00924 uint32_t StorageID; 00925 uint16_t ObjectFormat; 00926 uint16_t ProtectionStatus; 00927 /* In the regular objectinfo this is 32bit, 00928 * but we keep the general object size here 00929 * that also arrives via other methods and so 00930 * use 64bit */ 00931 uint64_t ObjectCompressedSize; 00932 uint16_t ThumbFormat; 00933 uint32_t ThumbCompressedSize; 00934 uint32_t ThumbPixWidth; 00935 uint32_t ThumbPixHeight; 00936 uint32_t ImagePixWidth; 00937 uint32_t ImagePixHeight; 00938 uint32_t ImageBitDepth; 00939 uint32_t ParentObject; 00940 uint16_t AssociationType; 00941 uint32_t AssociationDesc; 00942 uint32_t SequenceNumber; 00943 char *Filename; 00944 time_t CaptureDate; 00945 time_t ModificationDate; 00946 char *Keywords; 00947 }; 00948 typedef struct _PTPObjectInfo PTPObjectInfo; 00949 00950 /* max ptp string length INCLUDING terminating null character */ 00951 00952 #define PTP_MAXSTRLEN 255 00953 00954 /* PTP Object Format Codes */ 00955 00956 /* ancillary formats */ 00957 #define PTP_OFC_Undefined 0x3000 00958 #define PTP_OFC_Defined 0x3800 00959 #define PTP_OFC_Association 0x3001 00960 #define PTP_OFC_Script 0x3002 00961 #define PTP_OFC_Executable 0x3003 00962 #define PTP_OFC_Text 0x3004 00963 #define PTP_OFC_HTML 0x3005 00964 #define PTP_OFC_DPOF 0x3006 00965 #define PTP_OFC_AIFF 0x3007 00966 #define PTP_OFC_WAV 0x3008 00967 #define PTP_OFC_MP3 0x3009 00968 #define PTP_OFC_AVI 0x300A 00969 #define PTP_OFC_MPEG 0x300B 00970 #define PTP_OFC_ASF 0x300C 00971 #define PTP_OFC_QT 0x300D /* guessing */ 00972 /* image formats */ 00973 #define PTP_OFC_EXIF_JPEG 0x3801 00974 #define PTP_OFC_TIFF_EP 0x3802 00975 #define PTP_OFC_FlashPix 0x3803 00976 #define PTP_OFC_BMP 0x3804 00977 #define PTP_OFC_CIFF 0x3805 00978 #define PTP_OFC_Undefined_0x3806 0x3806 00979 #define PTP_OFC_GIF 0x3807 00980 #define PTP_OFC_JFIF 0x3808 00981 #define PTP_OFC_PCD 0x3809 00982 #define PTP_OFC_PICT 0x380A 00983 #define PTP_OFC_PNG 0x380B 00984 #define PTP_OFC_Undefined_0x380C 0x380C 00985 #define PTP_OFC_TIFF 0x380D 00986 #define PTP_OFC_TIFF_IT 0x380E 00987 #define PTP_OFC_JP2 0x380F 00988 #define PTP_OFC_JPX 0x3810 00989 /* ptp v1.1 has only DNG new */ 00990 #define PTP_OFC_DNG 0x3811 00991 /* Eastman Kodak extension ancillary format */ 00992 #define PTP_OFC_EK_M3U 0xb002 00993 /* Canon extension */ 00994 #define PTP_OFC_CANON_CRW 0xb101 00995 #define PTP_OFC_CANON_CRW3 0xb103 00996 #define PTP_OFC_CANON_MOV 0xb104 00997 #define PTP_OFC_CANON_MOV2 0xb105 00998 /* CHDK specific raw mode */ 00999 #define PTP_OFC_CANON_CHDK_CRW 0xb1ff 01000 /* Sony */ 01001 #define PTP_OFC_SONY_RAW 0xb101 01002 /* MTP extensions */ 01003 #define PTP_OFC_MTP_MediaCard 0xb211 01004 #define PTP_OFC_MTP_MediaCardGroup 0xb212 01005 #define PTP_OFC_MTP_Encounter 0xb213 01006 #define PTP_OFC_MTP_EncounterBox 0xb214 01007 #define PTP_OFC_MTP_M4A 0xb215 01008 #define PTP_OFC_MTP_ZUNEUNDEFINED 0xb217 /* Unknown file type */ 01009 #define PTP_OFC_MTP_Firmware 0xb802 01010 #define PTP_OFC_MTP_WindowsImageFormat 0xb881 01011 #define PTP_OFC_MTP_UndefinedAudio 0xb900 01012 #define PTP_OFC_MTP_WMA 0xb901 01013 #define PTP_OFC_MTP_OGG 0xb902 01014 #define PTP_OFC_MTP_AAC 0xb903 01015 #define PTP_OFC_MTP_AudibleCodec 0xb904 01016 #define PTP_OFC_MTP_FLAC 0xb906 01017 #define PTP_OFC_MTP_SamsungPlaylist 0xb909 01018 #define PTP_OFC_MTP_UndefinedVideo 0xb980 01019 #define PTP_OFC_MTP_WMV 0xb981 01020 #define PTP_OFC_MTP_MP4 0xb982 01021 #define PTP_OFC_MTP_MP2 0xb983 01022 #define PTP_OFC_MTP_3GP 0xb984 01023 #define PTP_OFC_MTP_UndefinedCollection 0xba00 01024 #define PTP_OFC_MTP_AbstractMultimediaAlbum 0xba01 01025 #define PTP_OFC_MTP_AbstractImageAlbum 0xba02 01026 #define PTP_OFC_MTP_AbstractAudioAlbum 0xba03 01027 #define PTP_OFC_MTP_AbstractVideoAlbum 0xba04 01028 #define PTP_OFC_MTP_AbstractAudioVideoPlaylist 0xba05 01029 #define PTP_OFC_MTP_AbstractContactGroup 0xba06 01030 #define PTP_OFC_MTP_AbstractMessageFolder 0xba07 01031 #define PTP_OFC_MTP_AbstractChapteredProduction 0xba08 01032 #define PTP_OFC_MTP_AbstractAudioPlaylist 0xba09 01033 #define PTP_OFC_MTP_AbstractVideoPlaylist 0xba0a 01034 #define PTP_OFC_MTP_AbstractMediacast 0xba0b 01035 #define PTP_OFC_MTP_WPLPlaylist 0xba10 01036 #define PTP_OFC_MTP_M3UPlaylist 0xba11 01037 #define PTP_OFC_MTP_MPLPlaylist 0xba12 01038 #define PTP_OFC_MTP_ASXPlaylist 0xba13 01039 #define PTP_OFC_MTP_PLSPlaylist 0xba14 01040 #define PTP_OFC_MTP_UndefinedDocument 0xba80 01041 #define PTP_OFC_MTP_AbstractDocument 0xba81 01042 #define PTP_OFC_MTP_XMLDocument 0xba82 01043 #define PTP_OFC_MTP_MSWordDocument 0xba83 01044 #define PTP_OFC_MTP_MHTCompiledHTMLDocument 0xba84 01045 #define PTP_OFC_MTP_MSExcelSpreadsheetXLS 0xba85 01046 #define PTP_OFC_MTP_MSPowerpointPresentationPPT 0xba86 01047 #define PTP_OFC_MTP_UndefinedMessage 0xbb00 01048 #define PTP_OFC_MTP_AbstractMessage 0xbb01 01049 #define PTP_OFC_MTP_UndefinedContact 0xbb80 01050 #define PTP_OFC_MTP_AbstractContact 0xbb81 01051 #define PTP_OFC_MTP_vCard2 0xbb82 01052 #define PTP_OFC_MTP_vCard3 0xbb83 01053 #define PTP_OFC_MTP_UndefinedCalendarItem 0xbe00 01054 #define PTP_OFC_MTP_AbstractCalendarItem 0xbe01 01055 #define PTP_OFC_MTP_vCalendar1 0xbe02 01056 #define PTP_OFC_MTP_vCalendar2 0xbe03 01057 #define PTP_OFC_MTP_UndefinedWindowsExecutable 0xbe80 01058 #define PTP_OFC_MTP_MediaCast 0xbe81 01059 #define PTP_OFC_MTP_Section 0xbe82 01060 01061 /* PTP Association Types */ 01062 #define PTP_AT_Undefined 0x0000 01063 #define PTP_AT_GenericFolder 0x0001 01064 #define PTP_AT_Album 0x0002 01065 #define PTP_AT_TimeSequence 0x0003 01066 #define PTP_AT_HorizontalPanoramic 0x0004 01067 #define PTP_AT_VerticalPanoramic 0x0005 01068 #define PTP_AT_2DPanoramic 0x0006 01069 #define PTP_AT_AncillaryData 0x0007 01070 01071 /* PTP Protection Status */ 01072 01073 #define PTP_PS_NoProtection 0x0000 01074 #define PTP_PS_ReadOnly 0x0001 01075 #define PTP_PS_MTP_ReadOnlyData 0x8002 01076 #define PTP_PS_MTP_NonTransferableData 0x8003 01077 01078 /* PTP Storage Types */ 01079 01080 #define PTP_ST_Undefined 0x0000 01081 #define PTP_ST_FixedROM 0x0001 01082 #define PTP_ST_RemovableROM 0x0002 01083 #define PTP_ST_FixedRAM 0x0003 01084 #define PTP_ST_RemovableRAM 0x0004 01085 01086 /* PTP FilesystemType Values */ 01087 01088 #define PTP_FST_Undefined 0x0000 01089 #define PTP_FST_GenericFlat 0x0001 01090 #define PTP_FST_GenericHierarchical 0x0002 01091 #define PTP_FST_DCF 0x0003 01092 01093 /* PTP StorageInfo AccessCapability Values */ 01094 01095 #define PTP_AC_ReadWrite 0x0000 01096 #define PTP_AC_ReadOnly 0x0001 01097 #define PTP_AC_ReadOnly_with_Object_Deletion 0x0002 01098 01099 /* Property Describing Dataset, Range Form */ 01100 01101 union _PTPPropertyValue { 01102 char *str; /* common string, malloced */ 01103 uint8_t u8; 01104 int8_t i8; 01105 uint16_t u16; 01106 int16_t i16; 01107 uint32_t u32; 01108 int32_t i32; 01109 uint64_t u64; 01110 int64_t i64; 01111 /* XXXX: 128 bit signed and unsigned missing */ 01112 struct array { 01113 uint32_t count; 01114 union _PTPPropertyValue *v; /* malloced, count elements */ 01115 } a; 01116 }; 01117 01118 typedef union _PTPPropertyValue PTPPropertyValue; 01119 01120 /* Metadata lists for MTP operations */ 01121 struct _MTPProperties { 01122 uint16_t property; 01123 uint16_t datatype; 01124 uint32_t ObjectHandle; 01125 PTPPropertyValue propval; 01126 }; 01127 typedef struct _MTPProperties MTPProperties; 01128 01129 struct _PTPPropDescRangeForm { 01130 PTPPropertyValue MinimumValue; 01131 PTPPropertyValue MaximumValue; 01132 PTPPropertyValue StepSize; 01133 }; 01134 typedef struct _PTPPropDescRangeForm PTPPropDescRangeForm; 01135 01136 /* Property Describing Dataset, Enum Form */ 01137 01138 struct _PTPPropDescEnumForm { 01139 uint16_t NumberOfValues; 01140 PTPPropertyValue *SupportedValue; /* malloced */ 01141 }; 01142 typedef struct _PTPPropDescEnumForm PTPPropDescEnumForm; 01143 01144 /* Device Property Describing Dataset (DevicePropDesc) */ 01145 01146 struct _PTPDevicePropDesc { 01147 uint16_t DevicePropertyCode; 01148 uint16_t DataType; 01149 uint8_t GetSet; 01150 PTPPropertyValue FactoryDefaultValue; 01151 PTPPropertyValue CurrentValue; 01152 uint8_t FormFlag; 01153 union { 01154 PTPPropDescEnumForm Enum; 01155 PTPPropDescRangeForm Range; 01156 } FORM; 01157 }; 01158 typedef struct _PTPDevicePropDesc PTPDevicePropDesc; 01159 01160 /* Object Property Describing Dataset (DevicePropDesc) */ 01161 01162 struct _PTPObjectPropDesc { 01163 uint16_t ObjectPropertyCode; 01164 uint16_t DataType; 01165 uint8_t GetSet; 01166 PTPPropertyValue FactoryDefaultValue; 01167 uint32_t GroupCode; 01168 uint8_t FormFlag; 01169 union { 01170 PTPPropDescEnumForm Enum; 01171 PTPPropDescRangeForm Range; 01172 } FORM; 01173 }; 01174 typedef struct _PTPObjectPropDesc PTPObjectPropDesc; 01175 01176 /* Canon filesystem's folder entry Dataset */ 01177 01178 #define PTP_CANON_FilenameBufferLen 13 01179 #define PTP_CANON_FolderEntryLen 28 01180 01181 struct _PTPCANONFolderEntry { 01182 uint32_t ObjectHandle; 01183 uint16_t ObjectFormatCode; 01184 uint8_t Flags; 01185 uint32_t ObjectSize; 01186 time_t Time; 01187 char Filename[PTP_CANON_FilenameBufferLen]; 01188 01189 uint32_t StorageID; 01190 }; 01191 typedef struct _PTPCANONFolderEntry PTPCANONFolderEntry; 01192 01193 /* Nikon Tone Curve Data */ 01194 01195 #define PTP_NIKON_MaxCurvePoints 19 01196 01197 struct _PTPNIKONCoordinatePair { 01198 uint8_t X; 01199 uint8_t Y; 01200 }; 01201 01202 typedef struct _PTPNIKONCoordinatePair PTPNIKONCoordinatePair; 01203 01204 struct _PTPNTCCoordinatePair { 01205 uint8_t X; 01206 uint8_t Y; 01207 }; 01208 01209 typedef struct _PTPNTCCoordinatePair PTPNTCCoordinatePair; 01210 01211 struct _PTPNIKONCurveData { 01212 char static_preamble[6]; 01213 uint8_t XAxisStartPoint; 01214 uint8_t XAxisEndPoint; 01215 uint8_t YAxisStartPoint; 01216 uint8_t YAxisEndPoint; 01217 uint8_t MidPointIntegerPart; 01218 uint8_t MidPointDecimalPart; 01219 uint8_t NCoordinates; 01220 PTPNIKONCoordinatePair CurveCoordinates[PTP_NIKON_MaxCurvePoints]; 01221 }; 01222 01223 typedef struct _PTPNIKONCurveData PTPNIKONCurveData; 01224 01225 struct _PTPEKTextParams { 01226 char *title; 01227 char *line[5]; 01228 }; 01229 typedef struct _PTPEKTextParams PTPEKTextParams; 01230 01231 /* Nikon Wifi profiles */ 01232 01233 struct _PTPNIKONWifiProfile { 01234 /* Values valid both when reading and writing profiles */ 01235 char profile_name[17]; 01236 uint8_t device_type; 01237 uint8_t icon_type; 01238 char essid[33]; 01239 01240 /* Values only valid when reading. Some of these are in the write packet, 01241 * but are set automatically, like id, display_order and creation_date. */ 01242 uint8_t id; 01243 uint8_t valid; 01244 uint8_t display_order; 01245 char creation_date[16]; 01246 char lastusage_date[16]; 01247 01248 /* Values only valid when writing */ 01249 uint32_t ip_address; 01250 uint8_t subnet_mask; /* first zero bit position, e.g. 24 for 255.255.255.0 */ 01251 uint32_t gateway_address; 01252 uint8_t address_mode; /* 0 - Manual, 2-3 - DHCP ad-hoc/managed*/ 01253 uint8_t access_mode; /* 0 - Managed, 1 - Adhoc */ 01254 uint8_t wifi_channel; /* 1-11 */ 01255 uint8_t authentification; /* 0 - Open, 1 - Shared, 2 - WPA-PSK */ 01256 uint8_t encryption; /* 0 - None, 1 - WEP 64bit, 2 - WEP 128bit (not supported: 3 - TKIP) */ 01257 uint8_t key[64]; 01258 uint8_t key_nr; 01259 /* char guid[16]; */ 01260 }; 01261 01262 typedef struct _PTPNIKONWifiProfile PTPNIKONWifiProfile; 01263 01264 enum _PTPCanon_changes_types { 01265 PTP_CANON_EOS_CHANGES_TYPE_UNKNOWN, 01266 PTP_CANON_EOS_CHANGES_TYPE_OBJECTINFO, 01267 PTP_CANON_EOS_CHANGES_TYPE_OBJECTTRANSFER, 01268 PTP_CANON_EOS_CHANGES_TYPE_PROPERTY, 01269 PTP_CANON_EOS_CHANGES_TYPE_CAMERASTATUS, 01270 PTP_CANON_EOS_CHANGES_TYPE_FOCUSINFO, 01271 PTP_CANON_EOS_CHANGES_TYPE_FOCUSMASK, 01272 PTP_CANON_EOS_CHANGES_TYPE_OBJECTREMOVED 01273 }; 01274 01275 struct _PTPCanon_New_Object { 01276 uint32_t oid; 01277 PTPObjectInfo oi; 01278 }; 01279 01280 struct _PTPCanon_changes_entry { 01281 enum _PTPCanon_changes_types type; 01282 union { 01283 struct _PTPCanon_New_Object object; /* TYPE_OBJECTINFO */ 01284 char *info; 01285 uint16_t propid; 01286 int status; 01287 } u; 01288 }; 01289 typedef struct _PTPCanon_changes_entry PTPCanon_changes_entry; 01290 01291 typedef struct _PTPCanon_Property { 01292 uint32_t size; 01293 uint32_t proptype; 01294 unsigned char *data; 01295 01296 /* fill out for queries */ 01297 PTPDevicePropDesc dpd; 01298 } PTPCanon_Property; 01299 01300 typedef struct _PTPCanonEOSDeviceInfo { 01301 /* length */ 01302 uint32_t EventsSupported_len; 01303 uint32_t *EventsSupported; 01304 01305 uint32_t DevicePropertiesSupported_len; 01306 uint32_t *DevicePropertiesSupported; 01307 01308 uint32_t unk_len; 01309 uint32_t *unk; 01310 } PTPCanonEOSDeviceInfo; 01311 01312 /* DataType Codes */ 01313 01314 #define PTP_DTC_UNDEF 0x0000 01315 #define PTP_DTC_INT8 0x0001 01316 #define PTP_DTC_UINT8 0x0002 01317 #define PTP_DTC_INT16 0x0003 01318 #define PTP_DTC_UINT16 0x0004 01319 #define PTP_DTC_INT32 0x0005 01320 #define PTP_DTC_UINT32 0x0006 01321 #define PTP_DTC_INT64 0x0007 01322 #define PTP_DTC_UINT64 0x0008 01323 #define PTP_DTC_INT128 0x0009 01324 #define PTP_DTC_UINT128 0x000A 01325 01326 #define PTP_DTC_ARRAY_MASK 0x4000 01327 01328 #define PTP_DTC_AINT8 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT8) 01329 #define PTP_DTC_AUINT8 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT8) 01330 #define PTP_DTC_AINT16 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT16) 01331 #define PTP_DTC_AUINT16 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT16) 01332 #define PTP_DTC_AINT32 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT32) 01333 #define PTP_DTC_AUINT32 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT32) 01334 #define PTP_DTC_AINT64 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT64) 01335 #define PTP_DTC_AUINT64 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT64) 01336 #define PTP_DTC_AINT128 (PTP_DTC_ARRAY_MASK | PTP_DTC_INT128) 01337 #define PTP_DTC_AUINT128 (PTP_DTC_ARRAY_MASK | PTP_DTC_UINT128) 01338 01339 #define PTP_DTC_STR 0xFFFF 01340 01341 /* Device Properties Codes */ 01342 01343 /* PTP v1.0 property codes */ 01344 #define PTP_DPC_Undefined 0x5000 01345 #define PTP_DPC_BatteryLevel 0x5001 01346 #define PTP_DPC_FunctionalMode 0x5002 01347 #define PTP_DPC_ImageSize 0x5003 01348 #define PTP_DPC_CompressionSetting 0x5004 01349 #define PTP_DPC_WhiteBalance 0x5005 01350 #define PTP_DPC_RGBGain 0x5006 01351 #define PTP_DPC_FNumber 0x5007 01352 #define PTP_DPC_FocalLength 0x5008 01353 #define PTP_DPC_FocusDistance 0x5009 01354 #define PTP_DPC_FocusMode 0x500A 01355 #define PTP_DPC_ExposureMeteringMode 0x500B 01356 #define PTP_DPC_FlashMode 0x500C 01357 #define PTP_DPC_ExposureTime 0x500D 01358 #define PTP_DPC_ExposureProgramMode 0x500E 01359 #define PTP_DPC_ExposureIndex 0x500F 01360 #define PTP_DPC_ExposureBiasCompensation 0x5010 01361 #define PTP_DPC_DateTime 0x5011 01362 #define PTP_DPC_CaptureDelay 0x5012 01363 #define PTP_DPC_StillCaptureMode 0x5013 01364 #define PTP_DPC_Contrast 0x5014 01365 #define PTP_DPC_Sharpness 0x5015 01366 #define PTP_DPC_DigitalZoom 0x5016 01367 #define PTP_DPC_EffectMode 0x5017 01368 #define PTP_DPC_BurstNumber 0x5018 01369 #define PTP_DPC_BurstInterval 0x5019 01370 #define PTP_DPC_TimelapseNumber 0x501A 01371 #define PTP_DPC_TimelapseInterval 0x501B 01372 #define PTP_DPC_FocusMeteringMode 0x501C 01373 #define PTP_DPC_UploadURL 0x501D 01374 #define PTP_DPC_Artist 0x501E 01375 #define PTP_DPC_CopyrightInfo 0x501F 01376 /* PTP v1.1 property codes */ 01377 #define PTP_DPC_SupportedStreams 0x5020 01378 #define PTP_DPC_EnabledStreams 0x5021 01379 #define PTP_DPC_VideoFormat 0x5022 01380 #define PTP_DPC_VideoResolution 0x5023 01381 #define PTP_DPC_VideoQuality 0x5024 01382 #define PTP_DPC_VideoFrameRate 0x5025 01383 #define PTP_DPC_VideoContrast 0x5026 01384 #define PTP_DPC_VideoBrightness 0x5027 01385 #define PTP_DPC_AudioFormat 0x5028 01386 #define PTP_DPC_AudioBitrate 0x5029 01387 #define PTP_DPC_AudioSamplingRate 0x502A 01388 #define PTP_DPC_AudioBitPerSample 0x502B 01389 #define PTP_DPC_AudioVolume 0x502C 01390 01391 /* Proprietary vendor extension device property mask */ 01392 #define PTP_DPC_EXTENSION_MASK 0xF000 01393 #define PTP_DPC_EXTENSION 0xD000 01394 01395 /* Zune extension device property codes */ 01396 #define PTP_DPC_MTP_ZUNE_UNKNOWN1 0xD181 01397 #define PTP_DPC_MTP_ZUNE_UNKNOWN2 0xD132 01398 #define PTP_DPC_MTP_ZUNE_UNKNOWN3 0xD215 01399 #define PTP_DPC_MTP_ZUNE_UNKNOWN4 0xD216 01400 01401 /* Eastman Kodak extension device property codes */ 01402 #define PTP_DPC_EK_ColorTemperature 0xD001 01403 #define PTP_DPC_EK_DateTimeStampFormat 0xD002 01404 #define PTP_DPC_EK_BeepMode 0xD003 01405 #define PTP_DPC_EK_VideoOut 0xD004 01406 #define PTP_DPC_EK_PowerSaving 0xD005 01407 #define PTP_DPC_EK_UI_Language 0xD006 01408 01409 /* Canon extension device property codes */ 01410 #define PTP_DPC_CANON_BeepMode 0xD001 01411 #define PTP_DPC_CANON_BatteryKind 0xD002 01412 #define PTP_DPC_CANON_BatteryStatus 0xD003 01413 #define PTP_DPC_CANON_UILockType 0xD004 01414 #define PTP_DPC_CANON_CameraMode 0xD005 01415 #define PTP_DPC_CANON_ImageQuality 0xD006 01416 #define PTP_DPC_CANON_FullViewFileFormat 0xD007 01417 #define PTP_DPC_CANON_ImageSize 0xD008 01418 #define PTP_DPC_CANON_SelfTime 0xD009 01419 #define PTP_DPC_CANON_FlashMode 0xD00A 01420 #define PTP_DPC_CANON_Beep 0xD00B 01421 #define PTP_DPC_CANON_ShootingMode 0xD00C 01422 #define PTP_DPC_CANON_ImageMode 0xD00D 01423 #define PTP_DPC_CANON_DriveMode 0xD00E 01424 #define PTP_DPC_CANON_EZoom 0xD00F 01425 #define PTP_DPC_CANON_MeteringMode 0xD010 01426 #define PTP_DPC_CANON_AFDistance 0xD011 01427 #define PTP_DPC_CANON_FocusingPoint 0xD012 01428 #define PTP_DPC_CANON_WhiteBalance 0xD013 01429 #define PTP_DPC_CANON_SlowShutterSetting 0xD014 01430 #define PTP_DPC_CANON_AFMode 0xD015 01431 #define PTP_DPC_CANON_ImageStabilization 0xD016 01432 #define PTP_DPC_CANON_Contrast 0xD017 01433 #define PTP_DPC_CANON_ColorGain 0xD018 01434 #define PTP_DPC_CANON_Sharpness 0xD019 01435 #define PTP_DPC_CANON_Sensitivity 0xD01A 01436 #define PTP_DPC_CANON_ParameterSet 0xD01B 01437 #define PTP_DPC_CANON_ISOSpeed 0xD01C 01438 #define PTP_DPC_CANON_Aperture 0xD01D 01439 #define PTP_DPC_CANON_ShutterSpeed 0xD01E 01440 #define PTP_DPC_CANON_ExpCompensation 0xD01F 01441 #define PTP_DPC_CANON_FlashCompensation 0xD020 01442 #define PTP_DPC_CANON_AEBExposureCompensation 0xD021 01443 #define PTP_DPC_CANON_AvOpen 0xD023 01444 #define PTP_DPC_CANON_AvMax 0xD024 01445 #define PTP_DPC_CANON_FocalLength 0xD025 01446 #define PTP_DPC_CANON_FocalLengthTele 0xD026 01447 #define PTP_DPC_CANON_FocalLengthWide 0xD027 01448 #define PTP_DPC_CANON_FocalLengthDenominator 0xD028 01449 #define PTP_DPC_CANON_CaptureTransferMode 0xD029 01450 #define CANON_TRANSFER_ENTIRE_IMAGE_TO_PC 0x0002 01451 #define CANON_TRANSFER_SAVE_THUMBNAIL_TO_DEVICE 0x0004 01452 #define CANON_TRANSFER_SAVE_IMAGE_TO_DEVICE 0x0008 01453 /* we use those values: */ 01454 #define CANON_TRANSFER_MEMORY (2|1) 01455 #define CANON_TRANSFER_CARD (8|4|1) 01456 01457 #define PTP_DPC_CANON_Zoom 0xD02A 01458 #define PTP_DPC_CANON_NamePrefix 0xD02B 01459 #define PTP_DPC_CANON_SizeQualityMode 0xD02C 01460 #define PTP_DPC_CANON_SupportedThumbSize 0xD02D 01461 #define PTP_DPC_CANON_SizeOfOutputDataFromCamera 0xD02E 01462 #define PTP_DPC_CANON_SizeOfInputDataToCamera 0xD02F 01463 #define PTP_DPC_CANON_RemoteAPIVersion 0xD030 01464 #define PTP_DPC_CANON_FirmwareVersion 0xD031 01465 #define PTP_DPC_CANON_CameraModel 0xD032 01466 #define PTP_DPC_CANON_CameraOwner 0xD033 01467 #define PTP_DPC_CANON_UnixTime 0xD034 01468 #define PTP_DPC_CANON_CameraBodyID 0xD035 01469 #define PTP_DPC_CANON_CameraOutput 0xD036 01470 #define PTP_DPC_CANON_DispAv 0xD037 01471 #define PTP_DPC_CANON_AvOpenApex 0xD038 01472 #define PTP_DPC_CANON_DZoomMagnification 0xD039 01473 #define PTP_DPC_CANON_MlSpotPos 0xD03A 01474 #define PTP_DPC_CANON_DispAvMax 0xD03B 01475 #define PTP_DPC_CANON_AvMaxApex 0xD03C 01476 #define PTP_DPC_CANON_EZoomStartPosition 0xD03D 01477 #define PTP_DPC_CANON_FocalLengthOfTele 0xD03E 01478 #define PTP_DPC_CANON_EZoomSizeOfTele 0xD03F 01479 #define PTP_DPC_CANON_PhotoEffect 0xD040 01480 #define PTP_DPC_CANON_AssistLight 0xD041 01481 #define PTP_DPC_CANON_FlashQuantityCount 0xD042 01482 #define PTP_DPC_CANON_RotationAngle 0xD043 01483 #define PTP_DPC_CANON_RotationScene 0xD044 01484 #define PTP_DPC_CANON_EventEmulateMode 0xD045 01485 #define PTP_DPC_CANON_DPOFVersion 0xD046 01486 #define PTP_DPC_CANON_TypeOfSupportedSlideShow 0xD047 01487 #define PTP_DPC_CANON_AverageFilesizes 0xD048 01488 #define PTP_DPC_CANON_ModelID 0xD049 01489 01490 /* From EOS 400D trace. */ 01491 #define PTP_DPC_CANON_EOS_Aperture 0xD101 01492 #define PTP_DPC_CANON_EOS_ShutterSpeed 0xD102 01493 #define PTP_DPC_CANON_EOS_ISOSpeed 0xD103 01494 #define PTP_DPC_CANON_EOS_ExpCompensation 0xD104 01495 #define PTP_DPC_CANON_EOS_AutoExposureMode 0xD105 01496 #define PTP_DPC_CANON_EOS_DriveMode 0xD106 01497 #define PTP_DPC_CANON_EOS_MeteringMode 0xD107 01498 #define PTP_DPC_CANON_EOS_FocusMode 0xD108 01499 #define PTP_DPC_CANON_EOS_WhiteBalance 0xD109 01500 #define PTP_DPC_CANON_EOS_ColorTemperature 0xD10A 01501 #define PTP_DPC_CANON_EOS_WhiteBalanceAdjustA 0xD10B 01502 #define PTP_DPC_CANON_EOS_WhiteBalanceAdjustB 0xD10C 01503 #define PTP_DPC_CANON_EOS_WhiteBalanceXA 0xD10D 01504 #define PTP_DPC_CANON_EOS_WhiteBalanceXB 0xD10E 01505 #define PTP_DPC_CANON_EOS_ColorSpace 0xD10F 01506 #define PTP_DPC_CANON_EOS_PictureStyle 0xD110 01507 #define PTP_DPC_CANON_EOS_BatteryPower 0xD111 01508 #define PTP_DPC_CANON_EOS_BatterySelect 0xD112 01509 #define PTP_DPC_CANON_EOS_CameraTime 0xD113 01510 #define PTP_DPC_CANON_EOS_AutoPowerOff 0xD114 01511 #define PTP_DPC_CANON_EOS_Owner 0xD115 01512 #define PTP_DPC_CANON_EOS_ModelID 0xD116 01513 #define PTP_DPC_CANON_EOS_PTPExtensionVersion 0xD119 01514 #define PTP_DPC_CANON_EOS_DPOFVersion 0xD11A 01515 #define PTP_DPC_CANON_EOS_AvailableShots 0xD11B 01516 #define PTP_CANON_EOS_CAPTUREDEST_HD 4 01517 #define PTP_DPC_CANON_EOS_CaptureDestination 0xD11C 01518 #define PTP_DPC_CANON_EOS_BracketMode 0xD11D 01519 #define PTP_DPC_CANON_EOS_CurrentStorage 0xD11E 01520 #define PTP_DPC_CANON_EOS_CurrentFolder 0xD11F 01521 #define PTP_DPC_CANON_EOS_ImageFormat 0xD120 /* file setting */ 01522 #define PTP_DPC_CANON_EOS_ImageFormatCF 0xD121 /* file setting CF */ 01523 #define PTP_DPC_CANON_EOS_ImageFormatSD 0xD122 /* file setting SD */ 01524 #define PTP_DPC_CANON_EOS_ImageFormatExtHD 0xD123 /* file setting exthd */ 01525 #define PTP_DPC_CANON_EOS_CompressionS 0xD130 01526 #define PTP_DPC_CANON_EOS_CompressionM1 0xD131 01527 #define PTP_DPC_CANON_EOS_CompressionM2 0xD132 01528 #define PTP_DPC_CANON_EOS_CompressionL 0xD133 01529 #define PTP_DPC_CANON_EOS_AEModeDial 0xD138 01530 #define PTP_DPC_CANON_EOS_AEModeCustom 0xD139 01531 #define PTP_DPC_CANON_EOS_MirrorUpSetting 0xD13A 01532 #define PTP_DPC_CANON_EOS_HighlightTonePriority 0xD13B 01533 #define PTP_DPC_CANON_EOS_AFSelectFocusArea 0xD13C 01534 #define PTP_DPC_CANON_EOS_HDRSetting 0xD13D 01535 #define PTP_DPC_CANON_EOS_PCWhiteBalance1 0xD140 01536 #define PTP_DPC_CANON_EOS_PCWhiteBalance2 0xD141 01537 #define PTP_DPC_CANON_EOS_PCWhiteBalance3 0xD142 01538 #define PTP_DPC_CANON_EOS_PCWhiteBalance4 0xD143 01539 #define PTP_DPC_CANON_EOS_PCWhiteBalance5 0xD144 01540 #define PTP_DPC_CANON_EOS_MWhiteBalance 0xD145 01541 #define PTP_DPC_CANON_EOS_MWhiteBalanceEx 0xD146 01542 #define PTP_DPC_CANON_EOS_UnknownPropD14D 0xD14D /*found in Canon EOS 5D M3*/ 01543 #define PTP_DPC_CANON_EOS_PictureStyleStandard 0xD150 01544 #define PTP_DPC_CANON_EOS_PictureStylePortrait 0xD151 01545 #define PTP_DPC_CANON_EOS_PictureStyleLandscape 0xD152 01546 #define PTP_DPC_CANON_EOS_PictureStyleNeutral 0xD153 01547 #define PTP_DPC_CANON_EOS_PictureStyleFaithful 0xD154 01548 #define PTP_DPC_CANON_EOS_PictureStyleBlackWhite 0xD155 01549 #define PTP_DPC_CANON_EOS_PictureStyleAuto 0xD156 01550 #define PTP_DPC_CANON_EOS_PictureStyleUserSet1 0xD160 01551 #define PTP_DPC_CANON_EOS_PictureStyleUserSet2 0xD161 01552 #define PTP_DPC_CANON_EOS_PictureStyleUserSet3 0xD162 01553 #define PTP_DPC_CANON_EOS_PictureStyleParam1 0xD170 01554 #define PTP_DPC_CANON_EOS_PictureStyleParam2 0xD171 01555 #define PTP_DPC_CANON_EOS_PictureStyleParam3 0xD172 01556 #define PTP_DPC_CANON_EOS_HighISOSettingNoiseReduction 0xD178 01557 #define PTP_DPC_CANON_EOS_MovieServoAF 0xD179 01558 #define PTP_DPC_CANON_EOS_ContinuousAFValid 0xD17A 01559 #define PTP_DPC_CANON_EOS_Attenuator 0xD17B 01560 #define PTP_DPC_CANON_EOS_UTCTime 0xD17C 01561 #define PTP_DPC_CANON_EOS_Timezone 0xD17D 01562 #define PTP_DPC_CANON_EOS_Summertime 0xD17E 01563 #define PTP_DPC_CANON_EOS_FlavorLUTParams 0xD17F 01564 #define PTP_DPC_CANON_EOS_CustomFunc1 0xD180 01565 #define PTP_DPC_CANON_EOS_CustomFunc2 0xD181 01566 #define PTP_DPC_CANON_EOS_CustomFunc3 0xD182 01567 #define PTP_DPC_CANON_EOS_CustomFunc4 0xD183 01568 #define PTP_DPC_CANON_EOS_CustomFunc5 0xD184 01569 #define PTP_DPC_CANON_EOS_CustomFunc6 0xD185 01570 #define PTP_DPC_CANON_EOS_CustomFunc7 0xD186 01571 #define PTP_DPC_CANON_EOS_CustomFunc8 0xD187 01572 #define PTP_DPC_CANON_EOS_CustomFunc9 0xD188 01573 #define PTP_DPC_CANON_EOS_CustomFunc10 0xD189 01574 #define PTP_DPC_CANON_EOS_CustomFunc11 0xD18a 01575 #define PTP_DPC_CANON_EOS_CustomFunc12 0xD18b 01576 #define PTP_DPC_CANON_EOS_CustomFunc13 0xD18c 01577 #define PTP_DPC_CANON_EOS_CustomFunc14 0xD18d 01578 #define PTP_DPC_CANON_EOS_CustomFunc15 0xD18e 01579 #define PTP_DPC_CANON_EOS_CustomFunc16 0xD18f 01580 #define PTP_DPC_CANON_EOS_CustomFunc17 0xD190 01581 #define PTP_DPC_CANON_EOS_CustomFunc18 0xD191 01582 #define PTP_DPC_CANON_EOS_CustomFunc19 0xD192 01583 #define PTP_DPC_CANON_EOS_CustomFunc19 0xD192 01584 #define PTP_DPC_CANON_EOS_InnerDevelop 0xD193 01585 #define PTP_DPC_CANON_EOS_MultiAspect 0xD194 01586 #define PTP_DPC_CANON_EOS_MovieSoundRecord 0xD195 01587 #define PTP_DPC_CANON_EOS_MovieRecordVolume 0xD196 01588 #define PTP_DPC_CANON_EOS_WindCut 0xD197 01589 #define PTP_DPC_CANON_EOS_ExtenderType 0xD198 01590 #define PTP_DPC_CANON_EOS_OLCInfoVersion 0xD199 01591 #define PTP_DPC_CANON_EOS_UnknownPropD19A 0xD19A /*found in Canon EOS 5D M3*/ 01592 #define PTP_DPC_CANON_EOS_UnknownPropD19C 0xD19C /*found in Canon EOS 5D M3*/ 01593 #define PTP_DPC_CANON_EOS_UnknownPropD19D 0xD19D /*found in Canon EOS 5D M3*/ 01594 #define PTP_DPC_CANON_EOS_CustomFuncEx 0xD1a0 01595 #define PTP_DPC_CANON_EOS_MyMenu 0xD1a1 01596 #define PTP_DPC_CANON_EOS_MyMenuList 0xD1a2 01597 #define PTP_DPC_CANON_EOS_WftStatus 0xD1a3 01598 #define PTP_DPC_CANON_EOS_WftInputTransmission 0xD1a4 01599 #define PTP_DPC_CANON_EOS_HDDirectoryStructure 0xD1a5 01600 #define PTP_DPC_CANON_EOS_BatteryInfo 0xD1a6 01601 #define PTP_DPC_CANON_EOS_AdapterInfo 0xD1a7 01602 #define PTP_DPC_CANON_EOS_LensStatus 0xD1a8 01603 #define PTP_DPC_CANON_EOS_QuickReviewTime 0xD1a9 01604 #define PTP_DPC_CANON_EOS_CardExtension 0xD1aa 01605 #define PTP_DPC_CANON_EOS_TempStatus 0xD1ab 01606 #define PTP_DPC_CANON_EOS_ShutterCounter 0xD1ac 01607 #define PTP_DPC_CANON_EOS_SpecialOption 0xD1ad 01608 #define PTP_DPC_CANON_EOS_PhotoStudioMode 0xD1ae 01609 #define PTP_DPC_CANON_EOS_SerialNumber 0xD1af 01610 #define PTP_DPC_CANON_EOS_EVFOutputDevice 0xD1b0 01611 #define PTP_DPC_CANON_EOS_EVFMode 0xD1b1 01612 #define PTP_DPC_CANON_EOS_DepthOfFieldPreview 0xD1b2 01613 #define PTP_DPC_CANON_EOS_EVFSharpness 0xD1b3 01614 #define PTP_DPC_CANON_EOS_EVFWBMode 0xD1b4 01615 #define PTP_DPC_CANON_EOS_EVFClickWBCoeffs 0xD1b5 01616 #define PTP_DPC_CANON_EOS_EVFColorTemp 0xD1b6 01617 #define PTP_DPC_CANON_EOS_ExposureSimMode 0xD1b7 01618 #define PTP_DPC_CANON_EOS_EVFRecordStatus 0xD1b8 01619 #define PTP_DPC_CANON_EOS_LvAfSystem 0xD1ba 01620 #define PTP_DPC_CANON_EOS_MovSize 0xD1bb 01621 #define PTP_DPC_CANON_EOS_LvViewTypeSelect 0xD1bc 01622 #define PTP_DPC_CANON_EOS_MirrorDownStatus 0xD1bd 01623 #define PTP_DPC_CANON_EOS_MovieParam 0xD1be 01624 #define PTP_DPC_CANON_EOS_MirrorLockupState 0xD1bf 01625 #define PTP_DPC_CANON_EOS_FlashChargingState 0xD1C0 01626 #define PTP_DPC_CANON_EOS_AloMode 0xD1C1 01627 #define PTP_DPC_CANON_EOS_FixedMovie 0xD1C2 01628 #define PTP_DPC_CANON_EOS_OneShotRawOn 0xD1C3 01629 #define PTP_DPC_CANON_EOS_ErrorForDisplay 0xD1C4 01630 #define PTP_DPC_CANON_EOS_AEModeMovie 0xD1C5 01631 #define PTP_DPC_CANON_EOS_BuiltinStroboMode 0xD1C6 01632 #define PTP_DPC_CANON_EOS_StroboDispState 0xD1C7 01633 #define PTP_DPC_CANON_EOS_StroboETTL2Metering 0xD1C8 01634 #define PTP_DPC_CANON_EOS_ContinousAFMode 0xD1C9 01635 #define PTP_DPC_CANON_EOS_MovieParam2 0xD1CA 01636 #define PTP_DPC_CANON_EOS_StroboSettingExpComposition 0xD1CB 01637 #define PTP_DPC_CANON_EOS_MovieParam3 0xD1CC 01638 #define PTP_DPC_CANON_EOS_LVMedicalRotate 0xD1CF 01639 #define PTP_DPC_CANON_EOS_Artist 0xD1d0 01640 #define PTP_DPC_CANON_EOS_Copyright 0xD1d1 01641 #define PTP_DPC_CANON_EOS_BracketValue 0xD1d2 01642 #define PTP_DPC_CANON_EOS_FocusInfoEx 0xD1d3 01643 #define PTP_DPC_CANON_EOS_DepthOfField 0xD1d4 01644 #define PTP_DPC_CANON_EOS_Brightness 0xD1d5 01645 #define PTP_DPC_CANON_EOS_LensAdjustParams 0xD1d6 01646 #define PTP_DPC_CANON_EOS_EFComp 0xD1d7 01647 #define PTP_DPC_CANON_EOS_LensName 0xD1d8 01648 #define PTP_DPC_CANON_EOS_AEB 0xD1d9 01649 #define PTP_DPC_CANON_EOS_StroboSetting 0xD1da 01650 #define PTP_DPC_CANON_EOS_StroboWirelessSetting 0xD1db 01651 #define PTP_DPC_CANON_EOS_StroboFiring 0xD1dc 01652 #define PTP_DPC_CANON_EOS_LensID 0xD1dd 01653 #define PTP_DPC_CANON_EOS_LCDBrightness 0xD1de 01654 #define PTP_DPC_CANON_EOS_CADarkBright 0xD1df 01655 01656 /* Nikon extension device property codes */ 01657 #define PTP_DPC_NIKON_ShootingBank 0xD010 01658 #define PTP_DPC_NIKON_ShootingBankNameA 0xD011 01659 #define PTP_DPC_NIKON_ShootingBankNameB 0xD012 01660 #define PTP_DPC_NIKON_ShootingBankNameC 0xD013 01661 #define PTP_DPC_NIKON_ShootingBankNameD 0xD014 01662 #define PTP_DPC_NIKON_ResetBank0 0xD015 01663 #define PTP_DPC_NIKON_RawCompression 0xD016 01664 #define PTP_DPC_NIKON_WhiteBalanceAutoBias 0xD017 01665 #define PTP_DPC_NIKON_WhiteBalanceTungstenBias 0xD018 01666 #define PTP_DPC_NIKON_WhiteBalanceFluorescentBias 0xD019 01667 #define PTP_DPC_NIKON_WhiteBalanceDaylightBias 0xD01A 01668 #define PTP_DPC_NIKON_WhiteBalanceFlashBias 0xD01B 01669 #define PTP_DPC_NIKON_WhiteBalanceCloudyBias 0xD01C 01670 #define PTP_DPC_NIKON_WhiteBalanceShadeBias 0xD01D 01671 #define PTP_DPC_NIKON_WhiteBalanceColorTemperature 0xD01E 01672 #define PTP_DPC_NIKON_WhiteBalancePresetNo 0xD01F 01673 #define PTP_DPC_NIKON_WhiteBalancePresetName0 0xD020 01674 #define PTP_DPC_NIKON_WhiteBalancePresetName1 0xD021 01675 #define PTP_DPC_NIKON_WhiteBalancePresetName2 0xD022 01676 #define PTP_DPC_NIKON_WhiteBalancePresetName3 0xD023 01677 #define PTP_DPC_NIKON_WhiteBalancePresetName4 0xD024 01678 #define PTP_DPC_NIKON_WhiteBalancePresetVal0 0xD025 01679 #define PTP_DPC_NIKON_WhiteBalancePresetVal1 0xD026 01680 #define PTP_DPC_NIKON_WhiteBalancePresetVal2 0xD027 01681 #define PTP_DPC_NIKON_WhiteBalancePresetVal3 0xD028 01682 #define PTP_DPC_NIKON_WhiteBalancePresetVal4 0xD029 01683 #define PTP_DPC_NIKON_ImageSharpening 0xD02A 01684 #define PTP_DPC_NIKON_ToneCompensation 0xD02B 01685 #define PTP_DPC_NIKON_ColorModel 0xD02C 01686 #define PTP_DPC_NIKON_HueAdjustment 0xD02D 01687 #define PTP_DPC_NIKON_NonCPULensDataFocalLength 0xD02E /* Set FMM Manual */ 01688 #define PTP_DPC_NIKON_NonCPULensDataMaximumAperture 0xD02F /* Set F0 Manual */ 01689 #define PTP_DPC_NIKON_ShootingMode 0xD030 01690 #define PTP_DPC_NIKON_JPEG_Compression_Policy 0xD031 01691 #define PTP_DPC_NIKON_ColorSpace 0xD032 01692 #define PTP_DPC_NIKON_AutoDXCrop 0xD033 01693 #define PTP_DPC_NIKON_FlickerReduction 0xD034 01694 #define PTP_DPC_NIKON_RemoteMode 0xD035 01695 #define PTP_DPC_NIKON_VideoMode 0xD036 01696 #define PTP_DPC_NIKON_EffectMode 0xD037 01697 #define PTP_DPC_NIKON_1_Mode 0xD038 01698 #define PTP_DPC_NIKON_CSMMenuBankSelect 0xD040 01699 #define PTP_DPC_NIKON_MenuBankNameA 0xD041 01700 #define PTP_DPC_NIKON_MenuBankNameB 0xD042 01701 #define PTP_DPC_NIKON_MenuBankNameC 0xD043 01702 #define PTP_DPC_NIKON_MenuBankNameD 0xD044 01703 #define PTP_DPC_NIKON_ResetBank 0xD045 01704 #define PTP_DPC_NIKON_A1AFCModePriority 0xD048 01705 #define PTP_DPC_NIKON_A2AFSModePriority 0xD049 01706 #define PTP_DPC_NIKON_A3GroupDynamicAF 0xD04A 01707 #define PTP_DPC_NIKON_A4AFActivation 0xD04B 01708 #define PTP_DPC_NIKON_FocusAreaIllumManualFocus 0xD04C 01709 #define PTP_DPC_NIKON_FocusAreaIllumContinuous 0xD04D 01710 #define PTP_DPC_NIKON_FocusAreaIllumWhenSelected 0xD04E 01711 #define PTP_DPC_NIKON_FocusAreaWrap 0xD04F /* area sel */ 01712 #define PTP_DPC_NIKON_VerticalAFON 0xD050 01713 #define PTP_DPC_NIKON_AFLockOn 0xD051 01714 #define PTP_DPC_NIKON_FocusAreaZone 0xD052 01715 #define PTP_DPC_NIKON_EnableCopyright 0xD053 01716 #define PTP_DPC_NIKON_ISOAuto 0xD054 01717 #define PTP_DPC_NIKON_EVISOStep 0xD055 01718 #define PTP_DPC_NIKON_EVStep 0xD056 /* EV Step SS FN */ 01719 #define PTP_DPC_NIKON_EVStepExposureComp 0xD057 01720 #define PTP_DPC_NIKON_ExposureCompensation 0xD058 01721 #define PTP_DPC_NIKON_CenterWeightArea 0xD059 01722 #define PTP_DPC_NIKON_ExposureBaseMatrix 0xD05A 01723 #define PTP_DPC_NIKON_ExposureBaseCenter 0xD05B 01724 #define PTP_DPC_NIKON_ExposureBaseSpot 0xD05C 01725 #define PTP_DPC_NIKON_LiveViewAFArea 0xD05D /* FIXME: AfAtLiveview? */ 01726 #define PTP_DPC_NIKON_AELockMode 0xD05E 01727 #define PTP_DPC_NIKON_AELAFLMode 0xD05F 01728 #define PTP_DPC_NIKON_LiveViewAFFocus 0xD061 01729 #define PTP_DPC_NIKON_MeterOff 0xD062 01730 #define PTP_DPC_NIKON_SelfTimer 0xD063 01731 #define PTP_DPC_NIKON_MonitorOff 0xD064 01732 #define PTP_DPC_NIKON_ImgConfTime 0xD065 01733 #define PTP_DPC_NIKON_AutoOffTimers 0xD066 01734 #define PTP_DPC_NIKON_AngleLevel 0xD067 01735 #define PTP_DPC_NIKON_D1ShootingSpeed 0xD068 /* continous speed low */ 01736 #define PTP_DPC_NIKON_D2MaximumShots 0xD069 01737 #define PTP_DPC_NIKON_ExposureDelayMode 0xD06A 01738 #define PTP_DPC_NIKON_LongExposureNoiseReduction 0xD06B 01739 #define PTP_DPC_NIKON_FileNumberSequence 0xD06C 01740 #define PTP_DPC_NIKON_ControlPanelFinderRearControl 0xD06D 01741 #define PTP_DPC_NIKON_ControlPanelFinderViewfinder 0xD06E 01742 #define PTP_DPC_NIKON_D7Illumination 0xD06F 01743 #define PTP_DPC_NIKON_NrHighISO 0xD070 01744 #define PTP_DPC_NIKON_SHSET_CH_GUID_DISP 0xD071 01745 #define PTP_DPC_NIKON_ArtistName 0xD072 01746 #define PTP_DPC_NIKON_CopyrightInfo 0xD073 01747 #define PTP_DPC_NIKON_FlashSyncSpeed 0xD074 01748 #define PTP_DPC_NIKON_FlashShutterSpeed 0xD075 /* SB Low Limit */ 01749 #define PTP_DPC_NIKON_E3AAFlashMode 0xD076 01750 #define PTP_DPC_NIKON_E4ModelingFlash 0xD077 01751 #define PTP_DPC_NIKON_BracketSet 0xD078 /* Bracket Type? */ 01752 #define PTP_DPC_NIKON_E6ManualModeBracketing 0xD079 /* Bracket Factor? */ 01753 #define PTP_DPC_NIKON_BracketOrder 0xD07A 01754 #define PTP_DPC_NIKON_E8AutoBracketSelection 0xD07B /* Bracket Method? */ 01755 #define PTP_DPC_NIKON_BracketingSet 0xD07C 01756 #define PTP_DPC_NIKON_F1CenterButtonShootingMode 0xD080 01757 #define PTP_DPC_NIKON_CenterButtonPlaybackMode 0xD081 01758 #define PTP_DPC_NIKON_F2Multiselector 0xD082 01759 #define PTP_DPC_NIKON_F3PhotoInfoPlayback 0xD083 /* MultiSelector Dir */ 01760 #define PTP_DPC_NIKON_F4AssignFuncButton 0xD084 /* CMD Dial Rotate */ 01761 #define PTP_DPC_NIKON_F5CustomizeCommDials 0xD085 /* CMD Dial Change */ 01762 #define PTP_DPC_NIKON_ReverseCommandDial 0xD086 /* CMD Dial FN Set */ 01763 #define PTP_DPC_NIKON_ApertureSetting 0xD087 /* CMD Dial Active */ 01764 #define PTP_DPC_NIKON_MenusAndPlayback 0xD088 /* CMD Dial Active */ 01765 #define PTP_DPC_NIKON_F6ButtonsAndDials 0xD089 /* Universal Mode? */ 01766 #define PTP_DPC_NIKON_NoCFCard 0xD08A /* Enable Shutter? */ 01767 #define PTP_DPC_NIKON_CenterButtonZoomRatio 0xD08B 01768 #define PTP_DPC_NIKON_FunctionButton2 0xD08C 01769 #define PTP_DPC_NIKON_AFAreaPoint 0xD08D 01770 #define PTP_DPC_NIKON_NormalAFOn 0xD08E 01771 #define PTP_DPC_NIKON_CleanImageSensor 0xD08F 01772 #define PTP_DPC_NIKON_ImageCommentString 0xD090 01773 #define PTP_DPC_NIKON_ImageCommentEnable 0xD091 01774 #define PTP_DPC_NIKON_ImageRotation 0xD092 01775 #define PTP_DPC_NIKON_ManualSetLensNo 0xD093 01776 #define PTP_DPC_NIKON_MovScreenSize 0xD0A0 01777 #define PTP_DPC_NIKON_MovVoice 0xD0A1 01778 #define PTP_DPC_NIKON_MovMicrophone 0xD0A2 01779 #define PTP_DPC_NIKON_MovFileSlot 0xD0A3 01780 #define PTP_DPC_NIKON_MovRecProhibitCondition 0xD0A4 01781 #define PTP_DPC_NIKON_ManualMovieSetting 0xD0A6 01782 #define PTP_DPC_NIKON_MovQuality 0xD0A7 01783 #define PTP_DPC_NIKON_LiveViewScreenDisplaySetting 0xD0B2 01784 #define PTP_DPC_NIKON_MonitorOffDelay 0xD0B3 01785 #define PTP_DPC_NIKON_Bracketing 0xD0C0 01786 #define PTP_DPC_NIKON_AutoExposureBracketStep 0xD0C1 01787 #define PTP_DPC_NIKON_AutoExposureBracketProgram 0xD0C2 01788 #define PTP_DPC_NIKON_AutoExposureBracketCount 0xD0C3 01789 #define PTP_DPC_NIKON_WhiteBalanceBracketStep 0xD0C4 01790 #define PTP_DPC_NIKON_WhiteBalanceBracketProgram 0xD0C5 01791 #define PTP_DPC_NIKON_LensID 0xD0E0 01792 #define PTP_DPC_NIKON_LensSort 0xD0E1 01793 #define PTP_DPC_NIKON_LensType 0xD0E2 01794 #define PTP_DPC_NIKON_FocalLengthMin 0xD0E3 01795 #define PTP_DPC_NIKON_FocalLengthMax 0xD0E4 01796 #define PTP_DPC_NIKON_MaxApAtMinFocalLength 0xD0E5 01797 #define PTP_DPC_NIKON_MaxApAtMaxFocalLength 0xD0E6 01798 #define PTP_DPC_NIKON_FinderISODisp 0xD0F0 01799 #define PTP_DPC_NIKON_AutoOffPhoto 0xD0F2 01800 #define PTP_DPC_NIKON_AutoOffMenu 0xD0F3 01801 #define PTP_DPC_NIKON_AutoOffInfo 0xD0F4 01802 #define PTP_DPC_NIKON_SelfTimerShootNum 0xD0F5 01803 #define PTP_DPC_NIKON_VignetteCtrl 0xD0F7 01804 #define PTP_DPC_NIKON_AutoDistortionControl 0xD0F8 01805 #define PTP_DPC_NIKON_SceneMode 0xD0F9 01806 #define PTP_DPC_NIKON_SceneMode2 0xD0FD 01807 #define PTP_DPC_NIKON_SelfTimerInterval 0xD0FE 01808 #define PTP_DPC_NIKON_ExposureTime 0xD100 /* Shutter Speed */ 01809 #define PTP_DPC_NIKON_ACPower 0xD101 01810 #define PTP_DPC_NIKON_WarningStatus 0xD102 01811 #define PTP_DPC_NIKON_MaximumShots 0xD103 /* remain shots (in RAM buffer?) */ 01812 #define PTP_DPC_NIKON_AFLockStatus 0xD104 01813 #define PTP_DPC_NIKON_AELockStatus 0xD105 01814 #define PTP_DPC_NIKON_FVLockStatus 0xD106 01815 #define PTP_DPC_NIKON_AutofocusLCDTopMode2 0xD107 01816 #define PTP_DPC_NIKON_AutofocusArea 0xD108 01817 #define PTP_DPC_NIKON_FlexibleProgram 0xD109 01818 #define PTP_DPC_NIKON_LightMeter 0xD10A /* Exposure Status */ 01819 #define PTP_DPC_NIKON_RecordingMedia 0xD10B /* Card or SDRAM */ 01820 #define PTP_DPC_NIKON_USBSpeed 0xD10C 01821 #define PTP_DPC_NIKON_CCDNumber 0xD10D 01822 #define PTP_DPC_NIKON_CameraOrientation 0xD10E 01823 #define PTP_DPC_NIKON_GroupPtnType 0xD10F 01824 #define PTP_DPC_NIKON_FNumberLock 0xD110 01825 #define PTP_DPC_NIKON_ExposureApertureLock 0xD111 /* shutterspeed lock*/ 01826 #define PTP_DPC_NIKON_TVLockSetting 0xD112 01827 #define PTP_DPC_NIKON_AVLockSetting 0xD113 01828 #define PTP_DPC_NIKON_IllumSetting 0xD114 01829 #define PTP_DPC_NIKON_FocusPointBright 0xD115 01830 #define PTP_DPC_NIKON_ExternalFlashAttached 0xD120 01831 #define PTP_DPC_NIKON_ExternalFlashStatus 0xD121 01832 #define PTP_DPC_NIKON_ExternalFlashSort 0xD122 01833 #define PTP_DPC_NIKON_ExternalFlashMode 0xD123 01834 #define PTP_DPC_NIKON_ExternalFlashCompensation 0xD124 01835 #define PTP_DPC_NIKON_NewExternalFlashMode 0xD125 01836 #define PTP_DPC_NIKON_FlashExposureCompensation 0xD126 01837 #define PTP_DPC_NIKON_HDRMode 0xD130 01838 #define PTP_DPC_NIKON_HDRHighDynamic 0xD131 01839 #define PTP_DPC_NIKON_HDRSmoothing 0xD132 01840 #define PTP_DPC_NIKON_OptimizeImage 0xD140 01841 #define PTP_DPC_NIKON_Saturation 0xD142 01842 #define PTP_DPC_NIKON_BW_FillerEffect 0xD143 01843 #define PTP_DPC_NIKON_BW_Sharpness 0xD144 01844 #define PTP_DPC_NIKON_BW_Contrast 0xD145 01845 #define PTP_DPC_NIKON_BW_Setting_Type 0xD146 01846 #define PTP_DPC_NIKON_Slot2SaveMode 0xD148 01847 #define PTP_DPC_NIKON_RawBitMode 0xD149 01848 #define PTP_DPC_NIKON_ActiveDLighting 0xD14E /* was PTP_DPC_NIKON_ISOAutoTime */ 01849 #define PTP_DPC_NIKON_FlourescentType 0xD14F 01850 #define PTP_DPC_NIKON_TuneColourTemperature 0xD150 01851 #define PTP_DPC_NIKON_TunePreset0 0xD151 01852 #define PTP_DPC_NIKON_TunePreset1 0xD152 01853 #define PTP_DPC_NIKON_TunePreset2 0xD153 01854 #define PTP_DPC_NIKON_TunePreset3 0xD154 01855 #define PTP_DPC_NIKON_TunePreset4 0xD155 01856 #define PTP_DPC_NIKON_BeepOff 0xD160 01857 #define PTP_DPC_NIKON_AutofocusMode 0xD161 01858 #define PTP_DPC_NIKON_AFAssist 0xD163 01859 #define PTP_DPC_NIKON_PADVPMode 0xD164 /* iso auto time */ 01860 #define PTP_DPC_NIKON_ImageReview 0xD165 01861 #define PTP_DPC_NIKON_AFAreaIllumination 0xD166 01862 #define PTP_DPC_NIKON_FlashMode 0xD167 01863 #define PTP_DPC_NIKON_FlashCommanderMode 0xD168 01864 #define PTP_DPC_NIKON_FlashSign 0xD169 01865 #define PTP_DPC_NIKON_ISO_Auto 0xD16A 01866 #define PTP_DPC_NIKON_RemoteTimeout 0xD16B 01867 #define PTP_DPC_NIKON_GridDisplay 0xD16C 01868 #define PTP_DPC_NIKON_FlashModeManualPower 0xD16D 01869 #define PTP_DPC_NIKON_FlashModeCommanderPower 0xD16E 01870 #define PTP_DPC_NIKON_AutoFP 0xD16F 01871 #define PTP_DPC_NIKON_DateImprintSetting 0xD170 01872 #define PTP_DPC_NIKON_DateCounterSelect 0xD171 01873 #define PTP_DPC_NIKON_DateCountData 0xD172 01874 #define PTP_DPC_NIKON_DateCountDisplaySetting 0xD173 01875 #define PTP_DPC_NIKON_RangeFinderSetting 0xD174 01876 #define PTP_DPC_NIKON_CSMMenu 0xD180 01877 #define PTP_DPC_NIKON_WarningDisplay 0xD181 01878 #define PTP_DPC_NIKON_BatteryCellKind 0xD182 01879 #define PTP_DPC_NIKON_ISOAutoHiLimit 0xD183 01880 #define PTP_DPC_NIKON_DynamicAFArea 0xD184 01881 #define PTP_DPC_NIKON_ContinuousSpeedHigh 0xD186 01882 #define PTP_DPC_NIKON_InfoDispSetting 0xD187 01883 #define PTP_DPC_NIKON_PreviewButton 0xD189 01884 #define PTP_DPC_NIKON_PreviewButton2 0xD18A 01885 #define PTP_DPC_NIKON_AEAFLockButton2 0xD18B 01886 #define PTP_DPC_NIKON_IndicatorDisp 0xD18D 01887 #define PTP_DPC_NIKON_CellKindPriority 0xD18E 01888 #define PTP_DPC_NIKON_BracketingFramesAndSteps 0xD190 01889 #define PTP_DPC_NIKON_LiveViewMode 0xD1A0 01890 #define PTP_DPC_NIKON_LiveViewDriveMode 0xD1A1 01891 #define PTP_DPC_NIKON_LiveViewStatus 0xD1A2 01892 #define PTP_DPC_NIKON_LiveViewImageZoomRatio 0xD1A3 01893 #define PTP_DPC_NIKON_LiveViewProhibitCondition 0xD1A4 01894 #define PTP_DPC_NIKON_MovieShutterSpeed 0xD1A8 01895 #define PTP_DPC_NIKON_MovieFNumber 0xD1A9 01896 #define PTP_DPC_NIKON_MovieISO 0xD1AA 01897 #define PTP_DPC_NIKON_LiveViewMovieMode 0xD1AC /* ? */ 01898 #define PTP_DPC_NIKON_ExposureDisplayStatus 0xD1B0 01899 #define PTP_DPC_NIKON_ExposureIndicateStatus 0xD1B1 01900 #define PTP_DPC_NIKON_InfoDispErrStatus 0xD1B2 01901 #define PTP_DPC_NIKON_ExposureIndicateLightup 0xD1B3 01902 #define PTP_DPC_NIKON_FlashOpen 0xD1C0 01903 #define PTP_DPC_NIKON_FlashCharged 0xD1C1 01904 #define PTP_DPC_NIKON_FlashMRepeatValue 0xD1D0 01905 #define PTP_DPC_NIKON_FlashMRepeatCount 0xD1D1 01906 #define PTP_DPC_NIKON_FlashMRepeatInterval 0xD1D2 01907 #define PTP_DPC_NIKON_FlashCommandChannel 0xD1D3 01908 #define PTP_DPC_NIKON_FlashCommandSelfMode 0xD1D4 01909 #define PTP_DPC_NIKON_FlashCommandSelfCompensation 0xD1D5 01910 #define PTP_DPC_NIKON_FlashCommandSelfValue 0xD1D6 01911 #define PTP_DPC_NIKON_FlashCommandAMode 0xD1D7 01912 #define PTP_DPC_NIKON_FlashCommandACompensation 0xD1D8 01913 #define PTP_DPC_NIKON_FlashCommandAValue 0xD1D9 01914 #define PTP_DPC_NIKON_FlashCommandBMode 0xD1DA 01915 #define PTP_DPC_NIKON_FlashCommandBCompensation 0xD1DB 01916 #define PTP_DPC_NIKON_FlashCommandBValue 0xD1DC 01917 #define PTP_DPC_NIKON_ApplicationMode 0xD1F0 01918 #define PTP_DPC_NIKON_ActiveSlot 0xD1F2 01919 #define PTP_DPC_NIKON_ActivePicCtrlItem 0xD200 01920 #define PTP_DPC_NIKON_ChangePicCtrlItem 0xD201 01921 #define PTP_DPC_NIKON_MovieNrHighISO 0xD236 01922 01923 01924 /* Nikon V1 (or WU adapter?) Trace */ 01925 /* d241 - gets string "Nikon_WU2_0090B5123C61" */ 01926 #define PTP_DPC_NIKON_D241 0xD241 01927 /* d244 - gets a single byte 0x00 */ 01928 #define PTP_DPC_NIKON_D244 0xD244 01929 /* d247 - gets 3 bytes 0x01 0x00 0x00 */ 01930 #define PTP_DPC_NIKON_D247 0xD247 01931 /* S9700 */ 01932 #define PTP_DPC_NIKON_GUID 0xD24F 01933 /* d250 - gets a string "0000123C61" */ 01934 #define PTP_DPC_NIKON_D250 0xD250 01935 /* d251 - gets a 0x0100000d */ 01936 #define PTP_DPC_NIKON_D251 0xD251 01937 01938 /* this is irregular, as it should be -0x5000 or 0xD000 based */ 01939 #define PTP_DPC_NIKON_1_ISO 0xF002 01940 #define PTP_DPC_NIKON_1_ImageCompression 0xF009 01941 #define PTP_DPC_NIKON_1_ImageSize 0xF00A 01942 #define PTP_DPC_NIKON_1_WhiteBalance 0xF00C 01943 #define PTP_DPC_NIKON_1_LongExposureNoiseReduction 0xF00D 01944 #define PTP_DPC_NIKON_1_HiISONoiseReduction 0xF00E 01945 #define PTP_DPC_NIKON_1_ActiveDLighting 0xF00F 01946 #define PTP_DPC_NIKON_1_MovQuality 0xF01C 01947 01948 /* Fuji specific */ 01949 #define PTP_DPC_FUJI_ColorTemperature 0xD017 01950 #define PTP_DPC_FUJI_Quality 0xD018 01951 #define PTP_DPC_FUJI_ReleaseMode 0xD201 01952 #define PTP_DPC_FUJI_FocusAreas 0xD206 01953 #define PTP_DPC_FUJI_AELock 0xD213 01954 #define PTP_DPC_FUJI_Aperture 0xD218 01955 #define PTP_DPC_FUJI_ShutterSpeed 0xD219 01956 01957 /* Microsoft/MTP specific */ 01958 #define PTP_DPC_MTP_SecureTime 0xD101 01959 #define PTP_DPC_MTP_DeviceCertificate 0xD102 01960 #define PTP_DPC_MTP_RevocationInfo 0xD103 01961 #define PTP_DPC_MTP_SynchronizationPartner 0xD401 01962 #define PTP_DPC_MTP_DeviceFriendlyName 0xD402 01963 #define PTP_DPC_MTP_VolumeLevel 0xD403 01964 #define PTP_DPC_MTP_DeviceIcon 0xD405 01965 #define PTP_DPC_MTP_SessionInitiatorInfo 0xD406 01966 #define PTP_DPC_MTP_PerceivedDeviceType 0xD407 01967 #define PTP_DPC_MTP_PlaybackRate 0xD410 01968 #define PTP_DPC_MTP_PlaybackObject 0xD411 01969 #define PTP_DPC_MTP_PlaybackContainerIndex 0xD412 01970 #define PTP_DPC_MTP_PlaybackPosition 0xD413 01971 #define PTP_DPC_MTP_PlaysForSureID 0xD131 01972 01973 /* Zune specific property codes */ 01974 #define PTP_DPC_MTP_Zune_UnknownVersion 0xD181 01975 01976 /* Olympus */ 01977 #define PTP_DPC_OLYMPUS_ResolutionMode 0xD102 01978 #define PTP_DPC_OLYMPUS_FocusPriority 0xD103 01979 #define PTP_DPC_OLYMPUS_DriveMode 0xD104 01980 #define PTP_DPC_OLYMPUS_DateTimeFormat 0xD105 01981 #define PTP_DPC_OLYMPUS_ExposureBiasStep 0xD106 01982 #define PTP_DPC_OLYMPUS_WBMode 0xD107 01983 #define PTP_DPC_OLYMPUS_OneTouchWB 0xD108 01984 #define PTP_DPC_OLYMPUS_ManualWB 0xD109 01985 #define PTP_DPC_OLYMPUS_ManualWBRBBias 0xD10A 01986 #define PTP_DPC_OLYMPUS_CustomWB 0xD10B 01987 #define PTP_DPC_OLYMPUS_CustomWBValue 0xD10C 01988 #define PTP_DPC_OLYMPUS_ExposureTimeEx 0xD10D 01989 #define PTP_DPC_OLYMPUS_BulbMode 0xD10E 01990 #define PTP_DPC_OLYMPUS_AntiMirrorMode 0xD10F 01991 #define PTP_DPC_OLYMPUS_AEBracketingFrame 0xD110 01992 #define PTP_DPC_OLYMPUS_AEBracketingStep 0xD111 01993 #define PTP_DPC_OLYMPUS_WBBracketingFrame 0xD112 01994 #define PTP_DPC_OLYMPUS_WBBracketingRBFrame 0xD112 /* dup ? */ 01995 #define PTP_DPC_OLYMPUS_WBBracketingRBRange 0xD113 01996 #define PTP_DPC_OLYMPUS_WBBracketingGMFrame 0xD114 01997 #define PTP_DPC_OLYMPUS_WBBracketingGMRange 0xD115 01998 #define PTP_DPC_OLYMPUS_FLBracketingFrame 0xD118 01999 #define PTP_DPC_OLYMPUS_FLBracketingStep 0xD119 02000 #define PTP_DPC_OLYMPUS_FlashBiasCompensation 0xD11A 02001 #define PTP_DPC_OLYMPUS_ManualFocusMode 0xD11B 02002 #define PTP_DPC_OLYMPUS_RawSaveMode 0xD11D 02003 #define PTP_DPC_OLYMPUS_AUXLightMode 0xD11E 02004 #define PTP_DPC_OLYMPUS_LensSinkMode 0xD11F 02005 #define PTP_DPC_OLYMPUS_BeepStatus 0xD120 02006 #define PTP_DPC_OLYMPUS_ColorSpace 0xD122 02007 #define PTP_DPC_OLYMPUS_ColorMatching 0xD123 02008 #define PTP_DPC_OLYMPUS_Saturation 0xD124 02009 #define PTP_DPC_OLYMPUS_NoiseReductionPattern 0xD126 02010 #define PTP_DPC_OLYMPUS_NoiseReductionRandom 0xD127 02011 #define PTP_DPC_OLYMPUS_ShadingMode 0xD129 02012 #define PTP_DPC_OLYMPUS_ISOBoostMode 0xD12A 02013 #define PTP_DPC_OLYMPUS_ExposureIndexBiasStep 0xD12B 02014 #define PTP_DPC_OLYMPUS_FilterEffect 0xD12C 02015 #define PTP_DPC_OLYMPUS_ColorTune 0xD12D 02016 #define PTP_DPC_OLYMPUS_Language 0xD12E 02017 #define PTP_DPC_OLYMPUS_LanguageCode 0xD12F 02018 #define PTP_DPC_OLYMPUS_RecviewMode 0xD130 02019 #define PTP_DPC_OLYMPUS_SleepTime 0xD131 02020 #define PTP_DPC_OLYMPUS_ManualWBGMBias 0xD132 02021 #define PTP_DPC_OLYMPUS_AELAFLMode 0xD135 02022 #define PTP_DPC_OLYMPUS_AELButtonStatus 0xD136 02023 #define PTP_DPC_OLYMPUS_CompressionSettingEx 0xD137 02024 #define PTP_DPC_OLYMPUS_ToneMode 0xD139 02025 #define PTP_DPC_OLYMPUS_GradationMode 0xD13A 02026 #define PTP_DPC_OLYMPUS_DevelopMode 0xD13B 02027 #define PTP_DPC_OLYMPUS_ExtendInnerFlashMode 0xD13C 02028 #define PTP_DPC_OLYMPUS_OutputDeviceMode 0xD13D 02029 #define PTP_DPC_OLYMPUS_LiveViewMode 0xD13E 02030 #define PTP_DPC_OLYMPUS_LCDBacklight 0xD140 02031 #define PTP_DPC_OLYMPUS_CustomDevelop 0xD141 02032 #define PTP_DPC_OLYMPUS_GradationAutoBias 0xD142 02033 #define PTP_DPC_OLYMPUS_FlashRCMode 0xD143 02034 #define PTP_DPC_OLYMPUS_FlashRCGroupValue 0xD144 02035 #define PTP_DPC_OLYMPUS_FlashRCChannelValue 0xD145 02036 #define PTP_DPC_OLYMPUS_FlashRCFPMode 0xD146 02037 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicMode 0xD147 02038 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicBias 0xD148 02039 #define PTP_DPC_OLYMPUS_FlashRCPhotoChromicManualBias 0xD149 02040 #define PTP_DPC_OLYMPUS_FlashRCQuantityLightLevel 0xD14A 02041 #define PTP_DPC_OLYMPUS_FocusMeteringValue 0xD14B 02042 #define PTP_DPC_OLYMPUS_ISOBracketingFrame 0xD14C 02043 #define PTP_DPC_OLYMPUS_ISOBracketingStep 0xD14D 02044 #define PTP_DPC_OLYMPUS_BulbMFMode 0xD14E 02045 #define PTP_DPC_OLYMPUS_BurstFPSValue 0xD14F 02046 #define PTP_DPC_OLYMPUS_ISOAutoBaseValue 0xD150 02047 #define PTP_DPC_OLYMPUS_ISOAutoMaxValue 0xD151 02048 #define PTP_DPC_OLYMPUS_BulbLimiterValue 0xD152 02049 #define PTP_DPC_OLYMPUS_DPIMode 0xD153 02050 #define PTP_DPC_OLYMPUS_DPICustomValue 0xD154 02051 #define PTP_DPC_OLYMPUS_ResolutionValueSetting 0xD155 02052 #define PTP_DPC_OLYMPUS_AFTargetSize 0xD157 02053 #define PTP_DPC_OLYMPUS_LightSensorMode 0xD158 02054 #define PTP_DPC_OLYMPUS_AEBracket 0xD159 02055 #define PTP_DPC_OLYMPUS_WBRBBracket 0xD15A 02056 #define PTP_DPC_OLYMPUS_WBGMBracket 0xD15B 02057 #define PTP_DPC_OLYMPUS_FlashBracket 0xD15C 02058 #define PTP_DPC_OLYMPUS_ISOBracket 0xD15D 02059 #define PTP_DPC_OLYMPUS_MyModeStatus 0xD15E 02060 02061 /* Sony A900 */ 02062 #define PTP_DPC_SONY_DPCCompensation 0xD200 02063 #define PTP_DPC_SONY_DRangeOptimize 0xD201 02064 #define PTP_DPC_SONY_ImageSize 0xD203 02065 #define PTP_DPC_SONY_ShutterSpeed 0xD20D 02066 #define PTP_DPC_SONY_ColorTemp 0xD20F 02067 #define PTP_DPC_SONY_CCFilter 0xD210 02068 #define PTP_DPC_SONY_AspectRatio 0xD211 02069 #define PTP_DPC_SONY_ExposeIndex 0xD216 02070 #define PTP_DPC_SONY_PictureEffect 0xD21B 02071 #define PTP_DPC_SONY_ABFilter 0xD21C 02072 #define PTP_DPC_SONY_ISO 0xD21E /* ? */ 02073 /* also seen: D2C3 D2C4 */ 02074 /* semi control opcodes */ 02075 #define PTP_DPC_SONY_Movie 0xD2C8 /* ? */ 02076 #define PTP_DPC_SONY_StillImage 0xD2C7 /* ? */ 02077 02078 02079 02080 /* Casio EX-F1 */ 02081 #define PTP_DPC_CASIO_MONITOR 0xD001 02082 #define PTP_DPC_CASIO_STORAGE 0xD002 //Not reported by DeviceInfo? 02083 #define PTP_DPC_CASIO_UNKNOWN_1 0xD004 02084 #define PTP_DPC_CASIO_UNKNOWN_2 0xD005 02085 #define PTP_DPC_CASIO_UNKNOWN_3 0xD007 02086 #define PTP_DPC_CASIO_RECORD_LIGHT 0xD008 02087 #define PTP_DPC_CASIO_UNKNOWN_4 0xD009 02088 #define PTP_DPC_CASIO_UNKNOWN_5 0xD00A 02089 #define PTP_DPC_CASIO_MOVIE_MODE 0xD00B 02090 #define PTP_DPC_CASIO_HD_SETTING 0xD00C 02091 #define PTP_DPC_CASIO_HS_SETTING 0xD00D 02092 #define PTP_DPC_CASIO_CS_HIGH_SPEED 0xD00F 02093 #define PTP_DPC_CASIO_CS_UPPER_LIMIT 0xD010 02094 #define PTP_DPC_CASIO_CS_SHOT 0xD011 02095 #define PTP_DPC_CASIO_UNKNOWN_6 0xD012 02096 #define PTP_DPC_CASIO_UNKNOWN_7 0xD013 02097 #define PTP_DPC_CASIO_UNKNOWN_8 0xD015 02098 #define PTP_DPC_CASIO_UNKNOWN_9 0xD017 02099 #define PTP_DPC_CASIO_UNKNOWN_10 0xD018 02100 #define PTP_DPC_CASIO_UNKNOWN_11 0xD019 02101 #define PTP_DPC_CASIO_UNKNOWN_12 0xD01A 02102 #define PTP_DPC_CASIO_UNKNOWN_13 0xD01B 02103 #define PTP_DPC_CASIO_UNKNOWN_14 0xD01C 02104 #define PTP_DPC_CASIO_UNKNOWN_15 0xD01D 02105 #define PTP_DPC_CASIO_UNKNOWN_16 0xD020 02106 #define PTP_DPC_CASIO_UNKNOWN_17 0xD030 02107 #define PTP_DPC_CASIO_UNKNOWN_18 0xD080 02108 02109 #define PTP_DPC_RICOH_ShutterSpeed 0xD00F 02110 02111 /* MTP specific Object Properties */ 02112 #define PTP_OPC_StorageID 0xDC01 02113 #define PTP_OPC_ObjectFormat 0xDC02 02114 #define PTP_OPC_ProtectionStatus 0xDC03 02115 #define PTP_OPC_ObjectSize 0xDC04 02116 #define PTP_OPC_AssociationType 0xDC05 02117 #define PTP_OPC_AssociationDesc 0xDC06 02118 #define PTP_OPC_ObjectFileName 0xDC07 02119 #define PTP_OPC_DateCreated 0xDC08 02120 #define PTP_OPC_DateModified 0xDC09 02121 #define PTP_OPC_Keywords 0xDC0A 02122 #define PTP_OPC_ParentObject 0xDC0B 02123 #define PTP_OPC_AllowedFolderContents 0xDC0C 02124 #define PTP_OPC_Hidden 0xDC0D 02125 #define PTP_OPC_SystemObject 0xDC0E 02126 #define PTP_OPC_PersistantUniqueObjectIdentifier 0xDC41 02127 #define PTP_OPC_SyncID 0xDC42 02128 #define PTP_OPC_PropertyBag 0xDC43 02129 #define PTP_OPC_Name 0xDC44 02130 #define PTP_OPC_CreatedBy 0xDC45 02131 #define PTP_OPC_Artist 0xDC46 02132 #define PTP_OPC_DateAuthored 0xDC47 02133 #define PTP_OPC_Description 0xDC48 02134 #define PTP_OPC_URLReference 0xDC49 02135 #define PTP_OPC_LanguageLocale 0xDC4A 02136 #define PTP_OPC_CopyrightInformation 0xDC4B 02137 #define PTP_OPC_Source 0xDC4C 02138 #define PTP_OPC_OriginLocation 0xDC4D 02139 #define PTP_OPC_DateAdded 0xDC4E 02140 #define PTP_OPC_NonConsumable 0xDC4F 02141 #define PTP_OPC_CorruptOrUnplayable 0xDC50 02142 #define PTP_OPC_ProducerSerialNumber 0xDC51 02143 #define PTP_OPC_RepresentativeSampleFormat 0xDC81 02144 #define PTP_OPC_RepresentativeSampleSize 0xDC82 02145 #define PTP_OPC_RepresentativeSampleHeight 0xDC83 02146 #define PTP_OPC_RepresentativeSampleWidth 0xDC84 02147 #define PTP_OPC_RepresentativeSampleDuration 0xDC85 02148 #define PTP_OPC_RepresentativeSampleData 0xDC86 02149 #define PTP_OPC_Width 0xDC87 02150 #define PTP_OPC_Height 0xDC88 02151 #define PTP_OPC_Duration 0xDC89 02152 #define PTP_OPC_Rating 0xDC8A 02153 #define PTP_OPC_Track 0xDC8B 02154 #define PTP_OPC_Genre 0xDC8C 02155 #define PTP_OPC_Credits 0xDC8D 02156 #define PTP_OPC_Lyrics 0xDC8E 02157 #define PTP_OPC_SubscriptionContentID 0xDC8F 02158 #define PTP_OPC_ProducedBy 0xDC90 02159 #define PTP_OPC_UseCount 0xDC91 02160 #define PTP_OPC_SkipCount 0xDC92 02161 #define PTP_OPC_LastAccessed 0xDC93 02162 #define PTP_OPC_ParentalRating 0xDC94 02163 #define PTP_OPC_MetaGenre 0xDC95 02164 #define PTP_OPC_Composer 0xDC96 02165 #define PTP_OPC_EffectiveRating 0xDC97 02166 #define PTP_OPC_Subtitle 0xDC98 02167 #define PTP_OPC_OriginalReleaseDate 0xDC99 02168 #define PTP_OPC_AlbumName 0xDC9A 02169 #define PTP_OPC_AlbumArtist 0xDC9B 02170 #define PTP_OPC_Mood 0xDC9C 02171 #define PTP_OPC_DRMStatus 0xDC9D 02172 #define PTP_OPC_SubDescription 0xDC9E 02173 #define PTP_OPC_IsCropped 0xDCD1 02174 #define PTP_OPC_IsColorCorrected 0xDCD2 02175 #define PTP_OPC_ImageBitDepth 0xDCD3 02176 #define PTP_OPC_Fnumber 0xDCD4 02177 #define PTP_OPC_ExposureTime 0xDCD5 02178 #define PTP_OPC_ExposureIndex 0xDCD6 02179 #define PTP_OPC_DisplayName 0xDCE0 02180 #define PTP_OPC_BodyText 0xDCE1 02181 #define PTP_OPC_Subject 0xDCE2 02182 #define PTP_OPC_Priority 0xDCE3 02183 #define PTP_OPC_GivenName 0xDD00 02184 #define PTP_OPC_MiddleNames 0xDD01 02185 #define PTP_OPC_FamilyName 0xDD02 02186 #define PTP_OPC_Prefix 0xDD03 02187 #define PTP_OPC_Suffix 0xDD04 02188 #define PTP_OPC_PhoneticGivenName 0xDD05 02189 #define PTP_OPC_PhoneticFamilyName 0xDD06 02190 #define PTP_OPC_EmailPrimary 0xDD07 02191 #define PTP_OPC_EmailPersonal1 0xDD08 02192 #define PTP_OPC_EmailPersonal2 0xDD09 02193 #define PTP_OPC_EmailBusiness1 0xDD0A 02194 #define PTP_OPC_EmailBusiness2 0xDD0B 02195 #define PTP_OPC_EmailOthers 0xDD0C 02196 #define PTP_OPC_PhoneNumberPrimary 0xDD0D 02197 #define PTP_OPC_PhoneNumberPersonal 0xDD0E 02198 #define PTP_OPC_PhoneNumberPersonal2 0xDD0F 02199 #define PTP_OPC_PhoneNumberBusiness 0xDD10 02200 #define PTP_OPC_PhoneNumberBusiness2 0xDD11 02201 #define PTP_OPC_PhoneNumberMobile 0xDD12 02202 #define PTP_OPC_PhoneNumberMobile2 0xDD13 02203 #define PTP_OPC_FaxNumberPrimary 0xDD14 02204 #define PTP_OPC_FaxNumberPersonal 0xDD15 02205 #define PTP_OPC_FaxNumberBusiness 0xDD16 02206 #define PTP_OPC_PagerNumber 0xDD17 02207 #define PTP_OPC_PhoneNumberOthers 0xDD18 02208 #define PTP_OPC_PrimaryWebAddress 0xDD19 02209 #define PTP_OPC_PersonalWebAddress 0xDD1A 02210 #define PTP_OPC_BusinessWebAddress 0xDD1B 02211 #define PTP_OPC_InstantMessengerAddress 0xDD1C 02212 #define PTP_OPC_InstantMessengerAddress2 0xDD1D 02213 #define PTP_OPC_InstantMessengerAddress3 0xDD1E 02214 #define PTP_OPC_PostalAddressPersonalFull 0xDD1F 02215 #define PTP_OPC_PostalAddressPersonalFullLine1 0xDD20 02216 #define PTP_OPC_PostalAddressPersonalFullLine2 0xDD21 02217 #define PTP_OPC_PostalAddressPersonalFullCity 0xDD22 02218 #define PTP_OPC_PostalAddressPersonalFullRegion 0xDD23 02219 #define PTP_OPC_PostalAddressPersonalFullPostalCode 0xDD24 02220 #define PTP_OPC_PostalAddressPersonalFullCountry 0xDD25 02221 #define PTP_OPC_PostalAddressBusinessFull 0xDD26 02222 #define PTP_OPC_PostalAddressBusinessLine1 0xDD27 02223 #define PTP_OPC_PostalAddressBusinessLine2 0xDD28 02224 #define PTP_OPC_PostalAddressBusinessCity 0xDD29 02225 #define PTP_OPC_PostalAddressBusinessRegion 0xDD2A 02226 #define PTP_OPC_PostalAddressBusinessPostalCode 0xDD2B 02227 #define PTP_OPC_PostalAddressBusinessCountry 0xDD2C 02228 #define PTP_OPC_PostalAddressOtherFull 0xDD2D 02229 #define PTP_OPC_PostalAddressOtherLine1 0xDD2E 02230 #define PTP_OPC_PostalAddressOtherLine2 0xDD2F 02231 #define PTP_OPC_PostalAddressOtherCity 0xDD30 02232 #define PTP_OPC_PostalAddressOtherRegion 0xDD31 02233 #define PTP_OPC_PostalAddressOtherPostalCode 0xDD32 02234 #define PTP_OPC_PostalAddressOtherCountry 0xDD33 02235 #define PTP_OPC_OrganizationName 0xDD34 02236 #define PTP_OPC_PhoneticOrganizationName 0xDD35 02237 #define PTP_OPC_Role 0xDD36 02238 #define PTP_OPC_Birthdate 0xDD37 02239 #define PTP_OPC_MessageTo 0xDD40 02240 #define PTP_OPC_MessageCC 0xDD41 02241 #define PTP_OPC_MessageBCC 0xDD42 02242 #define PTP_OPC_MessageRead 0xDD43 02243 #define PTP_OPC_MessageReceivedTime 0xDD44 02244 #define PTP_OPC_MessageSender 0xDD45 02245 #define PTP_OPC_ActivityBeginTime 0xDD50 02246 #define PTP_OPC_ActivityEndTime 0xDD51 02247 #define PTP_OPC_ActivityLocation 0xDD52 02248 #define PTP_OPC_ActivityRequiredAttendees 0xDD54 02249 #define PTP_OPC_ActivityOptionalAttendees 0xDD55 02250 #define PTP_OPC_ActivityResources 0xDD56 02251 #define PTP_OPC_ActivityAccepted 0xDD57 02252 #define PTP_OPC_Owner 0xDD5D 02253 #define PTP_OPC_Editor 0xDD5E 02254 #define PTP_OPC_Webmaster 0xDD5F 02255 #define PTP_OPC_URLSource 0xDD60 02256 #define PTP_OPC_URLDestination 0xDD61 02257 #define PTP_OPC_TimeBookmark 0xDD62 02258 #define PTP_OPC_ObjectBookmark 0xDD63 02259 #define PTP_OPC_ByteBookmark 0xDD64 02260 #define PTP_OPC_LastBuildDate 0xDD70 02261 #define PTP_OPC_TimetoLive 0xDD71 02262 #define PTP_OPC_MediaGUID 0xDD72 02263 #define PTP_OPC_TotalBitRate 0xDE91 02264 #define PTP_OPC_BitRateType 0xDE92 02265 #define PTP_OPC_SampleRate 0xDE93 02266 #define PTP_OPC_NumberOfChannels 0xDE94 02267 #define PTP_OPC_AudioBitDepth 0xDE95 02268 #define PTP_OPC_ScanDepth 0xDE97 02269 #define PTP_OPC_AudioWAVECodec 0xDE99 02270 #define PTP_OPC_AudioBitRate 0xDE9A 02271 #define PTP_OPC_VideoFourCCCodec 0xDE9B 02272 #define PTP_OPC_VideoBitRate 0xDE9C 02273 #define PTP_OPC_FramesPerThousandSeconds 0xDE9D 02274 #define PTP_OPC_KeyFrameDistance 0xDE9E 02275 #define PTP_OPC_BufferSize 0xDE9F 02276 #define PTP_OPC_EncodingQuality 0xDEA0 02277 #define PTP_OPC_EncodingProfile 0xDEA1 02278 #define PTP_OPC_BuyFlag 0xD901 02279 02280 /* WiFi Provisioning MTP Extension property codes */ 02281 #define PTP_OPC_WirelessConfigurationFile 0xB104 02282 02283 /* Device Property Form Flag */ 02284 02285 #define PTP_DPFF_None 0x00 02286 #define PTP_DPFF_Range 0x01 02287 #define PTP_DPFF_Enumeration 0x02 02288 02289 /* Object Property Codes used by MTP (first 3 are same as DPFF codes) */ 02290 #define PTP_OPFF_None 0x00 02291 #define PTP_OPFF_Range 0x01 02292 #define PTP_OPFF_Enumeration 0x02 02293 #define PTP_OPFF_DateTime 0x03 02294 #define PTP_OPFF_FixedLengthArray 0x04 02295 #define PTP_OPFF_RegularExpression 0x05 02296 #define PTP_OPFF_ByteArray 0x06 02297 #define PTP_OPFF_LongString 0xFF 02298 02299 /* Device Property GetSet type */ 02300 #define PTP_DPGS_Get 0x00 02301 #define PTP_DPGS_GetSet 0x01 02302 02303 /* Glue stuff starts here */ 02304 02305 typedef struct _PTPParams PTPParams; 02306 02307 02308 typedef uint16_t (* PTPDataGetFunc) (PTPParams* params, void*priv, 02309 unsigned long wantlen, 02310 unsigned char *data, unsigned long *gotlen); 02311 02312 typedef uint16_t (* PTPDataPutFunc) (PTPParams* params, void*priv, 02313 unsigned long sendlen, 02314 unsigned char *data); 02315 typedef struct _PTPDataHandler { 02316 PTPDataGetFunc getfunc; 02317 PTPDataPutFunc putfunc; 02318 void *priv; 02319 } PTPDataHandler; 02320 02321 /* 02322 * This functions take PTP oriented arguments and send them over an 02323 * appropriate data layer doing byteorder conversion accordingly. 02324 */ 02325 typedef uint16_t (* PTPIOSendReq) (PTPParams* params, PTPContainer* req, int dataphase); 02326 typedef uint16_t (* PTPIOSendData) (PTPParams* params, PTPContainer* ptp, 02327 uint64_t size, PTPDataHandler*getter); 02328 02329 typedef uint16_t (* PTPIOGetResp) (PTPParams* params, PTPContainer* resp); 02330 typedef uint16_t (* PTPIOGetData) (PTPParams* params, PTPContainer* ptp, 02331 PTPDataHandler *putter); 02332 typedef uint16_t (* PTPIOCancelReq) (PTPParams* params, uint32_t transaction_id); 02333 02334 /* debug functions */ 02335 typedef void (* PTPErrorFunc) (void *data, const char *format, va_list args) 02336 #if (__GNUC__ >= 3) 02337 __attribute__((__format__(printf,2,0))) 02338 #endif 02339 ; 02340 typedef void (* PTPDebugFunc) (void *data, const char *format, va_list args) 02341 #if (__GNUC__ >= 3) 02342 __attribute__((__format__(printf,2,0))) 02343 #endif 02344 ; 02345 02346 struct _PTPObject { 02347 uint32_t oid; 02348 unsigned int flags; 02349 #define PTPOBJECT_OBJECTINFO_LOADED (1<<0) 02350 #define PTPOBJECT_CANONFLAGS_LOADED (1<<1) 02351 #define PTPOBJECT_MTPPROPLIST_LOADED (1<<2) 02352 #define PTPOBJECT_DIRECTORY_LOADED (1<<3) 02353 #define PTPOBJECT_PARENTOBJECT_LOADED (1<<4) 02354 #define PTPOBJECT_STORAGEID_LOADED (1<<5) 02355 02356 PTPObjectInfo oi; 02357 uint32_t canon_flags; 02358 MTPProperties *mtpprops; 02359 unsigned int nrofmtpprops; 02360 }; 02361 typedef struct _PTPObject PTPObject; 02362 02363 /* The Device Property Cache */ 02364 struct _PTPDeviceProperty { 02365 time_t timestamp; 02366 PTPDevicePropDesc desc; 02367 PTPPropertyValue value; 02368 }; 02369 typedef struct _PTPDeviceProperty PTPDeviceProperty; 02370 02371 /* Transaction data phase description, internal flags to sendreq / transaction driver. */ 02372 #define PTP_DP_NODATA 0x0000 /* no data phase */ 02373 #define PTP_DP_SENDDATA 0x0001 /* sending data */ 02374 #define PTP_DP_GETDATA 0x0002 /* receiving data */ 02375 #define PTP_DP_DATA_MASK 0x00ff /* data phase mask */ 02376 02377 struct _PTPParams { 02378 /* device flags */ 02379 uint32_t device_flags; 02380 02381 /* data layer byteorder */ 02382 uint8_t byteorder; 02383 uint16_t maxpacketsize; 02384 02385 /* PTP IO: Custom IO functions */ 02386 PTPIOSendReq sendreq_func; 02387 PTPIOSendData senddata_func; 02388 PTPIOGetResp getresp_func; 02389 PTPIOGetData getdata_func; 02390 PTPIOGetResp event_check; 02391 PTPIOGetResp event_wait; 02392 PTPIOCancelReq cancelreq_func; 02393 02394 /* Custom error and debug function */ 02395 PTPErrorFunc error_func; 02396 PTPDebugFunc debug_func; 02397 02398 /* Data passed to above functions */ 02399 void *data; 02400 02401 /* ptp transaction ID */ 02402 uint32_t transaction_id; 02403 /* ptp session ID */ 02404 uint32_t session_id; 02405 02406 /* used for open capture */ 02407 uint32_t opencapture_transid; 02408 02409 /* PTP IO: if we have MTP style split header/data transfers */ 02410 int split_header_data; 02411 int ocs64; /* 64bit objectsize */ 02412 02413 /* PTP: internal structures used by ptp driver */ 02414 PTPObject *objects; 02415 unsigned int nrofobjects; 02416 02417 PTPDeviceInfo deviceinfo; 02418 02419 /* PTP: the current event queue */ 02420 PTPContainer *events; 02421 int nrofevents; 02422 02423 /* live view enabled */ 02424 int inliveview; 02425 02426 /* PTP: Device Property Caching */ 02427 PTPDeviceProperty *deviceproperties; 02428 unsigned int nrofdeviceproperties; 02429 02430 /* PTP: Canon specific flags list */ 02431 PTPCanon_Property *canon_props; 02432 unsigned int nrofcanon_props; 02433 int canon_viewfinder_on; 02434 int canon_event_mode; 02435 02436 /* PTP: Canon EOS event queue */ 02437 PTPCanon_changes_entry *backlogentries; 02438 unsigned int nrofbacklogentries; 02439 int eos_captureenabled; 02440 int eos_camerastatus; 02441 02442 /* PTP: Nikon specifics */ 02443 int controlmode; 02444 int event90c7works; 02445 int deletesdramfails; 02446 02447 /* PTP: Wifi profiles */ 02448 uint8_t wifi_profiles_version; 02449 uint8_t wifi_profiles_number; 02450 PTPNIKONWifiProfile *wifi_profiles; 02451 02452 /* IO: PTP/IP related data */ 02453 int cmdfd, evtfd; 02454 uint8_t cameraguid[16]; 02455 uint32_t eventpipeid; 02456 char *cameraname; 02457 02458 /* Olympus UMS wrapping related data */ 02459 PTPDeviceInfo outer_deviceinfo; 02460 char *olympus_cmd; 02461 char *olympus_reply; 02462 struct _PTPParams *outer_params; 02463 02464 #if defined(HAVE_ICONV) && defined(HAVE_LANGINFO_H) 02465 /* PTP: iconv converters */ 02466 iconv_t cd_locale_to_ucs2; 02467 iconv_t cd_ucs2_to_locale; 02468 #endif 02469 02470 /* IO: Sometimes the response packet get send in the dataphase 02471 * too. This only happens for a Samsung player now. 02472 */ 02473 uint8_t *response_packet; 02474 uint16_t response_packet_size; 02475 }; 02476 02477 /* Asynchronous event callback */ 02478 typedef void(* PTPEventCbFn) (PTPParams *params, uint16_t code, PTPContainer *event, void *user_data); 02479 02480 /* last, but not least - ptp functions */ 02481 uint16_t ptp_usb_sendreq (PTPParams* params, PTPContainer* req, int dataphase); 02482 uint16_t ptp_usb_senddata (PTPParams* params, PTPContainer* ptp, 02483 uint64_t size, PTPDataHandler *handler); 02484 uint16_t ptp_usb_getresp (PTPParams* params, PTPContainer* resp); 02485 uint16_t ptp_usb_getdata (PTPParams* params, PTPContainer* ptp, 02486 PTPDataHandler *handler); 02487 uint16_t ptp_usb_event_check (PTPParams* params, PTPContainer* event); 02488 uint16_t ptp_usb_event_wait (PTPParams* params, PTPContainer* event); 02489 uint16_t ptp_usb_event_async (PTPParams *params, PTPEventCbFn cb, void *user_data); 02490 02491 uint16_t ptp_usb_control_get_extended_event_data (PTPParams *params, char *buffer, int *size); 02492 uint16_t ptp_usb_control_device_reset_request (PTPParams *params); 02493 uint16_t ptp_usb_control_get_device_status (PTPParams *params, char *buffer, int *size); 02494 uint16_t ptp_usb_control_cancel_request (PTPParams *params, uint32_t transid); 02495 02496 02497 int ptp_ptpip_connect (PTPParams* params, const char *port); 02498 uint16_t ptp_ptpip_sendreq (PTPParams* params, PTPContainer* req, int dataphase); 02499 uint16_t ptp_ptpip_senddata (PTPParams* params, PTPContainer* ptp, 02500 uint64_t size, PTPDataHandler *handler); 02501 uint16_t ptp_ptpip_getresp (PTPParams* params, PTPContainer* resp); 02502 uint16_t ptp_ptpip_getdata (PTPParams* params, PTPContainer* ptp, 02503 PTPDataHandler *handler); 02504 uint16_t ptp_ptpip_event_wait (PTPParams* params, PTPContainer* event); 02505 uint16_t ptp_ptpip_event_check (PTPParams* params, PTPContainer* event); 02506 02507 uint16_t ptp_getdeviceinfo (PTPParams* params, PTPDeviceInfo* deviceinfo); 02508 02509 uint16_t ptp_generic_no_data (PTPParams* params, uint16_t opcode, unsigned int cnt, ...); 02510 02511 uint16_t ptp_opensession (PTPParams *params, uint32_t session); 02512 02513 uint16_t ptp_transaction_new (PTPParams* params, PTPContainer* ptp, 02514 uint16_t flags, uint64_t sendlen, 02515 PTPDataHandler *handler 02516 ); 02517 uint16_t ptp_transaction (PTPParams* params, PTPContainer* ptp, 02518 uint16_t flags, uint64_t sendlen, 02519 unsigned char **data, unsigned int *recvlen 02520 ); 02521 02530 #define ptp_closesession(params) ptp_generic_no_data(params,PTP_OC_CloseSession,0) 02531 02540 #define ptp_powerdown(params) ptp_generic_no_data(params,PTP_OC_PowerDown,0) 02541 02550 #define ptp_resetdevice(params) ptp_generic_no_data(params,PTP_OC_ResetDevice,0) 02551 02552 uint16_t ptp_getstorageids (PTPParams* params, PTPStorageIDs* storageids); 02553 uint16_t ptp_getstorageinfo (PTPParams* params, uint32_t storageid, 02554 PTPStorageInfo* storageinfo); 02564 #define ptp_formatstore(params,storageid) ptp_generic_no_data(params,PTP_OC_FormatStore,1,storageid) 02565 02566 uint16_t ptp_getobjecthandles (PTPParams* params, uint32_t storage, 02567 uint32_t objectformatcode, 02568 uint32_t associationOH, 02569 PTPObjectHandles* objecthandles); 02570 02571 02572 uint16_t ptp_getnumobjects (PTPParams* params, uint32_t storage, 02573 uint32_t objectformatcode, 02574 uint32_t associationOH, 02575 uint32_t* numobs); 02576 02577 uint16_t ptp_getobjectinfo (PTPParams *params, uint32_t handle, 02578 PTPObjectInfo* objectinfo); 02579 02580 uint16_t ptp_getobject (PTPParams *params, uint32_t handle, 02581 unsigned char** object); 02582 uint16_t ptp_getobject_tofd (PTPParams* params, uint32_t handle, int fd); 02583 uint16_t ptp_getobject_to_handler (PTPParams* params, uint32_t handle, PTPDataHandler*); 02584 uint16_t ptp_getpartialobject (PTPParams* params, uint32_t handle, uint32_t offset, 02585 uint32_t maxbytes, unsigned char** object, 02586 uint32_t *len); 02587 uint16_t ptp_getpartialobject_to_handler (PTPParams* params, uint32_t handle, uint32_t offset, 02588 uint32_t maxbytes, PTPDataHandler *handler); 02589 02590 uint16_t ptp_getthumb (PTPParams *params, uint32_t handle, 02591 unsigned char** object, unsigned int *len); 02592 02593 uint16_t ptp_deleteobject (PTPParams* params, uint32_t handle, 02594 uint32_t ofc); 02595 02596 uint16_t ptp_sendobjectinfo (PTPParams* params, uint32_t* store, 02597 uint32_t* parenthandle, uint32_t* handle, 02598 PTPObjectInfo* objectinfo); 02609 #define ptp_setobjectprotection(params,oid,newprot) ptp_generic_no_data(params,PTP_OC_SetObjectProtection,2,oid,newprot) 02610 uint16_t ptp_sendobject (PTPParams* params, unsigned char* object, 02611 uint64_t size); 02612 uint16_t ptp_sendobject_fromfd (PTPParams* params, int fd, uint64_t size); 02613 uint16_t ptp_sendobject_from_handler (PTPParams* params, PTPDataHandler*, uint64_t size); 02628 #define ptp_initiatecapture(params,storageid,ofc) ptp_generic_no_data(params,PTP_OC_InitiateCapture,2,storageid,ofc) 02629 02630 #define ptp_initiateopencapture(params,storageid,ofc) ptp_generic_no_data(params,PTP_OC_InitiateOpenCapture,2,storageid,ofc) 02631 #define ptp_terminateopencapture(params,transid) ptp_generic_no_data(params,PTP_OC_TerminateOpenCapture,1,transid) 02632 02633 uint16_t ptp_getdevicepropdesc (PTPParams* params, uint16_t propcode, 02634 PTPDevicePropDesc *devicepropertydesc); 02635 uint16_t ptp_generic_getdevicepropdesc (PTPParams *params, uint16_t propcode, 02636 PTPDevicePropDesc *dpd); 02637 uint16_t ptp_getdevicepropvalue (PTPParams* params, uint16_t propcode, 02638 PTPPropertyValue* value, uint16_t datatype); 02639 uint16_t ptp_setdevicepropvalue (PTPParams* params, uint16_t propcode, 02640 PTPPropertyValue* value, uint16_t datatype); 02641 uint16_t ptp_generic_setdevicepropvalue (PTPParams* params, uint16_t propcode, 02642 PTPPropertyValue* value, uint16_t datatype); 02643 uint16_t ptp_getfilesystemmanifest (PTPParams* params, uint32_t storage, 02644 uint32_t objectformatcode, uint32_t associationOH, 02645 unsigned char** data); 02646 02647 02648 02649 uint16_t ptp_check_event (PTPParams *params); 02650 uint16_t ptp_wait_event (PTPParams *params); 02651 uint16_t ptp_add_event (PTPParams *params, PTPContainer *evt); 02652 int ptp_get_one_event (PTPParams *params, PTPContainer *evt); 02653 uint16_t ptp_check_eos_events (PTPParams *params); 02654 int ptp_get_one_eos_event (PTPParams *params, PTPCanon_changes_entry *entry); 02655 02656 02657 /* Microsoft MTP extensions */ 02658 uint16_t ptp_mtp_getobjectpropdesc (PTPParams* params, uint16_t opc, uint16_t ofc, 02659 PTPObjectPropDesc *objectpropertydesc); 02660 uint16_t ptp_mtp_getobjectpropvalue (PTPParams* params, uint32_t oid, uint16_t opc, 02661 PTPPropertyValue *value, uint16_t datatype); 02662 uint16_t ptp_mtp_setobjectpropvalue (PTPParams* params, uint32_t oid, uint16_t opc, 02663 PTPPropertyValue *value, uint16_t datatype); 02664 uint16_t ptp_mtp_getobjectreferences (PTPParams* params, uint32_t handle, uint32_t** ohArray, uint32_t* arraylen); 02665 uint16_t ptp_mtp_setobjectreferences (PTPParams* params, uint32_t handle, uint32_t* ohArray, uint32_t arraylen); 02666 uint16_t ptp_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops); 02667 uint16_t ptp_mtp_getobjectproplist_single (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops); 02668 uint16_t ptp_mtp_sendobjectproplist (PTPParams* params, uint32_t* store, uint32_t* parenthandle, uint32_t* handle, 02669 uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops); 02670 uint16_t ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops); 02671 02672 /* Microsoft MTPZ (Zune) extensions */ 02673 uint16_t ptp_mtpz_sendwmdrmpdapprequest (PTPParams*, unsigned char *, uint32_t); 02674 #define ptp_mtpz_resethandshake(params) ptp_generic_no_data(params, PTP_OC_MTP_WMDRMPD_EndTrustedAppSession, 0) 02675 uint16_t ptp_mtpz_getwmdrmpdappresponse (PTPParams*, unsigned char **, uint32_t*); 02676 #define ptp_mtpz_wmdrmpd_enabletrustedfilesoperations(params,hash1,hash2,hash3,hash4) \ 02677 ptp_generic_no_data(params, PTP_OC_MTP_WMDRMPD_EnableTrustedFilesOperations, 4,\ 02678 hash1, hash2, hash3, hash4) 02679 02680 /* Eastman Kodak extensions */ 02681 uint16_t ptp_ek_9007 (PTPParams* params, unsigned char **serial, unsigned int *size); 02682 uint16_t ptp_ek_9009 (PTPParams* params, uint32_t*, uint32_t*); 02683 uint16_t ptp_ek_900c (PTPParams* params, unsigned char **serial, unsigned int *size); 02684 uint16_t ptp_ek_getserial (PTPParams* params, unsigned char **serial, unsigned int *size); 02685 uint16_t ptp_ek_setserial (PTPParams* params, unsigned char *serial, unsigned int size); 02686 uint16_t ptp_ek_settext (PTPParams* params, PTPEKTextParams *text); 02687 uint16_t ptp_ek_sendfileobjectinfo (PTPParams* params, uint32_t* store, 02688 uint32_t* parenthandle, uint32_t* handle, 02689 PTPObjectInfo* objectinfo); 02690 uint16_t ptp_ek_sendfileobject (PTPParams* params, unsigned char* object, 02691 uint32_t size); 02692 uint16_t ptp_ek_sendfileobject_from_handler (PTPParams* params, PTPDataHandler*, 02693 uint32_t size); 02694 02695 /* Canon PTP extensions */ 02696 #define ptp_canon_9012(params) ptp_generic_no_data(params,0x9012,0) 02697 uint16_t ptp_canon_gettreeinfo (PTPParams* params, uint32_t* out); 02698 uint16_t ptp_canon_gettreesize (PTPParams* params, PTPCanon_directtransfer_entry**, unsigned int*cnt); 02699 uint16_t ptp_canon_getpartialobjectinfo (PTPParams* params, uint32_t handle, 02700 uint32_t p2, uint32_t* size, uint32_t* rp2); 02701 02702 uint16_t ptp_canon_get_mac_address (PTPParams* params, unsigned char **mac); 02715 #define ptp_canon_startshootingmode(params) ptp_generic_no_data(params,PTP_OC_CANON_InitiateReleaseControl,0) 02716 02729 #define ptp_canon_endshootingmode(params) ptp_generic_no_data(params,PTP_OC_CANON_TerminateReleaseControl,0) 02730 02741 #define ptp_canon_viewfinderon(params) ptp_generic_no_data(params,PTP_OC_CANON_ViewfinderOn,0) 02742 02754 #define ptp_canon_viewfinderoff(params) ptp_generic_no_data(params,PTP_OC_CANON_ViewfinderOff,0) 02755 02767 #define PTP_CANON_RESET_AE 0x1 02768 #define PTP_CANON_RESET_AF 0x2 02769 #define PTP_CANON_RESET_AWB 0x4 02770 #define ptp_canon_reset_aeafawb(params,flags) ptp_generic_no_data(params,PTP_OC_CANON_DoAeAfAwb,1,flags) 02771 uint16_t ptp_canon_checkevent (PTPParams* params, 02772 PTPContainer* event, int* isevent); 02785 #define ptp_canon_focuslock(params) ptp_generic_no_data(params,PTP_OC_CANON_FocusLock,0) 02786 02798 #define ptp_canon_focusunlock(params) ptp_generic_no_data(params,PTP_OC_CANON_FocusUnlock,0) 02799 02809 #define ptp_canon_keepdeviceon(params) ptp_generic_no_data(params,PTP_OC_CANON_KeepDeviceOn,0) 02810 02820 #define ptp_canon_eos_keepdeviceon(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_KeepDeviceOn,0) 02821 02838 #define ptp_canon_initiatecaptureinmemory(params) ptp_generic_no_data(params,PTP_OC_CANON_InitiateCaptureInMemory,0) 02839 02849 #define CANON_EOS_OLC_BUTTON 0x0001 02850 #define CANON_EOS_OLC_SHUTTERSPEED 0x0002 02851 #define CANON_EOS_OLC_APERTURE 0x0004 02852 #define CANON_EOS_OLC_ISO 0x0008 02853 02854 #define ptp_canon_eos_setrequestolcinfogroup(params,igmask) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetRequestOLCInfoGroup,1,igmask) 02855 #define ptp_canon_eos_requestdevicepropvalue(params,prop) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RequestDevicePropValue,1,prop) 02856 uint16_t ptp_canon_eos_capture (PTPParams* params, uint32_t *result); 02857 uint16_t ptp_canon_eos_getevent (PTPParams* params, PTPCanon_changes_entry **entries, int *nrofentries); 02858 uint16_t ptp_canon_getpartialobject (PTPParams* params, uint32_t handle, 02859 uint32_t offset, uint32_t size, 02860 uint32_t pos, unsigned char** block, 02861 uint32_t* readnum); 02862 uint16_t ptp_canon_getviewfinderimage (PTPParams* params, unsigned char** image, 02863 uint32_t* size); 02864 uint16_t ptp_canon_getchanges (PTPParams* params, uint16_t** props, 02865 uint32_t* propnum); 02866 uint16_t ptp_canon_getobjectinfo (PTPParams* params, uint32_t store, 02867 uint32_t p2, uint32_t parenthandle, 02868 uint32_t handle, 02869 PTPCANONFolderEntry** entries, 02870 uint32_t* entnum); 02871 uint16_t ptp_canon_eos_getdeviceinfo (PTPParams* params, PTPCanonEOSDeviceInfo*di); 02882 #define ptp_canon_eos_setuilock(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetUILock,0) 02883 02893 #define ptp_canon_eos_resetuilock(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_ResetUILock,0) 02894 02904 #define ptp_canon_eos_start_viewfinder(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_InitiateViewfinder,0) 02905 02915 #define ptp_canon_eos_end_viewfinder(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_TerminateViewfinder,0) 02916 uint16_t ptp_canon_eos_get_viewfinder_image (PTPParams* params, unsigned char **data, unsigned int *size); 02917 uint16_t ptp_canon_eos_get_viewfinder_image_handler (PTPParams* params, PTPDataHandler*); 02918 uint16_t ptp_canon_get_objecthandle_by_name (PTPParams* params, char* name, uint32_t* objectid); 02919 uint16_t ptp_canon_get_directory (PTPParams* params, PTPObjectHandles *handles, PTPObjectInfo **oinfos, uint32_t **flags); 02930 #define ptp_canon_setobjectarchive(params,oid,flags) ptp_generic_no_data(params,PTP_OC_CANON_SetObjectArchive,2,oid,flags) 02931 uint16_t ptp_canon_get_customize_data (PTPParams* params, uint32_t themenr, 02932 unsigned char **data, unsigned int *size); 02933 uint16_t ptp_canon_getpairinginfo (PTPParams* params, uint32_t nr, unsigned char**, unsigned int*); 02934 02935 uint16_t ptp_canon_eos_getstorageids (PTPParams* params, PTPStorageIDs* storageids); 02936 uint16_t ptp_canon_eos_getstorageinfo (PTPParams* params, uint32_t p1, unsigned char**, unsigned int*); 02937 uint16_t ptp_canon_eos_getpartialobject (PTPParams* params, uint32_t oid, uint32_t off, uint32_t xsize, unsigned char**data); 02938 uint16_t ptp_canon_eos_getobjectinfoex (PTPParams* params, uint32_t storageid, uint32_t objectid, uint32_t unk, 02939 PTPCANONFolderEntry **entries, unsigned int *nrofentries); 02940 uint16_t ptp_canon_eos_setdevicepropvalueex (PTPParams* params, unsigned char* data, unsigned int size); 02941 #define ptp_canon_eos_setremotemode(params,p1) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetRemoteMode,1,p1) 02942 #define ptp_canon_eos_seteventmode(params,p1) ptp_generic_no_data(params,PTP_OC_CANON_EOS_SetEventMode,1,p1) 02943 02954 #define ptp_canon_eos_transfercomplete(params,oid) ptp_generic_no_data(params,PTP_OC_CANON_EOS_TransferComplete,1,oid) 02955 /* inHDD = %d, inLength =%d, inReset = %d */ 02956 #define ptp_canon_eos_pchddcapacity(params,p1,p2,p3) ptp_generic_no_data(params,PTP_OC_CANON_EOS_PCHDDCapacity,3,p1,p2,p3) 02957 uint16_t ptp_canon_eos_bulbstart (PTPParams* params); 02958 uint16_t ptp_canon_eos_bulbend (PTPParams* params); 02959 uint16_t ptp_canon_eos_getdevicepropdesc (PTPParams* params, uint16_t propcode, 02960 PTPDevicePropDesc *devicepropertydesc); 02961 uint16_t ptp_canon_eos_setdevicepropvalue (PTPParams* params, uint16_t propcode, 02962 PTPPropertyValue* value, uint16_t datatype); 02963 uint16_t ptp_nikon_get_vendorpropcodes (PTPParams* params, uint16_t **props, unsigned int *size); 02964 uint16_t ptp_nikon_curve_download (PTPParams* params, 02965 unsigned char **data, unsigned int *size); 02966 uint16_t ptp_nikon_getptpipinfo (PTPParams* params, unsigned char **data, unsigned int *size); 02967 uint16_t ptp_nikon_getwifiprofilelist (PTPParams* params); 02968 uint16_t ptp_nikon_writewifiprofile (PTPParams* params, PTPNIKONWifiProfile* profile); 02969 02970 uint16_t ptp_sony_sdioconnect (PTPParams* params, uint32_t p1, uint32_t p2, uint32_t p3); 02971 uint16_t ptp_sony_get_vendorpropcodes (PTPParams* params, uint16_t **props, unsigned int *size); 02972 uint16_t ptp_sony_getdevicepropdesc (PTPParams* params, uint16_t propcode, 02973 PTPDevicePropDesc *devicepropertydesc); 02974 uint16_t ptp_sony_getalldevicepropdesc (PTPParams* params); 02975 uint16_t ptp_sony_setdevicecontrolvaluea (PTPParams* params, uint16_t propcode, 02976 PTPPropertyValue* value, uint16_t datatype); 02977 uint16_t ptp_sony_setdevicecontrolvalueb (PTPParams* params, uint16_t propcode, 02978 PTPPropertyValue* value, uint16_t datatype); 02979 uint16_t ptp_sony_9280 (PTPParams* params, uint32_t additional, uint32_t data1, uint32_t data2, uint32_t data3, uint32_t data4, uint8_t x, uint8_t y); 02980 uint16_t ptp_sony_9281 (PTPParams* params, uint32_t param1); 02992 #define ptp_nikon_deletewifiprofile(params,profilenr) ptp_generic_no_data(params,PTP_OC_NIKON_DeleteProfile,1,profilenr) 02993 03004 #define ptp_nikon_setcontrolmode(params,mode) ptp_generic_no_data(params,PTP_OC_NIKON_SetControlMode,1,mode) 03005 03017 #define ptp_nikon_terminatecapture(params,p1,p2) ptp_generic_no_data(params,PTP_OC_NIKON_TerminateCapture,2,p1,p2) 03018 03028 #define ptp_nikon_afdrive(params) ptp_generic_no_data(params,PTP_OC_NIKON_AfDrive,0) 03029 03041 #define ptp_nikon_changeafarea(params,x,y) ptp_generic_no_data(params,PTP_OC_NIKON_ChangeAfArea,2,x,y) 03042 03052 #define ptp_nikon_startmovie(params) ptp_generic_no_data(params,PTP_OC_NIKON_StartMovieRecInCard,0) 03053 03063 #define ptp_nikon_stopmovie(params) ptp_generic_no_data(params,PTP_OC_NIKON_EndMovieRec,0) 03064 03074 #define ptp_canon_eos_afdrive(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_DoAf,0) 03075 03085 #define ptp_canon_eos_afcancel(params) ptp_generic_no_data(params,PTP_OC_CANON_EOS_AfCancel,0) 03086 03097 #define ptp_canon_eos_zoom(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_Zoom,1,x) 03098 #define ptp_canon_eos_zoomposition(params,x,y) ptp_generic_no_data(params,PTP_OC_CANON_EOS_ZoomPosition,2,x,y) 03099 03100 #define ptp_canon_eos_remotereleaseon(params,x,y) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RemoteReleaseOn,2,x,y) 03101 #define ptp_canon_eos_remotereleaseoff(params,x) ptp_generic_no_data(params,PTP_OC_CANON_EOS_RemoteReleaseOff,1,x) 03102 03114 #define ptp_nikon_mfdrive(params,flag,amount) ptp_generic_no_data(params,PTP_OC_NIKON_MfDrive,2,flag,amount) 03115 03127 #define ptp_canon_eos_drivelens(params,amount) ptp_generic_no_data(params,PTP_OC_CANON_EOS_DriveLens,1,amount) 03128 03139 #define ptp_nikon_capture(params,x) ptp_generic_no_data(params,PTP_OC_NIKON_Capture,1,x) 03140 03155 #define ptp_nikon_capture2(params,af,target) ptp_generic_no_data(params,PTP_OC_NIKON_InitiateCaptureRecInMedia,2,af?0xfffffffe:0xffffffff,target) 03156 03166 #define ptp_nikon_capture_sdram(params) ptp_generic_no_data(params,PTP_OC_NIKON_AfCaptureSDRAM,0) 03167 03178 #define ptp_nikon_delete_sdram_image(params,oid) ptp_generic_no_data(params,PTP_OC_NIKON_DelImageSDRAM,1,oid) 03179 03189 #define ptp_nikon_start_liveview(params) ptp_generic_no_data(params,PTP_OC_NIKON_StartLiveView,0) 03190 uint16_t ptp_nikon_get_liveview_image (PTPParams* params, unsigned char**,unsigned int*); 03191 uint16_t ptp_nikon_get_preview_image (PTPParams* params, unsigned char**, unsigned int*, uint32_t*); 03202 #define ptp_nikon_end_liveview(params) ptp_generic_no_data(params,PTP_OC_NIKON_EndLiveView,0) 03203 uint16_t ptp_nikon_check_event (PTPParams* params, PTPContainer **evt, unsigned int *evtcnt); 03204 uint16_t ptp_nikon_getfileinfoinblock (PTPParams* params, uint32_t p1, uint32_t p2, uint32_t p3, 03205 unsigned char **data, unsigned int *size); 03217 #define ptp_nikon_device_ready(params) ptp_generic_no_data (params, PTP_OC_NIKON_DeviceReady, 0) 03218 uint16_t ptp_mtp_getobjectpropssupported (PTPParams* params, uint16_t ofc, uint32_t *propnum, uint16_t **props); 03219 03220 03221 /* Android MTP Extensions */ 03222 uint16_t ptp_android_getpartialobject64 (PTPParams* params, uint32_t handle, uint64_t offset, 03223 uint32_t maxbytes, unsigned char** object, 03224 uint32_t *len); 03225 #define ptp_android_begineditobject(params,handle) ptp_generic_no_data (params, PTP_OC_ANDROID_BeginEditObject, 1, handle) 03226 #define ptp_android_truncate(params,handle,offset) ptp_generic_no_data (params, PTP_OC_ANDROID_TruncateObject, 3, handle, (offset & 0xFFFFFFFF), (offset >> 32)) 03227 uint16_t ptp_android_sendpartialobject (PTPParams *params, uint32_t handle, 03228 uint64_t offset, unsigned char *object, uint32_t len); 03229 #define ptp_android_endeditobject(params,handle) ptp_generic_no_data (params, PTP_OC_ANDROID_EndEditObject, 1, handle) 03230 03231 uint16_t ptp_olympus_getdeviceinfo (PTPParams*, PTPDeviceInfo*); 03232 #define ptp_olympus_setcameracontrolmode(params,p1) ptp_generic_no_data (params, PTP_OC_OLYMPUS_SetCameraControlMode, 1, p1) 03233 uint16_t ptp_olympus_opensession (PTPParams*, unsigned char**, unsigned int *); 03234 #define ptp_olympus_capture(params,p1) ptp_generic_no_data (params, PTP_OC_OLYMPUS_Capture, 1, p1) 03235 uint16_t ptp_olympus_getcameraid (PTPParams*, unsigned char**, unsigned int *); 03236 03237 /* Non PTP protocol functions */ 03238 static inline int 03239 ptp_operation_issupported(PTPParams* params, uint16_t operation) 03240 { 03241 unsigned int i=0; 03242 03243 for (;i<params->deviceinfo.OperationsSupported_len;i++) { 03244 if (params->deviceinfo.OperationsSupported[i]==operation) 03245 return 1; 03246 } 03247 return 0; 03248 } 03249 03250 int ptp_event_issupported (PTPParams* params, uint16_t event); 03251 int ptp_property_issupported (PTPParams* params, uint16_t property); 03252 03253 void ptp_free_params (PTPParams *params); 03254 void ptp_free_objectpropdesc (PTPObjectPropDesc*); 03255 void ptp_free_devicepropdesc (PTPDevicePropDesc*); 03256 void ptp_free_devicepropvalue (uint16_t, PTPPropertyValue*); 03257 void ptp_free_objectinfo (PTPObjectInfo *oi); 03258 void ptp_free_object (PTPObject *oi); 03259 03260 const char *ptp_strerror (uint16_t ret, uint16_t vendor); 03261 void ptp_debug (PTPParams *params, const char *format, ...); 03262 void ptp_error (PTPParams *params, const char *format, ...); 03263 03264 03265 const char* ptp_get_property_description(PTPParams* params, uint16_t dpc); 03266 03267 const char* ptp_get_opcode_name(PTPParams* params, uint16_t opcode); 03268 03269 int 03270 ptp_render_property_value(PTPParams* params, uint16_t dpc, 03271 PTPDevicePropDesc *dpd, unsigned int length, char *out); 03272 int ptp_render_ofc(PTPParams* params, uint16_t ofc, int spaceleft, char *txt); 03273 int ptp_render_mtp_propname(uint16_t propid, int spaceleft, char *txt); 03274 MTPProperties *ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops); 03275 void ptp_destroy_object_prop(MTPProperties *prop); 03276 void ptp_destroy_object_prop_list(MTPProperties *props, int nrofprops); 03277 MTPProperties *ptp_find_object_prop_in_cache(PTPParams *params, uint32_t const handle, uint32_t const attribute_id); 03278 uint16_t ptp_remove_object_from_cache(PTPParams *params, uint32_t handle); 03279 uint16_t ptp_add_object_to_cache(PTPParams *params, uint32_t handle); 03280 uint16_t ptp_object_want (PTPParams *, uint32_t handle, unsigned int want, PTPObject**retob); 03281 void ptp_objects_sort (PTPParams *); 03282 uint16_t ptp_object_find (PTPParams *params, uint32_t handle, PTPObject **retob); 03283 uint16_t ptp_object_find_or_insert (PTPParams *params, uint32_t handle, PTPObject **retob); 03284 /* ptpip.c */ 03285 void ptp_nikon_getptpipguid (unsigned char* guid); 03286 03287 /* CHDK specifics */ 03288 #define PTP_OC_CHDK 0x9999 03289 typedef struct tagptp_chdk_videosettings { 03290 long live_image_buffer_width; 03291 long live_image_width; 03292 long live_image_height; 03293 long bitmap_buffer_width; 03294 long bitmap_width; 03295 long bitmap_height; 03296 unsigned palette[16]; 03297 } ptp_chdk_videosettings; 03298 03299 /* Nafraf: Test this!!!*/ 03300 #define ptp_chdk_switch_mode(params,mode) ptp_generic_no_data(params,PTP_OC_CHDK,2,PTP_CHDK_SwitchMode,mode) 03301 03302 /* include CHDK ptp protocol definitions from a CHDK source tree */ 03303 #include "chdk_ptp.h" 03304 #if (PTP_CHDK_VERSION_MAJOR < 2 || (PTP_CHDK_VERSION_MAJOR == 2 && PTP_CHDK_VERSION_MINOR < 5)) 03305 #error your chdk headers are too old, unset CHDK_SRC_DIR in config.mk 03306 #endif 03307 #include "chdk_live_view.h" 03308 03309 /* the following happens to match what is used in CHDK, but is not part of the protocol */ 03310 typedef struct { 03311 unsigned size; 03312 unsigned script_id; /* id of script message is to/from */ 03313 unsigned type; 03314 unsigned subtype; 03315 char data[]; 03316 } ptp_chdk_script_msg; 03317 03318 /* 03319 chunk for remote capture 03320 */ 03321 typedef struct { 03322 uint32_t size; /* length of data */ 03323 int last; /* is it the last chunk? */ 03324 uint32_t offset; /* offset within file, or -1 */ 03325 unsigned char *data; /* data, must be free'd by caller when done */ 03326 } ptp_chdk_rc_chunk; 03327 03328 03329 uint16_t ptp_chdk_get_memory(PTPParams* params, int start, int num, unsigned char **); 03330 uint16_t ptp_chdk_set_memory_long(PTPParams* params, int addr, int val); 03331 int ptp_chdk_upload(PTPParams* params, char *local_fn, char *remote_fn); 03332 uint16_t ptp_chdk_download(PTPParams* params, char *remote_fn, PTPDataHandler *handler); 03333 03334 /* remote capture */ 03335 uint16_t ptp_chdk_rcisready(PTPParams* params, int *isready,int *imgnum); 03336 uint16_t ptp_chdk_rcgetchunk(PTPParams* params,int fmt, ptp_chdk_rc_chunk *chunk); 03337 03338 uint16_t ptp_chdk_exec_lua(PTPParams* params, char *script, int flags, int *script_id,int *status); 03339 uint16_t ptp_chdk_get_version(PTPParams* params, int *major, int *minor); 03340 uint16_t ptp_chdk_get_script_support(PTPParams* params, unsigned *status); 03341 uint16_t ptp_chdk_get_script_status(PTPParams* params, unsigned *status); 03342 uint16_t ptp_chdk_write_script_msg(PTPParams* params, char *data, unsigned size, int target_script_id, int *status); 03343 uint16_t ptp_chdk_read_script_msg(PTPParams* params, ptp_chdk_script_msg **msg); 03344 uint16_t ptp_chdk_get_live_data(PTPParams* params, unsigned flags, unsigned char **data, unsigned int *data_size); 03345 uint16_t ptp_chdk_call_function(PTPParams* params, int *args, int size, int *ret); 03346 03347 /*uint16_t ptp_chdk_get_script_output(PTPParams* params, char **output ); */ 03348 /*uint16_t ptp_chdk_get_video_settings(PTPParams* params, ptp_chdk_videosettings* vsettings);*/ 03349 03350 #ifdef __cplusplus 03351 } 03352 #endif /* __cplusplus */ 03353 03354 #endif /* __PTP_H__ */