Skip to content
This repository has been archived by the owner on Jul 18, 2024. It is now read-only.

Commit

Permalink
Initial libgphoto2 implementation
Browse files Browse the repository at this point in the history
needs documentation for building and positioning dependencies and preparing them for distribution
  • Loading branch information
bangnoise committed Mar 24, 2020
1 parent 8b147b5 commit 8b63b4a
Show file tree
Hide file tree
Showing 14 changed files with 1,067 additions and 789 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
xcuserdata
libturbojpeg.0.dylib
libraries
266 changes: 211 additions & 55 deletions Camera Live.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Camera Live/Base.lproj/MainMenu.xib
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="15505" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="15705" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES">
<dependencies>
<deployment identifier="macosx"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="15505"/>
<plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="15705"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
Expand Down
6 changes: 3 additions & 3 deletions Camera Live/SyPAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

#import "SyPAppDelegate.h"
#import "SyPCamera.h"
#import "SyPCanonDSLR.h"
#import "SyPGPhotoCamera.h"
#import "SyPImageBuffer.h"
#import <OpenGL/CGLMacro.h>
#import <objc/runtime.h>
Expand Down Expand Up @@ -91,13 +91,13 @@ - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
usingBlock:^(NSNotification *note) {
[self removeCamera:[note object]];
}];
[SyPCanonDSLR startDriver];
[SyPGPhotoCamera startDriver];
}

- (void)applicationWillTerminate:(NSNotification *)notification
{
[self.camerasArrayController removeObjects:[self.camerasArrayController arrangedObjects]];
[SyPCanonDSLR endDriver];
[SyPGPhotoCamera endDriver];
}

- (NSArray *)selectedCameras
Expand Down
55 changes: 0 additions & 55 deletions Camera Live/SyPCanonDSLR.h

This file was deleted.

Loading

0 comments on commit 8b63b4a

Please sign in to comment.