Skip to content

Commit a4e6d27

Browse files
committed
v2022.0.1-beta.3
1 parent e4a0f0c commit a4e6d27

21 files changed

+72
-19
lines changed

PhenixSdk.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Pod::Spec.new do |spec|
22

3-
spec.version = "2021.0.15-beta"
3+
spec.version = "2022.0.1-beta.3"
44

55
spec.name = "PhenixSdk"
66
spec.homepage = "https://phenixrts.com/"
77
spec.summary = "Video Real Time Solutions"
88
spec.license = { :type => "Proprietary", :text => <<-LICENSE
9-
Copyright 2021 Phenix Real Time Solutions, Inc.
9+
Copyright 2022 Phenix Real Time Solutions, Inc.
1010
Confidential and Proprietary. All rights reserved.
1111
1212
By using this code you agree to the Phenix Terms of Service found online here:
13-
http://phenixrts.com/terms-of-service.html
13+
https://phenixrts.com/en-us/terms-of-service.html
1414
LICENSE
1515
}
1616
spec.author = "Phenix Real Time Solutions, Inc."

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ target 'your app name'
1616

1717
### As independent Framework
1818
The Phenix SDK framework is structured as follows:
19-
* `<SDK root>/lib/iPhoneOS/PhenixSdk.framework`: This contains the following architectures for physical devices: **arm64, armv7, and armv7s**
19+
* `<SDK root>/lib/iPhoneOS/PhenixSdk.framework`: This contains the following architectures for physical devices: **arm64**
2020
* `<SDK root>/lib/iPhoneSimulator/PhenixSdk.framework`: This contains the following simulator architecture: x64
2121
* `<SDK root>/lib/Universal/PhenixSdk.framework`: This contains all architectures for simulator and physical devices
2222

RELEASENOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release notes
22

3+
### 2022.0.2-beta ###
4+
#### Features/Improvements
5+
6+
#### Fixes
7+
38
### 2021.0.15-beta ###
49
#### Features/Improvements
510

lib/Universal/PhenixSdk.framework/Headers/PhenixDimensions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2018 PhenixP2P Inc. Confidential and Proprietary. All Rights Reserved.
2+
* Copyright 2022 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
33
*/
44
#include <stddef.h>
55

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
* Copyright 2021 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
3+
*/
4+
#import <Foundation/Foundation.h>
5+
6+
typedef NS_ENUM(NSInteger, PhenixHardwareAcceleratedDecodingMode) {
7+
// Hardware acceleration is turned on if the device is certified for it
8+
PhenixHardwareAcceleratedDecodingModeAutomatic,
9+
// Hardware acceleration is always turned on
10+
PhenixHardwareAcceleratedDecodingModeOn,
11+
// Hardware acceleration is always turned off
12+
PhenixHardwareAcceleratedDecodingModeOff
13+
};

lib/Universal/PhenixSdk.framework/Headers/PhenixRendererOptions.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
/**
2-
* Copyright 2020 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
2+
* Copyright 2021 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
33
*/
44
#import <Foundation/Foundation.h>
55

66
#import "PhenixAspectRatioMode.h"
7+
#import "PhenixHardwareAcceleratedDecodingMode.h"
78
#import "PhenixTimeShiftOptions.h"
89
#import "PhenixVideoRenderDeviceType.h"
910

@@ -21,6 +22,8 @@ __attribute__((visibility("default"))) @interface PhenixRendererOptions : NSObje
2122

2223
@property(nonatomic) PhenixVideoRenderDeviceType preferredVideoRenderDeviceType;
2324

25+
@property(nonatomic) PhenixHardwareAcceleratedDecodingMode hardwareAcceleratedDecodingMode;
26+
2427
@property(nonatomic, nonnull, retain) PhenixTimeShiftOptions* timeShiftOptions;
2528

2629
@end

lib/Universal/PhenixSdk.framework/Headers/PhenixRendererStatistics.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2019 PhenixP2P Inc. Confidential and Proprietary. All Rights Reserved.
2+
* Copyright 2022 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
33
*/
44
#import <Foundation/Foundation.h>
55

46 Bytes
Binary file not shown.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:1c04029573b06da083b87b3692a5337bed65c83090abe4f302cbc5099df8293a
3-
size 319859000
2+
oid sha256:15693a39bc384ce9f75e4c4ca5a7972a20adadef3834f19f4f62b64c3b3f1595
3+
size 172848328

lib/iPhoneOS/PhenixSdk.framework/Headers/PhenixDimensions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2018 PhenixP2P Inc. Confidential and Proprietary. All Rights Reserved.
2+
* Copyright 2022 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
33
*/
44
#include <stddef.h>
55

0 commit comments

Comments
 (0)