Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add header search path
  • Loading branch information
mchudy committed Jan 14, 2025
commit 09241f414a1e6e16384d5b0663d748e283e27755
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ let package = Package(
],
cSettings: [
.headerSearchPath("include/camera_avfoundation")
.headerSearchPath("include/camera_avfoundation/Protocols")
]
)
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#import "CameraProperties.h"
#import "FLTCamMediaSettingsAVWrapper.h"
#import "messages.g.h"
#import "Protocols/FLTCaptureDeviceControlling.h"
#import "FLTCaptureDeviceControlling.h"

NS_ASSUME_NONNULL_BEGIN

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@import AVFoundation;
@import Foundation;

#import "Protocols/FLTCaptureDeviceControlling.h"
#import "FLTCaptureDeviceControlling.h"

NS_ASSUME_NONNULL_BEGIN

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
// found in the LICENSE file.

#import "FLTCam.h"
#import "FLTCaptureDeviceControlling.h"
#import "FLTDeviceOrientationProviding.h"
#import "FLTSavePhotoDelegate.h"
#import "Protocols/FLTCaptureDeviceControlling.h"

/// Determines the video dimensions (width and height) for a given capture device format.
/// Used in tests to mock CMVideoFormatDescriptionGetDimensions.
Expand Down