Skip to content

Commit

Permalink
Merge pull request #213 from red5pro/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
Jessica Palmer authored Oct 10, 2022
2 parents acb7353 + 7bc85f0 commit c41c4df
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
-(void)writeAudio:(CMSampleBufferRef)sampleBuffer;
-(void)writeAudio:(NSData*)data withTime:(double)pts andRate:(int)rate;
-(void)writeAudioBuffer:(AudioBufferList*)data withTime:(double)pts andRate:(int)rate;
-(void)writeEmptyAudioBuffer:(AudioBufferList*)data withTime:(double)pts andRate:(int)rate;

-(void)finish:(BOOL)saveRecording;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ enum R5StreamMode{
extern NSString *const R5RecordVideoBitRateKey;
extern NSString *const R5RecordAudioBitRateKey;
extern NSString *const R5RecordAlbumName;
extern NSString *const R5RecordToCameraRoll;

/**
* @brief The main stream class of Red5Pro. Utilizes the #R5Connection to connect and communicate with a server instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ extern "C" {
#define STRINGIFY_(s) #s
#define STRINGIFY(s) STRINGIFY_(s)

#define R5PRO_MAJOR_VERSION 8
#define R5PRO_MINOR_VERSION 0
#define R5PRO_MAJOR_VERSION 10
#define R5PRO_MINOR_VERSION 7
#define R5PRO_REVISION 0
#define R5PRO_BUILD 0

Expand Down
Binary file modified R5ProObjectiveCExamples/R5Streaming.framework/Info.plist
Binary file not shown.
Binary file modified R5ProObjectiveCExamples/R5Streaming.framework/R5Streaming
Binary file not shown.
12 changes: 8 additions & 4 deletions R5ProTestbed.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
Expand Down Expand Up @@ -655,7 +655,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
MTL_ENABLE_DEBUG_INFO = NO;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
Expand All @@ -669,18 +669,20 @@
ARCHS = "$(ARCHS_STANDARD)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1070;
DEVELOPMENT_TEAM = E964K44BWW;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/R5ProTestbed",
);
INFOPLIST_FILE = R5ProTestbed/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 10.7.0;
PRODUCT_BUNDLE_IDENTIFIER = com.infrared5.R5ProTestbed;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "R5ProTestbed/R5ProTestbed-Bridging-Header.h";
Expand All @@ -696,18 +698,20 @@
ARCHS = "$(ARCHS_STANDARD)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_MODULES = YES;
CURRENT_PROJECT_VERSION = 1070;
DEVELOPMENT_TEAM = E964K44BWW;
ENABLE_BITCODE = NO;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/R5ProTestbed",
);
INFOPLIST_FILE = R5ProTestbed/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 10.7.0;
PRODUCT_BUNDLE_IDENTIFIER = com.infrared5.R5ProTestbed;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "R5ProTestbed/R5ProTestbed-Bridging-Header.h";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
{
"object": {
"pins": [
{
"package": "Starscream",
"repositoryURL": "https://github.com/daltoniam/Starscream",
"state": {
"branch": null,
"revision": "df8d82047f6654d8e4b655d1b1525c64e1059d21",
"version": "4.0.4"
}
"pins" : [
{
"identity" : "starscream",
"kind" : "remoteSourceControl",
"location" : "https://github.com/daltoniam/Starscream",
"state" : {
"revision" : "df8d82047f6654d8e4b655d1b1525c64e1059d21",
"version" : "4.0.4"
}
]
},
"version": 1
}
],
"version" : 2
}
4 changes: 2 additions & 2 deletions R5ProTestbed/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>6.0.0</string>
<string>$(MARKETING_VERSION)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>600</string>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down
4 changes: 2 additions & 2 deletions R5ProTestbed/R5Streaming.framework/Headers/global.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ extern "C" {
#define STRINGIFY(s) STRINGIFY_(s)

#define R5PRO_MAJOR_VERSION 10
#define R5PRO_MINOR_VERSION 1
#define R5PRO_MINOR_VERSION 7
#define R5PRO_REVISION 0
#define R5PRO_BUILD b162
#define R5PRO_BUILD 0


#define R5PRO_VERSION STRINGIFY(R5PRO_MAJOR_VERSION.R5PRO_MINOR_VERSION.R5PRO_REVISION.R5PRO_BUILD)
Expand Down
Loading

0 comments on commit c41c4df

Please sign in to comment.