summaryrefslogtreecommitdiff
path: root/camlibs
Commit message (Collapse)AuthorAgeFilesLines
* allow trigger capture for panasonicHEADmasterMarcus Meissner2023-04-241-0/+5
|
* synthesize a capturecomplete event for panasonic cameras, as they dont send ↵Marcus Meissner2023-04-241-0/+5
| | | | on on their own
* added Ricoh GR IIIxMarcus Meissner2023-04-031-0/+5
| | | | https://github.com/libmtp/libmtp/issues/148
* use uint32_t instead of unsigned intMarcus Meissner2023-03-131-1/+1
| | | | | | imported from chromium https://source.chromium.org/chromiumos/chromiumos/codesearch/+/main:src/third_party/chromiumos-overlay/media-libs/libmtp/files/libmtp-1.1.20-01_build_fixes.patch
* added sony ilce-1 , https://github.com/gphoto/libgphoto2/issues/892Marcus Meissner2023-03-132-0/+242
|
* mark when the put function already set the value in the camera,Marcus Meissner2023-03-061-23/+40
| | | | | | to avoid doublesetting https://github.com/gphoto/libgphoto2/issues/896
* remove incorrect superflous exit code. is handled belowMarcus Meissner2023-03-061-3/+0
|
* break out of the setter loop if we reached the correct stateMarcus Meissner2023-03-061-10/+13
| | | | fixes https://github.com/gphoto/libgphoto2/issues/896
* added some apparent missijng include unistd.h to make it build for ↵Marcus Meissner2023-02-148-0/+8
| | | | mingw/llvm . fixes https://github.com/gphoto/libgphoto2/issues/890
* fixed one superflous argument to debug (Coverity)Marcus Meissner2023-02-141-1/+1
|
* aded z30 dsateMarcus Meissner2023-02-071-0/+4591
|
* added x-t5Marcus Meissner2023-02-021-0/+2
|
* handle time_t as long (Coverity)Marcus Meissner2023-02-011-2/+2
|
* switch debug print of a time_t based variable to long int (Coverity)Marcus Meissner2023-02-011-2/+2
|
* avoid uninitialized variable when setting non standard values (Coverity)Marcus Meissner2023-02-011-2/+4
|
* use unsigned long for time_t usage (Coverity)Marcus Meissner2023-02-011-1/+1
|
* make it clear we only use 32bit of time_t (Coverity)Marcus Meissner2023-02-011-1/+1
|
* fixed ptp_debug parameters (Coverity)Marcus Meissner2023-02-011-1/+1
|
* added a missing return code check for ptp_fuji_getdeviceinfo (Coverity)Marcus Meissner2023-02-011-0/+2
|
* fix WSACleanup conditionMarcus Meissner2023-01-181-1/+1
| | | | fixes https://github.com/gphoto/libgphoto2/issues/885
* canon eos: if half press succeeds, and full press fails, roll back ↵Marcus Meissner2023-01-171-2/+12
| | | | | | | half-press again might help https://github.com/gphoto/gphoto2/issues/538
* Create canon-eos-discovery.md (#884)Laurent Clévy2023-01-081-0/+74
| | | allows to document discovered Canon PTP commands using Python syntax or not. Suggested format is Markdown instead of plain text.
* Add properties to control Sony focus assist magnification, useful for ↵Mark Watson2022-12-232-0/+38
| | | | | | | | | | | | | | | | | remotely dialing in focus using live view / preview. (#883) The following toggle actions control the focus assist magnification: - focusmagnify : enter focus magnification mode, toggles through magnification levels - focusmagnifyexit : exit focus magnification mode, back to normal live view / preview image - focusmagnifyup : move magnification zone up - focusmagnifydown : move magnification zone down - focusmagnifyleft : move magnification zone left - focusmagnifyright : move magnification zone right These are toggle actions and may need to be set twice to be noticed by the camera: gphoto2 --set-config=focusmagnify=1 --set-config=focusmagnify=0 gphoto2 --set-config=focusmagnifyexit=1 --set-config=focusmagnifyexit=0
* name it R6m2Marcus Meissner2022-12-211-1/+1
|
* added canon eos r6 2Marcus Meissner2022-12-212-0/+1015
|
* added sigma fp lMarcus Meissner2022-12-202-0/+117
| | | | https://github.com/gphoto/libgphoto2/issues/882
* if we fail to spot a direction, use single stepping instead.Marcus Meissner2022-12-191-5/+18
| | | | https://github.com/gphoto/libgphoto2/issues/694
* added some more z6-2 debugMarcus Meissner2022-12-191-0/+156
|
* serial: Add check after malloc allocation (#878)Li kunyu2022-12-151-0/+6
|
* nikon z6 2 workaround, it reports a devicepropchanged 0x501c event, but the ↵Marcus Meissner2022-12-061-2/+13
| | | | property is not avauilable
* Fix SHUTTER_SPEED_1_6_SEC (#877)Daniel2022-12-051-1/+1
| | | Tested on my 1300D
* added gopro hero11 blackMarcus Meissner2022-11-301-0/+2
|
* sony manual focus is actually INT16, not UINT16. ↵Marcus Meissner2022-11-281-17/+17
| | | | https://github.com/gphoto/libgphoto2/issues/793
* convert a malloc(w*h) to calloc(w,h) to avoid overflow issues, found by codeqlMarcus Meissner2022-11-211-1/+1
|
* convert malloc (overflowing mult) to calloc(x,y) that handles this internallyMarcus Meissner2022-11-211-2/+2
|
* fixed missing arguments in 2 debug functions, spotted by codeqlMarcus Meissner2022-11-211-2/+2
|
* try to fix codeql integer expansion warningMarcus Meissner2022-11-211-2/+2
|
* fix some CodeQL warningsMarcus Meissner2022-11-211-6/+6
|
* Add 2 new settings metadata for Sony A7R3 (#872)Mark Watson2022-11-193-3/+30
| | | | | | | | | * Add support for Sony 'Live Display: Setting Effect ON/OFF'. This setting toggles exposure preview on the live view / preview image. * Add support for Sony A7R3/A7R3A 'Focus Area' settings. Co-authored-by: Mark Watson <watsonmw@gmai.com>
* try to fix 4 codeql warningsMarcus Meissner2022-11-161-1/+1
|
* Define main function as "int main(void)" (with void)Hans Ulrich Niedermann2022-11-111-1/+1
|
* Add support for Fujifilm X-H2 (#861)Gergely Erdélyi2022-11-081-0/+1
| | | | Preview and image capture work in both USB TETHER SHOOTING AUTO & FIXED modes.
* docupen: Remove redundant semicolonsLi kunyu2022-11-071-5/+5
| | | | Signed-off-by: Li kunyu <kunyu@nfschina.com>
* free storedevents after useMarcus Meissner2022-10-121-0/+3
|
* Fix pointer issues in local PTP event queue in Nikon capture (#849)Omri Sarig2022-10-113-6/+6
| | | | | https://github.com/gphoto/libgphoto2/issues/846 Co-authored-by: Omri Sarig <omri.sarig@prevas.dk>
* use a local PTP event queue in nikon capture to avoid checking interrupts on ↵Marcus Meissner2022-10-103-11/+53
| | | | | | | | any event, which causes delays. https://github.com/gphoto/libgphoto2/issues/846
* filter out more commands on the Nikon S1. ↵Marcus Meissner2022-10-031-4/+12
| | | | https://github.com/gphoto/libgphoto2/issues/845
* Optimize some code statements (#844)Li kunyu2022-09-293-3/+3
| | | | | | | | | | | | | | | * ptp2/config: remove a semicolon Signed-off-by: Li kunyu <kunyu@nfschina.com> * docupen: remove a semicolon Signed-off-by: Li kunyu <kunyu@nfschina.com> * ax203: remove a semicolon Signed-off-by: Li kunyu <kunyu@nfschina.com> Signed-off-by: Li kunyu <kunyu@nfschina.com>
* some Canons have an enum from 0-3 for the battery level instead of going ↵Marcus Meissner2022-09-281-0/+15
| | | | | | from 0 to 100. Detect and handle this case. (fixes https://github.com/gphoto/gphoto2/issues/541)
* use the correct error handling method (C_PTP instead of CR)Marcus Meissner2022-09-271-2/+4
| | | | | | restore timeout before returning fixes https://github.com/gphoto/libgphoto2/issues/835