AVCaptureConnection Class Reference
| Inherits from | |
| Conforms to | |
| Framework | /System/Library/Frameworks/AVFoundation.framework |
| Availability | Available in OS X v10.7 and later. |
| Companion guide | |
| Declared in | AVCaptureSession.h |
Overview
An AVCaptureConnection object represents a connection between capture input and capture output objects associated with a capture session.
Capture inputs (instances of AVCaptureInput) have one or more input ports (instances of AVCaptureInputPort). Capture outputs (instances of AVCaptureOutput) can accept data from one or more sources (for example, an AVCaptureMovieFileOutput object accepts both video and audio data).
You can only add an AVCaptureConnection instance to a session using addConnection: if canAddConnection: returns YES. When using addInput: or addOutput:, connections are formed automatically between all compatible inputs and outputs. You only need to add connections manually when adding an input or output with no connections. You can also use connections to enable or disable the flow of data from a given input or to a given output.
Tasks
Creating a Connection
-
+ connectionWithInputPorts:output: -
– initWithInputPorts:output: -
+ connectionWithInputPort:videoPreviewLayer: -
– initWithInputPort:videoPreviewLayer:
Configuration
-
enabledproperty -
activeproperty -
inputPortsproperty -
outputproperty -
videoPreviewLayerproperty -
audioChannelsproperty
Managing Video Configuration
-
videoOrientationproperty -
supportsVideoOrientationproperty -
videoFieldModeproperty -
supportsVideoFieldModeproperty -
videoMinFrameDurationproperty -
supportsVideoMinFrameDurationproperty
Managing the Video Mirroring Settings
-
automaticallyAdjustsVideoMirroringproperty -
supportsVideoMirroringproperty -
videoMirroredproperty
Properties
active
Indicates whether the connection is active. (read-only)
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.haudioChannels
An array of AVCaptureAudioChannel objects. (read-only)
Discussion
This property is only applicable to connections involving audio.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hautomaticallyAdjustsVideoMirroring
A Boolean value that indicates whether the value of videoMirrored can change based on configuration of the session.
Discussion
For some session configurations, video data flowing through the connection will be mirrored by default. When the value of this property is YES, the value of videoMirrored may change depending on the configuration of the session, for example after switching to a different capture device input.
The default value is YES.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.henabled
Indicates whether the connection is enabled.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hinputPorts
The connection’s input ports. (read-only)
Discussion
Input ports are instances of AVCaptureInputPort.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.houtput
The connection’s output port. (read-only)
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hsupportsVideoFieldMode
A Boolean value that indicates whether the connection supports setting the videoFieldMode property. (read-only)
Discussion
This property is only applicable to connections involving video.
Availability
- Available in OS X v10.7 and later.
See Also
Declared In
AVCaptureSession.hsupportsVideoMinFrameDuration
A Boolean value that indicates whether the connection supports setting the videoMinFrameDuration property. (read-only)
Discussion
This property is only applicable to connections involving video.
Availability
- Available in OS X v10.7 and later.
See Also
Declared In
AVCaptureSession.hsupportsVideoMirroring
A Boolean value that indicates whether the connection supports video mirroring. (read-only)
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hsupportsVideoOrientation
A Boolean value that indicates whether the connection supports changing the orientation of the video. (read-only)
Availability
- Available in OS X v10.7 and later.
See Also
Declared In
AVCaptureSession.hvideoFieldMode
An indicator of how interlaced video flowing through the connection should be treated
Discussion
This property is only applicable to connections involving video.
You can only set this value if supportsVideoFieldMode is YES.
Availability
- Available in OS X v10.7 and later.
See Also
Declared In
AVCaptureSession.hvideoMinFrameDuration
The minimum time interval between which the receiver should output consecutive video frames.
Discussion
The value of this property specifies the minimum duration of each video frame output by the connection, placing a lower bound on the amount of time that should separate consecutive frames. The value is equivalent to the reciprocal of the maximum frame rate.
A value of kCMTimeZero or kCMTimeInvalid indicates an unlimited maximum frame rate.
The default value is kCMTimeInvalid.
You can only set this value if supportsVideoMinFrameDuration is YES.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hvideoMirrored
A Boolean value that indicates whether the video flowing through the connection should be mirrored about its vertical axis..
Discussion
This property is only applicable to connections involving video.
if the value of supportsVideoMirroring is YES, you can set videoMirrored to YES to flip the video about its vertical axis and produce a mirror-image effect.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hvideoOrientation
The orientation of the video.
Discussion
This property is only applicable to connections involving video.
If the value of supportsVideoOrientation is YES, you can set videoOrientation to rotate the video buffers being consumed by the connection’s output. Setting videoOrientation does not necessarily result in a physical rotation of video buffers. For example, a video connection to an AVCaptureMovieFileOutput object handles orientation using a Quicktime track matrix; using an AVCaptureStillImageOutput object, orientation is handled using Exif tags.
Availability
- Available in OS X v10.7 and later.
See Also
Declared In
AVCaptureSession.hvideoPreviewLayer
The video preview layer associated with the connection. (read-only)
Discussion
This property is the set if you initialized the connection using initWithInputPort:videoPreviewLayer: or connectionWithInputPort:videoPreviewLayer:.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hClass Methods
connectionWithInputPort:videoPreviewLayer:
Returns a capture connection describing a connection between the specified input port and the specified video preview layer.
Parameters
- port
An
AVCaptureInputPortobject associated with anAVCaptureInputobject.- layer
An
AVCaptureVideoPreviewLayerobject.
Return Value
A capture connection describing a connection between the port and layer.
Discussion
You can add the connection returned by this method to an AVCaptureSession instance using addConnection:.
When using addInput:: or addOutput:, connections are automatically formed between all compatible inputs and outputs. You do not need to manually create and add connections to the session unless you use the primitive addInputWithNoConnections: or addOutputWithNoConnections: methods.
Availability
- Available in OS X v10.7 and later.
See Also
Declared In
AVCaptureSession.hconnectionWithInputPorts:output:
Returns a capture connection describing a connection between the specified input ports and the specified output.
Parameters
- ports
An array of
AVCaptureInputPortobjects associated withAVCaptureInputobjects.- output
An
AVCaptureOutputobject.
Return Value
A capture connection describing a connection between inputPorts and the output.
Discussion
You can add the connection returned by this method to an AVCaptureSession instance using addConnection:.
When using addInput:: or addOutput:, connections are automatically formed between all compatible inputs and outputs. You do not need to manually create and add connections to the session unless you use the primitive addInputWithNoConnections: or addOutputWithNoConnections: methods.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hInstance Methods
initWithInputPort:videoPreviewLayer:
Initializes a capture connection to describe a connection between the specified input port and the specified video preview layer.
Parameters
- port
An
AVCaptureInputPortobject associated with anAVCaptureInputobject.- layer
An
AVCaptureVideoPreviewLayerobject.
Return Value
A capture connection describing a connection between the port and layer.
Discussion
You can add the connection returned by this method to an AVCaptureSession instance using addConnection:.
When using addInput:: or addOutput:, connections are automatically formed between all compatible inputs and outputs. You do not need to manually create and add connections to the session unless you use the primitive addInputWithNoConnections: or addOutputWithNoConnections: methods.
Availability
- Available in OS X v10.7 and later.
See Also
Declared In
AVCaptureSession.hinitWithInputPorts:output:
Initializes a capture connection to describe a connection between the specified input ports and the specified output.
Parameters
- ports
An array of
AVCaptureInputPortobjects associated withAVCaptureInputobjects.- output
An
AVCaptureOutputobject.
Return Value
A capture connection initialized to describe a connection between inputPorts and the output.
Discussion
You can add the connection returned by this method to an AVCaptureSession instance using addConnection:.
When using addInput:: or addOutput:, connections are automatically formed between all compatible inputs and outputs. You do not need to manually create and add connections to the session unless you use the primitive addInputWithNoConnections: or addOutputWithNoConnections: methods.
Availability
- Available in OS X v10.7 and later.
Declared In
AVCaptureSession.hConstants
AVCaptureVideoOrientation
Constants indicating video orientation.
enum {
AVCaptureVideoOrientationPortrait = 1,
AVCaptureVideoOrientationPortraitUpsideDown = 2,
AVCaptureVideoOrientationLandscapeRight = 3,
AVCaptureVideoOrientationLandscapeLeft = 4,
};
typedef NSInteger AVCaptureVideoOrientation;
Constants
AVCaptureVideoOrientationPortraitIndicates that video should be oriented vertically, top at the top.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.AVCaptureVideoOrientationPortraitUpsideDownIndicates that video should be oriented vertically, top at the bottom.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.AVCaptureVideoOrientationLandscapeRightIndicates that video should be oriented horizontally, top on the left.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.AVCaptureVideoOrientationLandscapeLeftIndicates that video should be oriented horizontally, top on the right.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.
Discussion
You use these constants in conjunction with an AVCaptureVideoPreviewLayer object; see videoOrientation.
AVVideoFieldMode
Constants indicating video field mode, for use with the videoFieldMode property.
enum {
AVVideoFieldModeBoth = 0,
AVVideoFieldModeTopOnly = 1,
AVVideoFieldModeBottomOnly = 2,
AVVideoFieldModeDeinterlace = 3,
};
typedef NSInteger AVVideoFieldMode;
Constants
AVVideoFieldModeBothIndicates that both top and bottom video fields in interlaced content should be passed through.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.AVVideoFieldModeTopOnlyIndicates that only the top video field in interlaced content should be passed through.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.AVVideoFieldModeBottomOnlyIndicates that the bottom video field only in interlaced content should be passed through.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.AVVideoFieldModeDeinterlaceIndicates that top and bottom video fields in interlaced content should be deinterlaced.
Available in OS X v10.7 and later.
Declared in
AVCaptureSession.h.
© 2012 Apple Inc. All Rights Reserved. (Last updated: 2012-09-19)