@@ -54,24 +54,16 @@ enum ScaleMode {
54
54
typedef WOWZStatusCallback = Function (WOWZStatus );
55
55
typedef WOWZBroadcastStatusCallback = Function (WOWZBroadcastStatus );
56
56
57
- abstract class OnWOWZBroadcastStatusCallback {
57
+ abstract class OnWOWZBroadcastStatusCallback {
58
58
void onWZStatus (WOWZBroadcastStatus status);
59
+
59
60
void onWZError (WOWZBroadcastStatus status);
60
61
}
61
62
62
63
class WOWZCameraView extends StatefulWidget {
63
64
WOWZCameraView (
64
65
{@required this .controller,
65
66
@required this .apiLicenseKey,
66
- @required this .hostAddress,
67
- @required this .portNumber,
68
- @required this .applicationName,
69
- @required this .streamName,
70
- this .username,
71
- this .password,
72
- this .wowzSize,
73
- this .wowzMediaConfig,
74
- this .scaleMode = ScaleMode .RESIZE_TO_ASPECT , this .fps, this .bps, this .khz,
75
67
this .statusCallback,
76
68
this .broadcastStatusCallback});
77
69
@@ -84,24 +76,6 @@ class WOWZCameraView extends StatefulWidget {
84
76
final WOWZBroadcastStatusCallback broadcastStatusCallback;
85
77
86
78
final String apiLicenseKey;
87
-
88
- // Set the connection properties for the target Wowza Streaming Engine server or Wowza Streaming Cloud live stream
89
- final String hostAddress;
90
- final int portNumber;
91
- final String applicationName;
92
- final String streamName;
93
-
94
- //authentication
95
- final String username;
96
- final String password;
97
-
98
- final WOWZSize wowzSize;
99
- final WOWZMediaConfig wowzMediaConfig;
100
- final ScaleMode scaleMode;
101
-
102
- final int fps;
103
- final int bps;
104
- final int khz;
105
79
}
106
80
107
81
class _WOWZCameraViewState extends State <WOWZCameraView > {
@@ -116,18 +90,21 @@ class _WOWZCameraViewState extends State<WOWZCameraView> {
116
90
print ('controller event: ${widget .controller .value .event }' );
117
91
switch (widget.controller.value.event) {
118
92
case _flashlight:
119
- if (defaultTargetPlatform == TargetPlatform .android)
93
+ if (defaultTargetPlatform == TargetPlatform .android)
120
94
_channel? .invokeMethod (
121
95
widget.controller.value.event, widget.controller.value.value);
122
96
else
123
- _channel? .invokeMethod (widget.controller.value.value? _flashlightOn: _flashlightOff);
97
+ _channel? .invokeMethod (widget.controller.value.value
98
+ ? _flashlightOn
99
+ : _flashlightOff);
124
100
break ;
125
101
case _muted:
126
- if (defaultTargetPlatform == TargetPlatform .android)
102
+ if (defaultTargetPlatform == TargetPlatform .android)
127
103
_channel? .invokeMethod (
128
104
widget.controller.value.event, widget.controller.value.value);
129
105
else
130
- _channel? .invokeMethod (widget.controller.value.value? _mutedOn: _mutedOff);
106
+ _channel? .invokeMethod (
107
+ widget.controller.value.value ? _mutedOn : _mutedOff);
131
108
break ;
132
109
case _startPreview:
133
110
case _startPreview:
@@ -169,10 +146,13 @@ class _WOWZCameraViewState extends State<WOWZCameraView> {
169
146
'$defaultTargetPlatform is not yet supported by the text_view plugin' );
170
147
}
171
148
172
- _onPlatformViewCreated (int viewId){
149
+ _onPlatformViewCreated (int viewId) {
173
150
if (_viewId != viewId || _channel == null ) {
174
151
_viewId = viewId;
152
+
175
153
_channel = MethodChannel ("${_camera_view_channel }_$viewId " );
154
+ widget.controller? ._setChannel (_channel);
155
+
176
156
_channel.setMethodCallHandler ((call) async {
177
157
print ('wowz: status: ${call .arguments }' );
178
158
switch (call.method) {
@@ -192,52 +172,12 @@ class _WOWZCameraViewState extends State<WOWZCameraView> {
192
172
break ;
193
173
}
194
174
});
195
- widget.controller? ._setChannel (_channel);
196
-
197
175
// license key gocoder sdk
198
176
_channel.invokeMethod (_apiLicenseKey, widget.apiLicenseKey);
199
- // Set the connection properties for the target Wowza Streaming Engine server or Wowza Streaming Cloud live stream
200
- if (widget.hostAddress != null && widget.hostAddress.isNotEmpty) {
201
- _channel.invokeMethod (_hostAddress, widget.hostAddress);
202
- }
203
- if (widget.portNumber != null ) {
204
- _channel.invokeMethod (_portNumber, widget.portNumber);
205
- }
206
- if (widget.applicationName != null && widget.applicationName.isNotEmpty) {
207
- _channel.invokeMethod (_applicationName, widget.applicationName);
208
- }
209
- if (widget.streamName != null && widget.streamName.isNotEmpty) {
210
- _channel.invokeMethod (_streamName, widget.streamName);
211
- }
212
- //authentication
213
- if (widget.username != null ) {
214
- _channel.invokeMethod (_username, widget.username);
215
- }
216
- if (widget.password != null ) {
217
- _channel.invokeMethod (_password, widget.password);
218
- }
219
- if (widget.wowzSize != null ) {
220
- _channel.invokeMethod (
221
- _wowzSize, "${widget .wowzSize .width }/${widget .wowzSize .height }" );
222
- }
223
- if (widget.wowzMediaConfig != null ) {
224
- _channel.invokeMethod (
225
- _wowzMediaConfig, widget.wowzMediaConfig.toString ());
226
- }
227
- if (widget.scaleMode != null ) {
228
- _channel.invokeMethod (_scaleMode, widget.scaleMode.toString ());
229
- }
230
- if (widget.fps!= null ){
231
- _channel.invokeListMethod (_fps,widget.fps);
232
- }
233
- if (widget.bps != null ){
234
- _channel.invokeListMethod (_bps,widget.bps);
235
- }
236
- if (widget.khz != null ){
237
- _channel.invokeListMethod (_bps,widget.bps);
238
- }
239
177
240
- _channel.invokeListMethod (_initGoCoder);
178
+ if (widget.controller.configIsWaiting) {
179
+ widget.controller.resetConfig ();
180
+ }
241
181
}
242
182
}
243
183
}
0 commit comments