Skip to content

Commit a35d9ad

Browse files
committed
add rtmp injection case
1 parent b253cc0 commit a35d9ad

5 files changed

Lines changed: 411 additions & 84 deletions

File tree

iOS/APIExample.xcodeproj/project.pbxproj

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
03D13BD92448758B00B599B3 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 03D13BD82448758B00B599B3 /* Assets.xcassets */; };
3030
03D13BDC2448758B00B599B3 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 03D13BDA2448758B00B599B3 /* LaunchScreen.storyboard */; };
3131
03D13C0124488F1F00B599B3 /* KeyCenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 03D13C0024488F1E00B599B3 /* KeyCenter.swift */; };
32+
A763116A245AC15A00BABDE4 /* RTMPInjection.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7631169245AC15A00BABDE4 /* RTMPInjection.swift */; };
3233
A7847F922458062900469187 /* StatisticsInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7847F912458062900469187 /* StatisticsInfo.swift */; };
3334
A7847F942458089E00469187 /* AgoraExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7847F932458089E00469187 /* AgoraExtension.swift */; };
3435
A7CA48C424553CF700507435 /* Popover.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A7CA48C224553CF600507435 /* Popover.storyboard */; };
@@ -64,6 +65,7 @@
6465
07A781F5D5D3783CEC7C8EFA /* Pods_APIExample.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_APIExample.framework; sourceTree = BUILT_PRODUCTS_DIR; };
6566
3EA7D4B4D7C9540659392B7F /* Pods-APIExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-APIExample.debug.xcconfig"; path = "Target Support Files/Pods-APIExample/Pods-APIExample.debug.xcconfig"; sourceTree = "<group>"; };
6667
846AE4340F81DCC00B6F9543 /* Pods-APIExample.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-APIExample.release.xcconfig"; path = "Target Support Files/Pods-APIExample/Pods-APIExample.release.xcconfig"; sourceTree = "<group>"; };
68+
A7631169245AC15A00BABDE4 /* RTMPInjection.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RTMPInjection.swift; sourceTree = "<group>"; };
6769
A7847F912458062900469187 /* StatisticsInfo.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StatisticsInfo.swift; sourceTree = "<group>"; };
6870
A7847F932458089E00469187 /* AgoraExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AgoraExtension.swift; sourceTree = "<group>"; };
6971
A7CA48C324553CF600507435 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Popover.storyboard; sourceTree = "<group>"; };
@@ -97,8 +99,9 @@
9799
03BCEC4C244932E000ED7177 /* Examples */ = {
98100
isa = PBXGroup;
99101
children = (
100-
03BCEC6F24497B7000ED7177 /* 1.Basic-Video-Audio */,
101-
03BCEC6D24497B6F00ED7177 /* 2.Live-Broadcasting */,
102+
03BCEC6F24497B7000ED7177 /* Basic-Video-Audio */,
103+
03BCEC6D24497B6F00ED7177 /* Live-Broadcasting */,
104+
A7631168245AB89D00BABDE4 /* Quality */,
102105
);
103106
path = Examples;
104107
sourceTree = "<group>";
@@ -122,20 +125,21 @@
122125
name = Frameworks;
123126
sourceTree = "<group>";
124127
};
125-
03BCEC6D24497B6F00ED7177 /* 2.Live-Broadcasting */ = {
128+
03BCEC6D24497B6F00ED7177 /* Live-Broadcasting */ = {
126129
isa = PBXGroup;
127130
children = (
128131
03BCEC6E24497B6F00ED7177 /* RTMPStreaming.swift */,
132+
A7631169245AC15A00BABDE4 /* RTMPInjection.swift */,
129133
);
130-
path = "2.Live-Broadcasting";
134+
path = "Live-Broadcasting";
131135
sourceTree = "<group>";
132136
};
133-
03BCEC6F24497B7000ED7177 /* 1.Basic-Video-Audio */ = {
137+
03BCEC6F24497B7000ED7177 /* Basic-Video-Audio */ = {
134138
isa = PBXGroup;
135139
children = (
136140
03BCEC7024497B7000ED7177 /* JoinChannel.swift */,
137141
);
138-
path = "1.Basic-Video-Audio";
142+
path = "Basic-Video-Audio";
139143
sourceTree = "<group>";
140144
};
141145
03D13BC32448758900B599B3 = {
@@ -183,6 +187,13 @@
183187
path = Common;
184188
sourceTree = "<group>";
185189
};
190+
A7631168245AB89D00BABDE4 /* Quality */ = {
191+
isa = PBXGroup;
192+
children = (
193+
);
194+
path = Quality;
195+
sourceTree = "<group>";
196+
};
186197
A7CA48BF2455315A00507435 /* Supporting Files */ = {
187198
isa = PBXGroup;
188199
children = (
@@ -324,6 +335,7 @@
324335
03BCEC7124497B7000ED7177 /* RTMPStreaming.swift in Sources */,
325336
03BCEC7224497B7000ED7177 /* JoinChannel.swift in Sources */,
326337
A7CA48C624553D3500507435 /* VideoView.swift in Sources */,
338+
A763116A245AC15A00BABDE4 /* RTMPInjection.swift in Sources */,
327339
03D13BD02448758900B599B3 /* AppDelegate.swift in Sources */,
328340
A7847F922458062900469187 /* StatisticsInfo.swift in Sources */,
329341
03BCEC762449EB5000ED7177 /* LogViewController.swift in Sources */,

0 commit comments

Comments
 (0)